/home/rokasa/dbs
/*M!999999\- enable the sandbox mode */ -- MariaDB dump 10.19 Distrib 10.6.22-MariaDB, for Linux (x86_64) -- -- Host: localhost Database: robisear_kahawaexpresso -- ------------------------------------------------------ -- Server version 10.6.22-MariaDB-log /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `accounttype` -- DROP TABLE IF EXISTS `accounttype`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `accounttype` ( `id` int(10) NOT NULL AUTO_INCREMENT, `name` varchar(30) NOT NULL, `type` varchar(50) NOT NULL, `companyid` varchar(10) NOT NULL, `userid` varchar(10) NOT NULL, `description` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `accounttype` -- LOCK TABLES `accounttype` WRITE; /*!40000 ALTER TABLE `accounttype` DISABLE KEYS */; INSERT INTO `accounttype` VALUES (1,'Asset','BS','1','415','Asset'),(2,'Liability','BS','1','415','Liability'),(3,'Equity','BS','1','415','Equity'),(4,'Income','PL','1','415','Income'),(5,'Expense','PL','1','415','Expense'); /*!40000 ALTER TABLE `accounttype` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `activityloggs` -- DROP TABLE IF EXISTS `activityloggs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `activityloggs` ( `id` int(30) NOT NULL AUTO_INCREMENT, `userid` varchar(30) NOT NULL, `timedone` varchar(50) NOT NULL, `actiondone` text NOT NULL, `ip` text NOT NULL, `companyid` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `activityloggs` -- LOCK TABLES `activityloggs` WRITE; /*!40000 ALTER TABLE `activityloggs` DISABLE KEYS */; INSERT INTO `activityloggs` VALUES (1,'5','2024-01-07 18:35:08','EVER Changed the price of SINGLE CAPPUCCINO to: buyingprice =0 ,sellingprice =200, qty= 30.00, items with id 2 . in counter (1) at 2024-01-07 18:35:08','197.237.142.183',1),(2,'5','2024-01-07 18:42:29','EVER Changed the price of DOUBLE CAPPUCCINO to: buyingprice =0 ,sellingprice =250, qty= 29.00, items with id 1 . in counter (1) at 2024-01-07 18:42:29','197.237.142.183',1),(3,'5','2024-01-07 18:43:17','EVER Changed the price of SINGLE CAPPUCCINO to: buyingprice =0 ,sellingprice =200, qty= 50.00, items with id 2 . in Main level at 2024-01-07 18:43:17','197.237.142.183',1),(4,'5','2024-01-07 18:43:48','EVER Changed the price of DOUBLE CAPPUCCINO to: buyingprice =0 ,sellingprice =250, qty= 50.00, items with id 1 . in Main level at 2024-01-07 18:43:48','197.237.142.183',1),(5,'5','2024-01-07 18:47:58','EVER Changed the price of DOUBLE MOCHA to: buyingprice =0 ,sellingprice =280, qty= 25.00, items with id 5 . in Main level at 2024-01-07 18:47:58','197.237.142.183',1),(6,'5','2024-01-07 18:48:41','EVER Changed the price of SINGLE MOCHA to: buyingprice =0 ,sellingprice =250, qty= 25.00, items with id 6 . in Main level at 2024-01-07 18:48:41','197.237.142.183',1),(7,'5','2024-01-07 18:49:39','EVER Changed the price of SINGLE LATTE to: buyingprice =0 ,sellingprice =200, qty= 54.00, items with id 12 . in Main level at 2024-01-07 18:49:39','197.237.142.183',1),(8,'5','2024-01-07 18:50:10','EVER Changed the price of DOUBLE LATTE to: buyingprice =0 ,sellingprice =250, qty= 50.00, items with id 11 . in Main level at 2024-01-07 18:50:10','197.237.142.183',1),(9,'5','2024-01-07 18:53:01','EVER Changed the price of DOUBLE DECAF to: buyingprice =0 ,sellingprice =250, qty= 30.00, items with id 13 . in Main level at 2024-01-07 18:53:01','197.237.142.183',1),(10,'5','2024-01-07 18:53:43','EVER Changed the price of SINGLE DECAF to: buyingprice =0 ,sellingprice =200, qty= 45.00, items with id 14 . in Main level at 2024-01-07 18:53:43','197.237.142.183',1); /*!40000 ALTER TABLE `activityloggs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `admintable` -- DROP TABLE IF EXISTS `admintable`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `admintable` ( `id` int(11) NOT NULL AUTO_INCREMENT, `username` varchar(50) NOT NULL, `password` varchar(20) DEFAULT NULL, `surname` varchar(50) NOT NULL, `firstname` varchar(50) NOT NULL, `phone` varchar(50) NOT NULL, `campus` varchar(30) NOT NULL, `college` varchar(30) NOT NULL, `department` varchar(30) NOT NULL, `type` varchar(50) NOT NULL, `token` text NOT NULL, `email` varchar(50) NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL, `idno` varchar(40) NOT NULL, `updatedat` varchar(40) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=33 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `admintable` -- LOCK TABLES `admintable` WRITE; /*!40000 ALTER TABLE `admintable` DISABLE KEYS */; INSERT INTO `admintable` VALUES (1,'admin','Robisearch321','dd','ddd','222222222','','','','','','admqin@gmail.com','','active','2222222','2016-11-07 04:32:35'); /*!40000 ALTER TABLE `admintable` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `advance` -- DROP TABLE IF EXISTS `advance`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `advance` ( `id` int(11) NOT NULL AUTO_INCREMENT, `tenantid` varchar(50) NOT NULL, `todate` varchar(50) NOT NULL, `amount` varchar(50) NOT NULL, `description` text NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `createdat` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `balance` varchar(50) NOT NULL, `closedate` varchar(30) NOT NULL, `startdate` varchar(30) NOT NULL, `paid` decimal(10,0) DEFAULT NULL, `branchid` int(11) NOT NULL DEFAULT 1, `plotno` varchar(50) DEFAULT NULL, `houseno` varchar(50) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `advance` -- LOCK TABLES `advance` WRITE; /*!40000 ALTER TABLE `advance` DISABLE KEYS */; /*!40000 ALTER TABLE `advance` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `advancepayment` -- DROP TABLE IF EXISTS `advancepayment`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `advancepayment` ( `id` int(30) NOT NULL AUTO_INCREMENT, `createdat` varchar(30) NOT NULL, `userid` varchar(30) NOT NULL, `companyid` varchar(30) NOT NULL, `amount` varchar(30) NOT NULL, `balance` varchar(30) NOT NULL, `description` text NOT NULL, `advanceid` int(30) DEFAULT NULL, `branchid` varchar(20) NOT NULL DEFAULT '1', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `advancepayment` -- LOCK TABLES `advancepayment` WRITE; /*!40000 ALTER TABLE `advancepayment` DISABLE KEYS */; /*!40000 ALTER TABLE `advancepayment` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `agent` -- DROP TABLE IF EXISTS `agent`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `agent` ( `id` int(40) NOT NULL, `firstname` varchar(100) NOT NULL, `lastname` varchar(100) NOT NULL, `location` varchar(100) NOT NULL, `phone` varchar(100) NOT NULL, `email` varchar(100) NOT NULL, `description` text NOT NULL, `idno` varchar(100) NOT NULL, `country` varchar(100) NOT NULL, `gender` varchar(10) NOT NULL, `createdat` varchar(100) NOT NULL, `updatedat` varchar(100) NOT NULL, `userid` varchar(100) NOT NULL, `county` varchar(40) NOT NULL, `accountno` varchar(100) NOT NULL, `accountname` varchar(100) NOT NULL, `companyid` varchar(100) NOT NULL, `status` varchar(10) NOT NULL DEFAULT '1', PRIMARY KEY (`id`), UNIQUE KEY `idno` (`idno`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `agent` -- LOCK TABLES `agent` WRITE; /*!40000 ALTER TABLE `agent` DISABLE KEYS */; /*!40000 ALTER TABLE `agent` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `alerts` -- DROP TABLE IF EXISTS `alerts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `alerts` ( `id` int(100) NOT NULL AUTO_INCREMENT, `contact` text NOT NULL, `postedtime` varchar(40) NOT NULL, `message` text NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `duedate` varchar(30) NOT NULL, `duetime` varchar(30) NOT NULL, `deliverystatus` varchar(10) NOT NULL DEFAULT 'new', `name` varchar(30) NOT NULL, `type` varchar(30) NOT NULL, `groupname` varchar(30) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `alerts` -- LOCK TABLES `alerts` WRITE; /*!40000 ALTER TABLE `alerts` DISABLE KEYS */; /*!40000 ALTER TABLE `alerts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `allcurrencies` -- DROP TABLE IF EXISTS `allcurrencies`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `allcurrencies` ( `id` int(10) NOT NULL AUTO_INCREMENT, `country` varchar(100) NOT NULL, `currency` varchar(20) NOT NULL, `code` varchar(20) NOT NULL, `symbol` varchar(10) NOT NULL, `companyid` int(11) NOT NULL DEFAULT 1, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=80 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `allcurrencies` -- LOCK TABLES `allcurrencies` WRITE; /*!40000 ALTER TABLE `allcurrencies` DISABLE KEYS */; INSERT INTO `allcurrencies` VALUES (1,'Albania','Albanian lek','ALL','L',1),(2,'Argentina','Argentine peso','ARS','$',1),(3,'Armenia','Armenian dram','AMD','?',1),(4,'Australia','Australian dollar','AUD','$',1),(5,'Azerbaijan','Azerbaijani manat','AZN','?',1),(6,'Belarus','Belarusian rubel','BYN','Rbl',1),(7,'Bolivia','Boliviano','BOB','Bs.',1),(8,'Botswana','Botswana pula','BWP','P',1),(9,'Bulgaria','Bulgarian lev','BGN','??.',1),(10,'Brazil','Brazilian real','BRL','R$',1),(11,'Cambodia','Cambodian riel','KHR','?',1),(12,'Canada','Canadian dollar','CAD','$',1),(13,'China','Chinese yuan (Renmin','CNY','?',1),(14,'Colombia','Colombian peso','COP','$',1),(15,'Costa Rica','Costa Rican col?n','CRC','?',1),(16,'Croatia','Croatian kuna','HRK','kn',1),(17,'Cuba','Cuban peso','CUP','$',1),(18,'Czech Republic','Czech koruna','CZK','K?',1),(19,'Denmark','Danish krone','DKK','kr.',1),(20,'Dominican Republic','Dominican peso','DOP','$',1),(21,'Egypt','Egyptian pound','EGP','E?',1),(22,'El Salvador','El Salvador col?n','SVC','?',1),(23,'European Union','Euro','EUR','?',1),(24,'Fiji','Fijian dollar','FJD','FJ$',1),(25,'Ghana','Ghanaian cedi','GHS','GH?',1),(26,'Guatemala','Guatemalan quetzal','GTQ','Q',1),(27,'Guinea','Guinean franc','GNF','FG',1),(28,'Guyana','Guyanese dollar','GYD','$',1),(29,'Hong Kong','Hong Kong dollar','HKD','$',1),(30,'Honduras','Honduran lempira','HNL','L',1),(31,'Hungary','Hungarian forint','HUF','Ft',1),(32,'India','Indian rupee','INR','?',1),(33,'Iceland','Icelandic kr?na','ISK','kr',1),(34,'Iran','Iranian rial','IRR','?',1),(35,'Israel','Israeli shekel','ILS','?',1),(36,'Japan','Japanese yen','JPY','?',1),(37,'Kazakhstan','Kazakhstani tenge','KZT','?',1),(38,'Kenya','Kenyan shilling','KES','Ksh',1),(39,'Kuwait','Kuwaiti dinar','KWD','?.?',1),(40,'Malawi','Malawian kwacha','MWK','MK',1),(41,'Malaysia','Malaysian ringgit','MYR','RM',1),(42,'Mexico','Mexican peso','MXN','$',1),(43,'Morocco','Moroccan dirham','MAD','MAD',1),(44,'Namibia','Namibian dollar','NAD','N$',1),(45,'Nepal','Nepalese rupee','NPR','Rs.',1),(46,'New Zealand','New Zealand dollar','NZD','$',1),(47,'Norway','Norwegian krone','NOK','kr',1),(48,'Oman','Omani rial','OMR','?.?.',1),(49,'Pakistan','Pakistani rupee','PKR','Rs',1),(50,'Peru','Sol','PEN','S/',1),(51,'Philippines','Philippine peso','PHP','?',1),(52,'Poland','Polish z?oty','PLN','z?',1),(53,'Qatar','Qatari riyal','QAR','QR',1),(54,'Romania','Romanian leu','RON','L',1),(55,'Russia','Russian ruble','RUB','?',1),(56,'Saudi Arabia','Saudi riyal','SAR','?.?',1),(57,'Serbia','Serbian dinar','RSD','din',1),(58,'Seychelles','Seychellois rupee','SCR','?',1),(59,'Singapore','Singapore dollar','SGD','$',1),(60,'Solomon Islands','Solomon Islands doll','SBD','Si$',1),(61,'Somalia','Somali shilling','SOS','Sh.so',1),(62,'South Africa','South African rand','ZAR','R',1),(63,'Sri Lanka','Sri Lankan rupee','LKR','Re',1),(64,'Sweden','Swedish krona','SEK','kr',1),(65,'Switzerland','Swiss franc','CHF','CHf.',1),(66,'Syria','Syrian pound','SYP','?S',1),(67,'Taiwan','New Taiwan dollar','TWD','NT$',1),(68,'Thailand','Thai baht','THB','?',1),(69,'Trinidad and Tobago','Trinidad and Tobago ','TTD','TT$',1),(70,'Turkey','Turkish lira','TRY','?',1),(71,'Ukraine','Ukrainian hryvnia','UAH','?',1),(72,'United Kingdom','Pound sterling','GBP','?',1),(73,'United States','United States dollar','USD','$',1),(74,'Uruguay','Uruguayan Peso','UYU','$',1),(75,'Uzbekistan','Uzbekistani sum','UZS','so?m',1),(76,'Venezuela','Venezuelan bol?var','VED','Bs.',1),(77,'Vietnam','Vietnamese dong','VND','?',1),(78,'Yemen','Yemeni rial','YER','?',1),(79,'Zimbabwe','Zimbabwean dollar','ZWL','$',1); /*!40000 ALTER TABLE `allcurrencies` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `alldocuments` -- DROP TABLE IF EXISTS `alldocuments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `alldocuments` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` text NOT NULL, `img_id` varchar(50) NOT NULL, `userid` int(11) NOT NULL, `date` varchar(50) DEFAULT NULL, `documentname` text DEFAULT NULL, `companyid` varchar(100) NOT NULL DEFAULT '1', `branchid` int(11) NOT NULL DEFAULT 1, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `alldocuments` -- LOCK TABLES `alldocuments` WRITE; /*!40000 ALTER TABLE `alldocuments` DISABLE KEYS */; /*!40000 ALTER TABLE `alldocuments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `allpayments` -- DROP TABLE IF EXISTS `allpayments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `allpayments` ( `id` int(50) NOT NULL AUTO_INCREMENT, `type` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `amount` varchar(50) NOT NULL, `description` text NOT NULL, `dateposted` varchar(50) NOT NULL, `user` varchar(100) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `createdat` varchar(50) NOT NULL, `receiptno` varchar(100) NOT NULL, `idno` varchar(100) NOT NULL, `contact` varchar(100) NOT NULL, `controller` varchar(100) NOT NULL, `imgid` varchar(100) NOT NULL, `img_id` text NOT NULL, `plotno` varchar(50) NOT NULL, `landlord` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `advance` varchar(20) NOT NULL, `direct` varchar(20) NOT NULL, `balance` varchar(20) NOT NULL, `mpesa` varchar(20) NOT NULL, `cash` varchar(20) NOT NULL, `card` varchar(20) NOT NULL, `cheque` varchar(20) NOT NULL, `month` varchar(20) NOT NULL, `year` varchar(20) NOT NULL, `paid` varchar(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `allpayments` -- LOCK TABLES `allpayments` WRITE; /*!40000 ALTER TABLE `allpayments` DISABLE KEYS */; /*!40000 ALTER TABLE `allpayments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `announcement` -- DROP TABLE IF EXISTS `announcement`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `announcement` ( `id` int(50) NOT NULL, `title` text NOT NULL, `target` varchar(50) NOT NULL, `message` text NOT NULL, `dateposted` varchar(50) NOT NULL, `status` varchar(50) NOT NULL, `type` varchar(50) NOT NULL, `companyid` int(11) NOT NULL, `userid` int(11) NOT NULL, `memberid` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `announcement` -- LOCK TABLES `announcement` WRITE; /*!40000 ALTER TABLE `announcement` DISABLE KEYS */; /*!40000 ALTER TABLE `announcement` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `approvals` -- DROP TABLE IF EXISTS `approvals`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `approvals` ( `id` int(11) NOT NULL AUTO_INCREMENT, `level` varchar(5) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `invoice` varchar(20) NOT NULL, `applicationid` int(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `approvals` -- LOCK TABLES `approvals` WRITE; /*!40000 ALTER TABLE `approvals` DISABLE KEYS */; /*!40000 ALTER TABLE `approvals` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `asignrooms` -- DROP TABLE IF EXISTS `asignrooms`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `asignrooms` ( `id` int(11) NOT NULL AUTO_INCREMENT, `roomid` varchar(40) NOT NULL, `plotno` varchar(100) DEFAULT NULL, `houseno` varchar(100) DEFAULT NULL, `status` varchar(40) NOT NULL, `createdat` varchar(100) NOT NULL, `updatedat` varchar(100) NOT NULL, `userid` varchar(100) NOT NULL, `memberid` varchar(50) NOT NULL, `companyid` varchar(30) NOT NULL, `exactdate` varchar(50) NOT NULL, `floor` varchar(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `asignrooms` -- LOCK TABLES `asignrooms` WRITE; /*!40000 ALTER TABLE `asignrooms` DISABLE KEYS */; /*!40000 ALTER TABLE `asignrooms` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `assessment` -- DROP TABLE IF EXISTS `assessment`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `assessment` ( `id` int(20) NOT NULL AUTO_INCREMENT, `invoice` varchar(50) NOT NULL, `registrationno` varchar(50) NOT NULL, `claimno` varchar(50) NOT NULL, `insurer` varchar(50) NOT NULL, `model` varchar(50) NOT NULL, `color` varchar(50) NOT NULL, `yom` varchar(50) NOT NULL, `tyres` varchar(50) NOT NULL, `policyno` varchar(50) NOT NULL, `make` varchar(50) NOT NULL, `engineno` varchar(50) NOT NULL, `mileage` varchar(50) NOT NULL, `repairer` varchar(50) NOT NULL, `chassisno` varchar(50) NOT NULL, `instructionsby` varchar(50) NOT NULL, `instructions` text NOT NULL, `preaccident` text NOT NULL, `garagedetails` text NOT NULL, `latentdameges` text NOT NULL, `userid` int(11) NOT NULL, `branchid` int(11) NOT NULL, `companyid` int(11) NOT NULL, `dateposted` varchar(30) NOT NULL, `deliverymode` text NOT NULL, `date` varchar(30) NOT NULL, `assessmentdate` varchar(20) NOT NULL, `insuredname` varchar(30) NOT NULL, `colour` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `assessment` -- LOCK TABLES `assessment` WRITE; /*!40000 ALTER TABLE `assessment` DISABLE KEYS */; INSERT INTO `assessment` VALUES (1,'32222201607434545','777','433','rr343exx','r','','WEW','344r53','r','32323','232321','re3r','33333','3434','','We acknowledge the receit of your email with instructions. We confirm that we have assessed\nthe vehicle at Ruaka Town and below are the findings.\n','EQWEQE','WQEQ','The current market value of the vehicle is estimated at KSH 1,700,000.00\nThe repair estimate is at 10.97% of the market value. We therefore find the vehcle to be repairable\n',1,1,1,'2020-12-19 06:23:58','WEW','2020-12-23','2020-12-01','333','EWEW'),(2,'32222201607434545','777432x','QEQEdx','QWEQEddx','QWEQEx','','rx','rx','32213dx','QWEQx','WEx','re3rx','33333x','E12x','ROBERT','We acknowledge the receit of your email with instructions. We confirm that we have assessed\nthe vehicle at Ruaka Town and below are the findings.\n','ddx','ddx','The current market value of the vehicle is estimated at KSH 1,700,000.00\nThe repair estimate is at 10.97% of the market value. We therefore find the vehcle to be repairable\n',1,1,1,'2020-12-19 07:16:58','WEWx','2020-12-01','2020-12-01','QWEQddx','ee32e2x'); /*!40000 ALTER TABLE `assessment` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `assets` -- DROP TABLE IF EXISTS `assets`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `assets` ( `id` int(30) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `category` varchar(50) NOT NULL, `supplier` varchar(50) DEFAULT NULL, `code` varchar(255) DEFAULT NULL, `description` varchar(255) DEFAULT NULL, `tax_included` int(10) NOT NULL DEFAULT 16, `buyingprice` varchar(50) NOT NULL, `assetcondition` varchar(50) DEFAULT NULL, `type` varchar(50) DEFAULT NULL, `assetvalue` varchar(50) NOT NULL, `start_date` date DEFAULT NULL, `end_date` date DEFAULT NULL, `size` varchar(50) DEFAULT NULL, `store` varchar(50) DEFAULT NULL, `serialno` varchar(30) NOT NULL, `imgid` varchar(255) DEFAULT NULL, `override_default_tax` int(1) NOT NULL DEFAULT 0, `is_service` int(1) NOT NULL DEFAULT 0, `deleted` int(1) NOT NULL DEFAULT 0, `qty` decimal(10,2) NOT NULL, `dateposted` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `expdate` date NOT NULL, `orderamount` text NOT NULL, `shortname` varchar(50) NOT NULL, `status` varchar(30) NOT NULL DEFAULT 'active', `uom` varchar(20) NOT NULL DEFAULT 'pcs', `producttype` varchar(30) NOT NULL DEFAULT 'Inventory', `assetaccount` varchar(30) NOT NULL, `salesaccount` varchar(30) NOT NULL, `expenseaccount` varchar(30) NOT NULL, `mode` varchar(50) NOT NULL, `depreciationpercent` varchar(30) NOT NULL, `branch` varchar(30) NOT NULL DEFAULT '1', `invoice` varchar(30) NOT NULL, `depreciation` varchar(30) NOT NULL DEFAULT '', `accumulativeaccount` varchar(30) DEFAULT NULL, `accumdepreciation` varchar(30) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `assets` -- LOCK TABLES `assets` WRITE; /*!40000 ALTER TABLE `assets` DISABLE KEYS */; /*!40000 ALTER TABLE `assets` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `assignbranches` -- DROP TABLE IF EXISTS `assignbranches`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `assignbranches` ( `id` int(11) NOT NULL AUTO_INCREMENT, `branchid` int(11) DEFAULT NULL, `employeeno` int(11) DEFAULT NULL, `status` int(11) NOT NULL, `description` text DEFAULT NULL COMMENT 'Description of a credit / debit', `userid` int(30) NOT NULL, `createdate` varchar(30) NOT NULL, `companyid` int(11) NOT NULL, `updateddate` varchar(40) NOT NULL, PRIMARY KEY (`id`), KEY `contract` (`branchid`), KEY `employee` (`employeeno`), KEY `type` (`status`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci COMMENT='Add or sub entitlement for employees or contracts'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `assignbranches` -- LOCK TABLES `assignbranches` WRITE; /*!40000 ALTER TABLE `assignbranches` DISABLE KEYS */; /*!40000 ALTER TABLE `assignbranches` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `assigntask` -- DROP TABLE IF EXISTS `assigntask`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `assigntask` ( `id` int(30) NOT NULL AUTO_INCREMENT, `branchid` int(11) DEFAULT NULL, `employeeid` int(11) DEFAULT NULL, `status` varchar(11) NOT NULL DEFAULT 'active', `userid` int(30) NOT NULL, `createdate` varchar(30) NOT NULL, `companyid` int(11) NOT NULL, `updateddate` varchar(40) NOT NULL, `taskid` int(11) NOT NULL, `mode` varchar(20) NOT NULL, `target` varchar(20) NOT NULL, `period` varchar(20) NOT NULL, `description` text NOT NULL, `fromdate` varchar(30) NOT NULL, `todate` varchar(30) NOT NULL, `year` varchar(20) NOT NULL, `defaulttype` varchar(20) NOT NULL, `tasktype` varchar(10) NOT NULL DEFAULT 'General', PRIMARY KEY (`id`), KEY `contract` (`branchid`), KEY `employee` (`employeeid`), KEY `type` (`status`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci COMMENT='Add or sub entitlement for employees or contracts'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `assigntask` -- LOCK TABLES `assigntask` WRITE; /*!40000 ALTER TABLE `assigntask` DISABLE KEYS */; /*!40000 ALTER TABLE `assigntask` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `attendance` -- DROP TABLE IF EXISTS `attendance`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `attendance` ( `id` int(100) NOT NULL AUTO_INCREMENT, `idno` varchar(100) NOT NULL, `surname` varchar(100) NOT NULL, `date` datetime NOT NULL, `timein` varchar(100) NOT NULL, `timeout` varchar(100) NOT NULL, `type` varchar(100) NOT NULL, `createddate` varchar(100) NOT NULL, `comment` text NOT NULL, `timediffrence` varchar(5) NOT NULL DEFAULT '0', `device` varchar(30) NOT NULL, `totaltime` varchar(20) DEFAULT NULL, `checkoutime` datetime NOT NULL, `status` int(20) NOT NULL DEFAULT 0, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `attendance` -- LOCK TABLES `attendance` WRITE; /*!40000 ALTER TABLE `attendance` DISABLE KEYS */; /*!40000 ALTER TABLE `attendance` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `backup` -- DROP TABLE IF EXISTS `backup`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `backup` ( `id` int(20) NOT NULL AUTO_INCREMENT, `user` text NOT NULL, `host` text NOT NULL, `password` text NOT NULL, `server` text NOT NULL, `path` text NOT NULL, `status` varchar(40) NOT NULL DEFAULT 'active', `createdat` varchar(40) NOT NULL, `userid` int(11) NOT NULL, `companyid` int(11) NOT NULL DEFAULT 1, `database` text NOT NULL, `location` varchar(20) NOT NULL DEFAULT 'offline', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `backup` -- LOCK TABLES `backup` WRITE; /*!40000 ALTER TABLE `backup` DISABLE KEYS */; INSERT INTO `backup` VALUES (1,'root','localhost','robisearch2018','D:\\xampp\\mysql\\bin\\','D:/Backup/','active','2020-10-30 20:47:10',1,1,'robipos','offline'); /*!40000 ALTER TABLE `backup` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `banks` -- DROP TABLE IF EXISTS `banks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `banks` ( `id` int(50) NOT NULL AUTO_INCREMENT, `expendituretype` varchar(50) NOT NULL, `amount` varchar(50) NOT NULL, `description` text NOT NULL, `paiddate` varchar(50) NOT NULL, `incharge` varchar(40) NOT NULL, `bankname` int(11) NOT NULL, `userid` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `entrydate` varchar(50) NOT NULL, `invoice` varchar(30) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `banks` -- LOCK TABLES `banks` WRITE; /*!40000 ALTER TABLE `banks` DISABLE KEYS */; INSERT INTO `banks` VALUES (1,'','0.00','','2023-03-08 12:22:43','NA',1030,'1','1','2023-03-08 12:43:31','BANK-11678268602'),(2,'','50000','','2023-03-08 12:09:46','ROBISEARCH',1030,'1','1','2023-03-08 12:46:23','BANK-11678268769'),(3,'','30000','','2023-03-08 12:02:47','ROBISEARCH',1010,'1','1','2023-03-08 12:47:17','BANK-11678268822'),(4,'','60000','','2023-03-11 09:53:17','kcb',1030,'1','1','2023-03-11 09:18:22','BANK-11678515473'),(5,'','2000000','','2023-05-27 12:18:44','ROBERT',1030,'1','1','2023-05-27 12:44:39','BANK-11685180658'); /*!40000 ALTER TABLE `banks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `batchlist` -- DROP TABLE IF EXISTS `batchlist`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `batchlist` ( `id` int(30) NOT NULL AUTO_INCREMENT, `type` varchar(30) NOT NULL, `userid` varchar(30) NOT NULL, `exactime` varchar(50) NOT NULL, `batchid` varchar(50) NOT NULL, `invoice` varchar(30) NOT NULL, `companyid` int(11) NOT NULL, `branchid` int(11) NOT NULL, `batchno` int(11) NOT NULL, `description` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `batchlist` -- LOCK TABLES `batchlist` WRITE; /*!40000 ALTER TABLE `batchlist` DISABLE KEYS */; /*!40000 ALTER TABLE `batchlist` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `beds` -- DROP TABLE IF EXISTS `beds`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `beds` ( `id` int(11) NOT NULL AUTO_INCREMENT, `houseno` varchar(100) NOT NULL, `status` varchar(40) NOT NULL DEFAULT 'active', `createdat` varchar(100) NOT NULL, `updatedat` varchar(100) NOT NULL, `userid` varchar(100) NOT NULL, `name` varchar(50) NOT NULL, `companyid` varchar(30) NOT NULL, `roomid` varchar(20) NOT NULL, `plotno` varchar(20) DEFAULT NULL, `description` text NOT NULL, `chargeid` int(20) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `beds` -- LOCK TABLES `beds` WRITE; /*!40000 ALTER TABLE `beds` DISABLE KEYS */; /*!40000 ALTER TABLE `beds` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `blog` -- DROP TABLE IF EXISTS `blog`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `blog` ( `id` int(50) NOT NULL AUTO_INCREMENT, `companyid` varchar(60) NOT NULL, `title` text NOT NULL, `answers` text NOT NULL, `email` varchar(50) NOT NULL, `phone` varchar(30) NOT NULL, `date` varchar(60) NOT NULL, `description` text NOT NULL, `postedtime` varchar(60) NOT NULL, `userid` varchar(60) NOT NULL, `invoice` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `blog` -- LOCK TABLES `blog` WRITE; /*!40000 ALTER TABLE `blog` DISABLE KEYS */; /*!40000 ALTER TABLE `blog` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `blogs` -- DROP TABLE IF EXISTS `blogs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `blogs` ( `id` int(50) NOT NULL AUTO_INCREMENT, `companyid` varchar(60) NOT NULL, `title` text NOT NULL, `answers` text NOT NULL, `email` varchar(50) NOT NULL, `phone` varchar(30) NOT NULL, `date` varchar(60) NOT NULL, `description` text NOT NULL, `postedtime` varchar(60) NOT NULL, `userid` varchar(60) NOT NULL, `invoice` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `blogs` -- LOCK TABLES `blogs` WRITE; /*!40000 ALTER TABLE `blogs` DISABLE KEYS */; /*!40000 ALTER TABLE `blogs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `bookroom` -- DROP TABLE IF EXISTS `bookroom`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `bookroom` ( `id` int(20) NOT NULL AUTO_INCREMENT, `houseno` varchar(60) NOT NULL, `plotno` varchar(50) NOT NULL, `idno` varchar(50) NOT NULL, `tenantid` varchar(40) NOT NULL, `entrydate` varchar(50) NOT NULL, `description` text NOT NULL, `checkoutdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `createdat` varchar(50) NOT NULL, `updatedat` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `amount` varchar(30) NOT NULL, `paymentstatus` varchar(30) NOT NULL, `paymentmode` varchar(30) NOT NULL, `paymentcode` varchar(30) NOT NULL, `totalamount` decimal(10,2) NOT NULL, `overpayment` decimal(10,2) NOT NULL, `discount` varchar(30) NOT NULL, `transactioncode` varchar(30) NOT NULL, `roomtype` varchar(40) NOT NULL, `number` varchar(10) NOT NULL, `total` varchar(30) NOT NULL, `balance` varchar(30) NOT NULL, `mpesa` varchar(30) NOT NULL, `card` varchar(30) NOT NULL, `bookroom` varchar(20) NOT NULL, `credit` varchar(30) NOT NULL, `voucher` varchar(10) NOT NULL, `cheque` varchar(30) NOT NULL, `points` varchar(30) NOT NULL, `people` varchar(10) NOT NULL, `category` varchar(30) NOT NULL DEFAULT 'accommodation', `deposite` decimal(10,2) NOT NULL, `chargeid` int(11) NOT NULL, `booings` int(11) NOT NULL DEFAULT 1, `branchid` int(10) NOT NULL DEFAULT 1, `tax1` decimal(10,2) NOT NULL, `tax2` decimal(10,2) NOT NULL, `vatable` decimal(10,2) NOT NULL, `mytable` varchar(20) NOT NULL, `salesperson` varchar(20) DEFAULT NULL, `receiptno` varchar(20) DEFAULT NULL, `discountedtotal` varchar(20) NOT NULL DEFAULT '', `bedid` int(11) DEFAULT 1, `bedname` varchar(100) NOT NULL, `currency` varchar(20) DEFAULT NULL, `updatedid` int(20) DEFAULT NULL, `othercurrency` varchar(20) DEFAULT NULL, `othercurrencyamount` decimal(10,4) DEFAULT NULL, `tocurrencyamount` decimal(10,4) DEFAULT NULL, `tocurrencychnage` decimal(10,4) DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `bookroom` -- LOCK TABLES `bookroom` WRITE; /*!40000 ALTER TABLE `bookroom` DISABLE KEYS */; /*!40000 ALTER TABLE `bookroom` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `branch` -- DROP TABLE IF EXISTS `branch`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `branch` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `invoice` text NOT NULL, `currency` varchar(20) NOT NULL DEFAULT 'KES', `logo` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `branch` -- LOCK TABLES `branch` WRITE; /*!40000 ALTER TABLE `branch` DISABLE KEYS */; INSERT INTO `branch` VALUES (1,'Counter','<H1 style=\"margin:0px;\">ROBISEARCH LTD( BAR AND RESTAURANT) </H1>\r\nNAIROBI, KENYA,0718667391, www.robisearch.com\r\n</BR>COMPANY PIN: P1XXXXXXX</br>\r\n</BR>TILL NO:111111111</br>\r\nCall us today if you need this Pos :0716413386\r\n\r\n','2023-11-09 05:50:22','active','1','','1','Counter','KES','2023-08-101691646451.jpeg'); /*!40000 ALTER TABLE `branch` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `brands` -- DROP TABLE IF EXISTS `brands`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `brands` ( `id` int(50) NOT NULL AUTO_INCREMENT, `companyid` varchar(60) NOT NULL, `title` text NOT NULL, `description` text NOT NULL, `email` varchar(50) NOT NULL, `phone` varchar(30) NOT NULL, `date` varchar(60) NOT NULL, `website` text NOT NULL, `postedtime` varchar(60) NOT NULL, `userid` varchar(60) NOT NULL, `invoice` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `brands` -- LOCK TABLES `brands` WRITE; /*!40000 ALTER TABLE `brands` DISABLE KEYS */; INSERT INTO `brands` VALUES (1,'1','JKUAT','Our partner in ICT Field','karenmakena3@gmail.com','0702400635','','http://www.jkuat.ac.ke/','2016-12-13 06:47:33am','',0),(2,'1','SimbaNet','Our partner in in Nikague App','','','','https://www.simbanet.net/','','',0); /*!40000 ALTER TABLE `brands` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `budget` -- DROP TABLE IF EXISTS `budget`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `budget` ( `id` int(11) NOT NULL AUTO_INCREMENT, `code` varchar(20) NOT NULL, `createdate` varchar(20) NOT NULL, `expamount` decimal(10,2) NOT NULL, `usedamount` decimal(10,2) NOT NULL, `balance` decimal(10,2) NOT NULL, `year` varchar(20) NOT NULL, `month` varchar(20) NOT NULL, `userid` int(11) NOT NULL, `companyid` int(11) NOT NULL, `branch` int(11) NOT NULL, `updatedby` int(11) NOT NULL, `description` text NOT NULL, `todate` varchar(30) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `budget` -- LOCK TABLES `budget` WRITE; /*!40000 ALTER TABLE `budget` DISABLE KEYS */; /*!40000 ALTER TABLE `budget` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `bulkdispatch` -- DROP TABLE IF EXISTS `bulkdispatch`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `bulkdispatch` ( `id` int(11) NOT NULL AUTO_INCREMENT, `branchid` varchar(100) NOT NULL, `invoice` varchar(100) NOT NULL, `frombranch` varchar(50) NOT NULL, `remarks` varchar(100) NOT NULL, `enddate` varchar(50) NOT NULL, `userid` varchar(20) NOT NULL, `companyid` varchar(20) NOT NULL, `createdate` varchar(50) NOT NULL, `description` text NOT NULL, `name` varchar(50) NOT NULL, `approvedby` int(20) NOT NULL, `dateapproved` int(20) NOT NULL, `tobranch` varchar(20) NOT NULL, `status` varchar(20) NOT NULL DEFAULT 'new', `startdate` varchar(20) NOT NULL, `type` varchar(30) NOT NULL DEFAULT 'Transfer', `category` varchar(20) NOT NULL DEFAULT 'products', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `bulkdispatch` -- LOCK TABLES `bulkdispatch` WRITE; /*!40000 ALTER TABLE `bulkdispatch` DISABLE KEYS */; /*!40000 ALTER TABLE `bulkdispatch` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `bulkhouse` -- DROP TABLE IF EXISTS `bulkhouse`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `bulkhouse` ( `id` int(40) NOT NULL AUTO_INCREMENT, `plotno` varchar(60) NOT NULL, `houseno` varchar(40) NOT NULL, `tenantid` varchar(100) NOT NULL, `amount` decimal(10,2) NOT NULL, `type` varchar(100) NOT NULL, `description` varchar(100) NOT NULL, `discount` varchar(100) NOT NULL, `idno` varchar(100) NOT NULL, `createdat` datetime NOT NULL, `updatedat` varchar(100) NOT NULL, `userid` varchar(100) NOT NULL, `duedate` varchar(40) NOT NULL, `paymentstatus` varchar(40) NOT NULL, `paymentmode` varchar(40) NOT NULL, `paymentcode` varchar(100) NOT NULL, `transactioncode` varchar(100) NOT NULL, `approvedby` varchar(60) NOT NULL, `approvaldate` varchar(60) NOT NULL, `phone` varchar(40) NOT NULL, `roomtype` decimal(10,2) NOT NULL, `balance` varchar(40) NOT NULL DEFAULT '0', `companyid` varchar(100) NOT NULL DEFAULT '1', `exactdate` varchar(50) NOT NULL, `vat` decimal(10,2) NOT NULL, `paymentdate` varchar(30) NOT NULL, `name` text NOT NULL, `chargeid` varchar(30) NOT NULL, `branchid` int(11) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `bulkhouse` -- LOCK TABLES `bulkhouse` WRITE; /*!40000 ALTER TABLE `bulkhouse` DISABLE KEYS */; /*!40000 ALTER TABLE `bulkhouse` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `bulkreservation` -- DROP TABLE IF EXISTS `bulkreservation`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `bulkreservation` ( `id` int(20) NOT NULL AUTO_INCREMENT, `houseno` varchar(60) NOT NULL, `plotno` varchar(50) NOT NULL, `idno` varchar(50) NOT NULL, `tenantid` varchar(40) NOT NULL, `entrydate` varchar(50) NOT NULL, `description` text NOT NULL, `checkoutdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `createdat` varchar(50) NOT NULL, `updatedat` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `amount` varchar(30) NOT NULL, `paymentstatus` varchar(30) NOT NULL, `paymentmode` varchar(30) NOT NULL, `paymentcode` varchar(30) NOT NULL, `totalamount` decimal(10,2) NOT NULL, `overpayment` decimal(10,2) NOT NULL, `discount` varchar(30) NOT NULL, `transactioncode` varchar(30) NOT NULL, `roomtype` varchar(40) NOT NULL, `number` varchar(10) NOT NULL, `total` varchar(30) NOT NULL, `balance` varchar(30) NOT NULL, `mpesa` varchar(30) NOT NULL, `card` varchar(30) NOT NULL, `bookroom` varchar(20) NOT NULL, `credit` varchar(30) NOT NULL, `voucher` varchar(10) NOT NULL, `cheque` varchar(30) NOT NULL, `points` varchar(30) NOT NULL, `people` varchar(10) NOT NULL, `category` varchar(30) NOT NULL DEFAULT 'accommodation', `deposite` decimal(10,2) NOT NULL, `chargeid` int(11) NOT NULL, `booings` int(11) NOT NULL DEFAULT 1, `branchid` int(10) NOT NULL DEFAULT 1, `currency` varchar(20) DEFAULT NULL, `tax1` decimal(10,2) NOT NULL, `tax2` decimal(10,2) NOT NULL, `vatable` decimal(10,2) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `id` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `bulkreservation` -- LOCK TABLES `bulkreservation` WRITE; /*!40000 ALTER TABLE `bulkreservation` DISABLE KEYS */; /*!40000 ALTER TABLE `bulkreservation` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `callcenter` -- DROP TABLE IF EXISTS `callcenter`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `callcenter` ( `id` int(11) NOT NULL AUTO_INCREMENT, `subject` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `category` varchar(30) NOT NULL, `messageid` varchar(30) NOT NULL, `updatedby` int(11) NOT NULL, `updateddate` varchar(30) NOT NULL, `callername` text NOT NULL, `receiver` text NOT NULL, `calldate` varchar(30) NOT NULL, `phone` varchar(50) NOT NULL, `media` text NOT NULL, `email` varchar(50) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `callcenter` -- LOCK TABLES `callcenter` WRITE; /*!40000 ALTER TABLE `callcenter` DISABLE KEYS */; /*!40000 ALTER TABLE `callcenter` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `category` -- DROP TABLE IF EXISTS `category`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `category` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `category` -- LOCK TABLES `category` WRITE; /*!40000 ALTER TABLE `category` DISABLE KEYS */; INSERT INTO `category` VALUES (1,'MAIN CATEGORY','','','active','1','','1'),(2,'OTHERS','','2021-08-23 03:04:54pm','active','1','','1'); /*!40000 ALTER TABLE `category` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `charges` -- DROP TABLE IF EXISTS `charges`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `charges` ( `id` int(20) NOT NULL AUTO_INCREMENT, `type` varchar(40) NOT NULL, `description` text NOT NULL, `status` varchar(40) NOT NULL, `createdat` varchar(100) NOT NULL, `updatedat` varchar(100) NOT NULL, `userid` varchar(100) NOT NULL, `priority` int(11) NOT NULL, `companyid` int(5) NOT NULL DEFAULT 1, `branchid` int(20) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `charges` -- LOCK TABLES `charges` WRITE; /*!40000 ALTER TABLE `charges` DISABLE KEYS */; INSERT INTO `charges` VALUES (1,'RENT','','','2018-05-30 14:28:37','','',0,1,NULL),(2,'DEPOSIT','','','2018-05-30 14:27:39','','',0,1,NULL),(3,'WATER/POWER DEPOSIT','','','2018-05-30 14:28:49','','',0,1,NULL),(4,'PENALTY','','','2018-06-25 13:38:03','','',0,1,NULL),(5,'WATER','','','2018-06-27 11:33:55','','',0,1,NULL),(6,'PARTIAL PAYMENT','','','2018-06-29 16:22:30','','',0,1,NULL),(7,'GARBAGE','','','2018-07-03 16:56:46','','',0,1,NULL),(8,'DAMAGES','','','2018-07-17 12:30:05','','',0,1,NULL),(9,'AGREEMENT FORM','','','2018-07-23 10:21:11','','',0,1,NULL),(10,'POWER','','','2018-08-04 10:42:10','','',0,1,NULL),(11,'SEWAGE','SEWAGE','','2020-05-27 16:23:21','','',2,1,NULL),(12,'BED ONLY','','','2020-05-28 15:38:20','','',1,1,NULL),(13,'BED AND BREAKFAST','','','2020-05-28 15:38:39','','',2,1,NULL),(14,'PROJECTOR','','','2023-04-28 08:21:52','','',0,1,NULL),(15,'LAUNDRY','LAUNDRY','','2023-04-28 08:22:20','','',0,1,NULL),(16,'ROOM TRANSFER','200','','2023-04-30 06:16:29','','',2,1,NULL),(17,'BED 1','0','','2023-05-11 11:10:44','','',1,1,NULL),(18,'BED 2','0','','2023-05-11 11:10:51','','',0,1,NULL),(19,'SERVICE CHARGE','0','','2023-09-01 11:09:35','','',1,1,NULL); /*!40000 ALTER TABLE `charges` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cheque` -- DROP TABLE IF EXISTS `cheque`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `cheque` ( `id` int(50) NOT NULL AUTO_INCREMENT, `expendituretype` varchar(50) NOT NULL, `amount` varchar(50) NOT NULL, `description` text NOT NULL, `paiddate` varchar(50) NOT NULL, `incharge` varchar(40) NOT NULL, `bankname` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `entrydate` varchar(50) NOT NULL, `invoice` varchar(30) NOT NULL, `business` varchar(100) NOT NULL, `type` varchar(15) NOT NULL, `chequenumber` varchar(70) NOT NULL, `exactdate` varchar(30) NOT NULL, `status` varchar(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cheque` -- LOCK TABLES `cheque` WRITE; /*!40000 ALTER TABLE `cheque` DISABLE KEYS */; /*!40000 ALTER TABLE `cheque` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `collection` -- DROP TABLE IF EXISTS `collection`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `collection` ( `id` int(11) NOT NULL AUTO_INCREMENT, `paiddate` varchar(100) NOT NULL, `invoice` varchar(100) NOT NULL, `amount` varchar(100) NOT NULL, `remarks` varchar(100) NOT NULL, `balance` varchar(30) NOT NULL, `userid` varchar(20) NOT NULL, `companyid` varchar(20) NOT NULL, `paymentmethodes` int(10) NOT NULL, `createdate` varchar(50) NOT NULL, `name` varchar(30) NOT NULL DEFAULT 'payment', `transactioncode` varchar(50) NOT NULL, `supplier` int(11) DEFAULT NULL, `branchid` int(11) DEFAULT 1, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `collection` -- LOCK TABLES `collection` WRITE; /*!40000 ALTER TABLE `collection` DISABLE KEYS */; /*!40000 ALTER TABLE `collection` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `commission` -- DROP TABLE IF EXISTS `commission`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `commission` ( `id` int(11) NOT NULL, `userid` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `name` varchar(50) NOT NULL, `datesold` varchar(40) NOT NULL, `sellingprice` decimal(10,2) NOT NULL, `profit` varchar(50) NOT NULL, `mode` varchar(50) NOT NULL, `code` varchar(50) NOT NULL, `paymentdate` varchar(50) NOT NULL, `rate` varchar(30) NOT NULL, `customer` varchar(30) NOT NULL, `customerphone` varchar(50) NOT NULL, `customeremail` varchar(50) NOT NULL, `customerlocation` varchar(50) NOT NULL, `description` text NOT NULL, `dateposted` varchar(40) NOT NULL, `status` varchar(10) NOT NULL DEFAULT 'New', `paid` decimal(10,2) NOT NULL, `expcommission` decimal(10,2) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `commission` -- LOCK TABLES `commission` WRITE; /*!40000 ALTER TABLE `commission` DISABLE KEYS */; /*!40000 ALTER TABLE `commission` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `complain` -- DROP TABLE IF EXISTS `complain`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `complain` ( `id` int(11) NOT NULL AUTO_INCREMENT, `subject` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) DEFAULT '1', `type` varchar(30) NOT NULL, `messageid` varchar(30) DEFAULT NULL, `updatedby` int(11) NOT NULL, `updateddate` varchar(30) NOT NULL, `serial` varchar(200) NOT NULL, `name` text NOT NULL, `invoice` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `complain` -- LOCK TABLES `complain` WRITE; /*!40000 ALTER TABLE `complain` DISABLE KEYS */; /*!40000 ALTER TABLE `complain` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `complaindata` -- DROP TABLE IF EXISTS `complaindata`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `complaindata` ( `id` int(30) NOT NULL, `description` text NOT NULL, `date` varchar(50) NOT NULL, `taskid` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'newstock', `companyid` varchar(100) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `complaindata` -- LOCK TABLES `complaindata` WRITE; /*!40000 ALTER TABLE `complaindata` DISABLE KEYS */; /*!40000 ALTER TABLE `complaindata` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `computers` -- DROP TABLE IF EXISTS `computers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `computers` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `invoice` text NOT NULL, `computerno` text NOT NULL, `fromdate` varchar(30) NOT NULL, `todate` varchar(30) DEFAULT NULL, `receiptno` varchar(50) NOT NULL, `duration` int(11) NOT NULL, `phone` varchar(20) DEFAULT NULL, `extensiontype` varchar(30) NOT NULL, `computernostatus` varchar(20) NOT NULL DEFAULT 'new', `computernodate` varchar(20) NOT NULL, `computernouserdata` text NOT NULL, `updatedid` int(11) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `computers` -- LOCK TABLES `computers` WRITE; /*!40000 ALTER TABLE `computers` DISABLE KEYS */; INSERT INTO `computers` VALUES (1,'ROBISEARCH LTD','e44','2023-02-13 07:08:17','Closed','1','2023-02-13 07:13:34','1','3','B0-22-7A-ED-77-F6','2023-02-24','2023-02-10','',0,NULL,'New Installation','new','','',1); /*!40000 ALTER TABLE `computers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `constants` -- DROP TABLE IF EXISTS `constants`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `constants` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(30) NOT NULL, `amount` decimal(10,2) NOT NULL, `status` varchar(20) NOT NULL DEFAULT 'active', `companyid` int(11) NOT NULL, `userid` int(11) NOT NULL, `category` varchar(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `constants` -- LOCK TABLES `constants` WRITE; /*!40000 ALTER TABLE `constants` DISABLE KEYS */; INSERT INTO `constants` VALUES (1,'Relief',2400.00,'active',1,1,'Relief'),(2,'Pension',200.00,'active',1,1,'Pension'),(3,'NSSF',200.00,'oldrate',1,1,'NSSF'),(4,'Minimum Paye',24000.00,'active',1,1,'MinimumPaye'); /*!40000 ALTER TABLE `constants` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `contact` -- DROP TABLE IF EXISTS `contact`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `contact` ( `id` int(50) NOT NULL AUTO_INCREMENT, `country` varchar(60) NOT NULL, `firstname` varchar(50) NOT NULL, `lastname` varchar(50) NOT NULL, `email` varchar(50) NOT NULL, `phone` varchar(30) NOT NULL, `date` varchar(60) NOT NULL, `description` text NOT NULL, `postedtime` varchar(60) NOT NULL, `userid` varchar(60) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `contact` -- LOCK TABLES `contact` WRITE; /*!40000 ALTER TABLE `contact` DISABLE KEYS */; /*!40000 ALTER TABLE `contact` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `contactdetails` -- DROP TABLE IF EXISTS `contactdetails`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `contactdetails` ( `id` int(50) NOT NULL AUTO_INCREMENT, `title` text NOT NULL, `website` text NOT NULL, `contactdetails` text NOT NULL, `email` text NOT NULL, `phone` text NOT NULL, `date` varchar(60) NOT NULL, `description` text NOT NULL, `postedtime` varchar(60) NOT NULL, `userid` varchar(60) NOT NULL, `companyid` int(11) NOT NULL, `branchid` int(11) NOT NULL, `facebook` text NOT NULL, `twitter` text NOT NULL, `instagram` text NOT NULL, `linkedin` text NOT NULL, `youtube` text NOT NULL, `location` text NOT NULL, `aboutustitle` text NOT NULL, `aboutus` text NOT NULL, `whyustitle` text NOT NULL, `whyus` text NOT NULL, `whatsapp` text NOT NULL, `websites` text NOT NULL, `otherlinks` text NOT NULL, `termstitle` text NOT NULL, `terms` text NOT NULL, `deliverytitle` text NOT NULL, `delivery` text NOT NULL, `privacytitle` text NOT NULL, `privacy` text NOT NULL, `branches` text NOT NULL, `telegram` text NOT NULL, `otherlinktitle` text NOT NULL, `aboutuslogo` text NOT NULL, `businessname` text NOT NULL, `business` varchar(30) NOT NULL, `vision` text NOT NULL, `mission` text NOT NULL, `corevalues` text NOT NULL, `ourpromise` text NOT NULL, `returnpolicy` text NOT NULL, `workinghours` text NOT NULL, `updatedat` varchar(30) NOT NULL, `updatedby` int(11) NOT NULL, `careertitle` text NOT NULL, `career` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `contactdetails` -- LOCK TABLES `contactdetails` WRITE; /*!40000 ALTER TABLE `contactdetails` DISABLE KEYS */; INSERT INTO `contactdetails` VALUES (1,'','https://robisearch.com/','kinoti','karenmakena3@gmail.com','0754413386, 0716413386,0780655987','','We have from 01/07/2020 to 31/8/2010','2016-12-13 06:47:33am','1',1,0,'https://web.facebook.com/Robiearch/','https://twitter.com/robisearch','https://www.linkedin.com/in/robert-manyala-995177122/','https://www.linkedin.com/in/robert-manyala-995177122/','https://www.youtube.com/channel/UC9Z1YpMKlCgwqn4H1nT1hLg/featured','Nairobi -Nara Fourth Floor,</br> Kisii-Oyondi Building','<b>About Us </b>','Robisearch Ltd is an ICT company that begun in 2011 as a result of innovations that transform lives globally. We are a member of the Nairobi Chambers (KNCCI) organization.We have great experience in dealing with customers having handled over 500 clients in all Kenyan towns such as Juja, Nairobi, Mombasa and Kisumu as well as beyond the country.We provide our clients with adequate support thus providing more value to our customers .Our systems are customized to fit a clients particular need.We are the company behind various innovations like…..</br>','Why Us ','We have a well-organized support and maintenance structure that we will sign with you as a Service Level Agreement that guarantees you;','https://api.whatsapp.com/send?phone=254716413386&text=&source=&data=&app_absent=','','POS.robisearch.com/','Terms and Condition ','karenmakena3@gmail.com','Delivery Information','Shipping Agents and Times</br>\r\n\r\nOur products ordered before 3pm are shipped within 24 Hours using the following carriers, Umash Bus Sacco, Easy Coach Sacco, North Rift Sacco or any other of your choice. Orders Placed in later hours are shipped on the following days</br>\r\nZipping Zones and Costs</br>\r\n\r\nOur shipping Zones are categorized into Coast Region, Rift Valley Region, Nairobi Region, North Easter Region and Nyanza Region. All orders to be collected at our shop are not chargeable any shipping cost. However all the other places we charge shipping cost depending with what our shipping agents charges; basically a shipping cost of between Ksh300- 400 applies except for regions within Nairobi County where a fee of roughly Ksh 150 – 200 applies. All shipping cost is subject to change without any notice.</br>','Privacy Details','PRIVACY POLICY</br>\r\n\r\nThis Privacy Policy explains what personal data is collected when you use the jiji.ng any jiji.ng mobile application, or website (“Jiji”, \"Website\", or \"App\") and the services provided through it (together with the Website and the App, the “Service”), how such personal data will be used, shared.</br>\r\n\r\nBY USING THE SERVICE, YOU PROMISE US THAT (I) YOU HAVE READ, UNDERSTOOD AND AGREED TO THIS PRIVACY POLICY, AND (II) YOU ARE OVER 16 YEARS OF AGE (OR HAVE HAD YOUR PARENT OR GUARDIAN READ AND AGREED TO THIS PRIVACY POLICY FOR YOU). If you do not agree or you are unable to make this promise, you must not use the Service. In such case, you must contact the support team via online chat or email to request deletion of your account and data.</br>\r\n\r\nProcess in respect of personal data, means to collect, store, and disclose to others.</br>\r\n\r\nTABLE OF CONTENTS</br>\r\n\r\n1. PERSONAL DATA CONTROLLER</br>\r\n\r\n2. CATEGORIES OF PERSONAL DATA WE COLLECT</br>\r\n\r\n3. FOR WHAT PURPOSES WE PROCESS PERSONAL DATA</br>\r\n\r\n4. AUTHORISED REQUIREMENT FOR PROCESSING YOUR PERSONAL DATA</br>\r\n\r\n5. WHO WE SHARE YOUR PERSONAL DATA WITH\r\n</br>\r\n6. HOW YOU CAN EXERCISE YOUR PRIVACY RIGHTS</br>\r\n\r\n7. AGE LIMITATION</br>\r\n\r\n8. CHANGES TO THIS PRIVACY POLICY</br>\r\n\r\n9. DATA RETENTION\r\n</br>\r\n10. CONTACT US</br>','Juja, Kisii','https://api.whatsapp.com/send?phone=254716413386&text=&source=&data=&app_absent=','POS LINK','2147483647','Robisearch is an ICT business organization that deals ICT based solutions. We have been in the industry since 2011. Our main activity is software developement. ','ROBISEARCH LTD',' Transforming the world through innovation',' To be the best ICT company offering innovate services globally.','nnovation, Integrity, hardwork, commitment, honesty, equality, justice, fairness, love.','To Give the best services at all times','Return Policy</br>\r\n\r\nAll defined terms used below shall have the meanings set forth in our Terms and Conditions. If you are not happy with your purchase, we will accept a return of a unused product within 7 days. Once we receive the returned item Breejoz Baby Shop & Maternity Collections will then give a full refund (excluding shipping as we are unable to refund the initial shipping cost of your order). Please allow 1-2 weeks for your return to be processed.</br>',' WORKING HOURS</br>\r\n\r\n Mon 8:00am - 6:00pm</br>\r\n Tue 8:00am - 6:00pm</br>\r\n Wed 8:00am - 6:00pm</br>\r\n Thur 8:00am - 6:00pm</br>\r\n Fri 8:00am - 6:00pm</br>\r\n Sat 8:00am - 6:00pm</br>\r\n\r\n','2020-07-04 08:44:24',1,'Job Vacancy','Join our sales team as online marketers'); /*!40000 ALTER TABLE `contactdetails` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `county` -- DROP TABLE IF EXISTS `county`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `county` ( `id` int(40) NOT NULL AUTO_INCREMENT, `code` varchar(50) NOT NULL, `name` varchar(255) DEFAULT NULL, `provincecode` varchar(50) NOT NULL, `description` text NOT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=48 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `county` -- LOCK TABLES `county` WRITE; /*!40000 ALTER TABLE `county` DISABLE KEYS */; INSERT INTO `county` VALUES (1,'1','Mombasa','2','Mombasa','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'2','Kwale','2','Kwale','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'3','Kilifi','2','Kilifi','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'4','Tana River','2','Tana River','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,'5','Lamu','2','Lamu','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,'6','Taita-Taveta','2','Taita-Taveta','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,'7','Garissa','5','Garissa','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'8','Wajir','5','Wajir','0000-00-00 00:00:00','0000-00-00 00:00:00'),(9,'9','Mandera','5','Mandera','0000-00-00 00:00:00','0000-00-00 00:00:00'),(10,'10','Marsabit','3','Marsabit','0000-00-00 00:00:00','0000-00-00 00:00:00'),(11,'11','Isiolo','3','Isiolo','0000-00-00 00:00:00','0000-00-00 00:00:00'),(12,'12','Meru','3','Meru','0000-00-00 00:00:00','0000-00-00 00:00:00'),(13,'13','Tharaka-Nithi','3','Tharaka-Nithi','0000-00-00 00:00:00','0000-00-00 00:00:00'),(14,'14','Embu','3','Embu','0000-00-00 00:00:00','0000-00-00 00:00:00'),(15,'15','Kitui','3','Kitui','0000-00-00 00:00:00','0000-00-00 00:00:00'),(16,'16','Machakos','3','Machakos','0000-00-00 00:00:00','0000-00-00 00:00:00'),(17,'17','Makueni','3','Makueni','0000-00-00 00:00:00','0000-00-00 00:00:00'),(18,'18','Nyandarua','1','Nyandarua','0000-00-00 00:00:00','0000-00-00 00:00:00'),(19,'19','Nyeri','1','Nyeri','0000-00-00 00:00:00','0000-00-00 00:00:00'),(20,'20','Kirinyaga','1','Kirinyaga','0000-00-00 00:00:00','0000-00-00 00:00:00'),(21,'21','Murang\'a','1','Murang\'a','0000-00-00 00:00:00','0000-00-00 00:00:00'),(22,'22','Kiambu','1','Kiambu','0000-00-00 00:00:00','0000-00-00 00:00:00'),(23,'23','Turkana','7','Turkana','0000-00-00 00:00:00','0000-00-00 00:00:00'),(24,'24','West Pokot','7','West Pokot','0000-00-00 00:00:00','0000-00-00 00:00:00'),(25,'25','Samburu','7','Samburu','0000-00-00 00:00:00','0000-00-00 00:00:00'),(26,'26','Trans-Nzoia','7','Trans-Nzoia','0000-00-00 00:00:00','0000-00-00 00:00:00'),(27,'27','Uasin Gishu','7','Uasin Gishu','0000-00-00 00:00:00','0000-00-00 00:00:00'),(28,'28','Elgeyo-Marakwet','7','Elgeyo-Marakwet','0000-00-00 00:00:00','0000-00-00 00:00:00'),(29,'29','Nandi','7','Nandi','0000-00-00 00:00:00','0000-00-00 00:00:00'),(30,'30','Baringo','7','Baringo','0000-00-00 00:00:00','0000-00-00 00:00:00'),(31,'31','Laikipia','7','Laikipia','0000-00-00 00:00:00','0000-00-00 00:00:00'),(32,'32','Nakuru','7','Nakuru','0000-00-00 00:00:00','0000-00-00 00:00:00'),(33,'33','Narok','7','Narok','0000-00-00 00:00:00','0000-00-00 00:00:00'),(34,'34','Kajiado','7','Kajiado','0000-00-00 00:00:00','0000-00-00 00:00:00'),(35,'35','Kericho','7','Kericho','0000-00-00 00:00:00','0000-00-00 00:00:00'),(36,'36','Bomet','7','Bomet','0000-00-00 00:00:00','0000-00-00 00:00:00'),(37,'37','Kakamega','8','Kakamega','0000-00-00 00:00:00','0000-00-00 00:00:00'),(38,'38','Vihiga','8','Vihiga','0000-00-00 00:00:00','0000-00-00 00:00:00'),(39,'39','Bungoma','8','Bungoma','0000-00-00 00:00:00','0000-00-00 00:00:00'),(40,'40','Busia','8','Busia','0000-00-00 00:00:00','0000-00-00 00:00:00'),(41,'41','Siaya','6','Siaya','0000-00-00 00:00:00','0000-00-00 00:00:00'),(42,'42','Kisumu','6','Kisumu','0000-00-00 00:00:00','0000-00-00 00:00:00'),(43,'43','Homa Bay','6','Homa Bay','0000-00-00 00:00:00','0000-00-00 00:00:00'),(44,'44','Migori','6','Migori','0000-00-00 00:00:00','0000-00-00 00:00:00'),(45,'45','Kisii','6','Kisii','0000-00-00 00:00:00','0000-00-00 00:00:00'),(46,'46','Nyamira','6','Nyamira','0000-00-00 00:00:00','0000-00-00 00:00:00'),(47,'47','Nairobi','4','Nairobi','0000-00-00 00:00:00','0000-00-00 00:00:00'); /*!40000 ALTER TABLE `county` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `currency` -- DROP TABLE IF EXISTS `currency`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `currency` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `branchid` int(20) NOT NULL DEFAULT 1, `basecurrency` varchar(30) NOT NULL, `baseamount` varchar(30) NOT NULL, `tocurrency` varchar(30) NOT NULL, `toamount` varchar(30) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=38 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `currency` -- LOCK TABLES `currency` WRITE; /*!40000 ALTER TABLE `currency` DISABLE KEYS */; INSERT INTO `currency` VALUES (17,'USD','','2023-07-23 15:56:01','active','9','','1',1,'USD','1','','1'),(18,'TZS','','2023-07-23 15:57:10','active','9','','1',1,'USD','1','','2500'),(29,'EUR','','2023-09-28 09:06:17','active','1','','1',1,'EUR','1','','1'),(30,'GBP','','2023-09-28 09:06:28','active','1','','1',1,'GBP','1','','1'),(31,'KES','','2023-09-28 09:06:42','active','1','','1',1,'KES','1','','1'),(32,'TZS','','2023-09-28 09:07:01','active','1','','1',1,'TZS','1','','1'),(33,'KES','','2023-10-24 11:52:59','active','9','','1',1,'USD','1','','150'),(34,'EUR','','2023-10-29 10:31:44','active','9','','1',1,'USD','1','','0.94'),(35,'GBP','','2023-10-29 10:32:02','active','9','','1',1,'USD','1','','0.83'),(36,'USD','','2023-10-30 14:52:36','active','9','','1',1,'KES','1','','0.0067'),(37,'USD','','2023-11-06 12:36:08','active','9','','1',1,'TZS','1','','0.0004'); /*!40000 ALTER TABLE `currency` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customedproductcategory` -- DROP TABLE IF EXISTS `customedproductcategory`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `customedproductcategory` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `branchid` varchar(30) NOT NULL, `commission` varchar(20) NOT NULL DEFAULT '0', `shipping` varchar(20) NOT NULL, `type` varchar(30) NOT NULL DEFAULT 'Percentage', `imgid` varchar(50) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `customedproductcategory` -- LOCK TABLES `customedproductcategory` WRITE; /*!40000 ALTER TABLE `customedproductcategory` DISABLE KEYS */; INSERT INTO `customedproductcategory` VALUES (1,'HOTEL','','2023-05-30 15:18:11','active','1','','1','1','0','','Percentage',NULL); /*!40000 ALTER TABLE `customedproductcategory` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customer` -- DROP TABLE IF EXISTS `customer`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `customer` ( `id` int(11) NOT NULL AUTO_INCREMENT, `firstname` varchar(100) NOT NULL, `surname` varchar(50) NOT NULL, `username` varchar(100) NOT NULL, `phone` varchar(100) NOT NULL, `business` varchar(50) NOT NULL, `county` varchar(50) NOT NULL, `createddate` varchar(50) NOT NULL, `password` varchar(30) NOT NULL, `website` varchar(100) NOT NULL, `dob` varchar(50) NOT NULL, `idno` varchar(50) NOT NULL, `description` text NOT NULL, `box` varchar(50) NOT NULL, `source` varchar(50) DEFAULT NULL, `town` varchar(50) NOT NULL, `country` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `category` varchar(50) NOT NULL, `apiaccount_id` varchar(30) NOT NULL DEFAULT '1', `recoverpassword` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'new', `companyid` int(10) NOT NULL DEFAULT 1, `service` text NOT NULL, `usertype` varchar(50) DEFAULT NULL, `smstype` int(10) NOT NULL DEFAULT 2, `refer` text NOT NULL, `email` varchar(50) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `customer` -- LOCK TABLES `customer` WRITE; /*!40000 ALTER TABLE `customer` DISABLE KEYS */; /*!40000 ALTER TABLE `customer` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customerfiscalyear` -- DROP TABLE IF EXISTS `customerfiscalyear`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `customerfiscalyear` ( `id` int(40) NOT NULL AUTO_INCREMENT, `name` varchar(60) NOT NULL, `status` varchar(20) NOT NULL DEFAULT 'active', `startdate` datetime NOT NULL, `enddate` datetime NOT NULL, `companyid` int(11) NOT NULL, `userid` int(11) NOT NULL, `createdate` varchar(30) NOT NULL, `opening` decimal(10,2) NOT NULL, `closing` decimal(10,2) NOT NULL, `priority` int(11) NOT NULL, `number` varchar(50) NOT NULL, `branchid` int(11) NOT NULL DEFAULT 1, `category` varchar(20) NOT NULL DEFAULT 'customer', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `customerfiscalyear` -- LOCK TABLES `customerfiscalyear` WRITE; /*!40000 ALTER TABLE `customerfiscalyear` DISABLE KEYS */; INSERT INTO `customerfiscalyear` VALUES (1,'','active','2022-00-00 00:00:00','2021-00-00 00:00:00',1,1,'\r\n<div style=\"border:1px solid',3333.00,44444.00,0,'1',0,'member'); /*!40000 ALTER TABLE `customerfiscalyear` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `customersupplierbalance` -- DROP TABLE IF EXISTS `customersupplierbalance`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `customersupplierbalance` ( `id` int(40) NOT NULL AUTO_INCREMENT, `description` varchar(60) NOT NULL, `status` varchar(20) NOT NULL DEFAULT 'active', `startdate` datetime NOT NULL, `enddate` datetime NOT NULL, `companyid` int(11) NOT NULL, `userid` int(11) NOT NULL, `createdate` varchar(30) NOT NULL, `opening` decimal(10,2) NOT NULL, `closing` decimal(10,2) NOT NULL, `priority` int(11) NOT NULL, `number` varchar(50) NOT NULL, `branchid` int(11) NOT NULL DEFAULT 1, `customerid` int(11) NOT NULL, `type` varchar(20) NOT NULL DEFAULT 'customer', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `customersupplierbalance` -- LOCK TABLES `customersupplierbalance` WRITE; /*!40000 ALTER TABLE `customersupplierbalance` DISABLE KEYS */; /*!40000 ALTER TABLE `customersupplierbalance` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dailycharges` -- DROP TABLE IF EXISTS `dailycharges`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `dailycharges` ( `myinvoice` varchar(50) DEFAULT NULL, `id` int(11) NOT NULL AUTO_INCREMENT, `invoice` varchar(100) NOT NULL, `code` varchar(100) NOT NULL, `qty` varchar(10) NOT NULL, `amount` varchar(100) NOT NULL, `salestype` varchar(100) NOT NULL, `discount` varchar(100) NOT NULL, `dateposted` varchar(50) NOT NULL, `address` text NOT NULL, `description` text NOT NULL, `user` varchar(50) NOT NULL, `bprice` varchar(50) NOT NULL, `type` varchar(50) NOT NULL DEFAULT 'cash', `tax` decimal(10,2) NOT NULL, `sprice` varchar(100) NOT NULL, `balance` varchar(50) NOT NULL, `customer` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `mode` varchar(50) NOT NULL DEFAULT '16', `companyid` varchar(100) NOT NULL, `date` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), `maincategory` varchar(50) NOT NULL, `category` varchar(50) NOT NULL, `status` varchar(30) DEFAULT 'checkin', `branch` varchar(30) NOT NULL, `ordersales` varchar(20) NOT NULL DEFAULT 'new', `uom` varchar(30) NOT NULL, `sales` varchar(30) NOT NULL, `updatedat` varchar(50) NOT NULL, `updatedby` varchar(10) NOT NULL, `taxindicator` varchar(10) NOT NULL DEFAULT 'yes', `serial` varchar(50) DEFAULT NULL, `tax2` varchar(20) NOT NULL, `discountype` varchar(20) NOT NULL, `discountvalue` varchar(20) NOT NULL, `vattype` varchar(20) NOT NULL, `taxable` decimal(10,2) NOT NULL, `uomqty` varchar(30) NOT NULL DEFAULT '0', `stockbefore` varchar(30) NOT NULL, `stockafter` varchar(30) NOT NULL, `taxtype` varchar(30) NOT NULL DEFAULT 'Inclusive', `stock` varchar(20) NOT NULL DEFAULT 'branch', `producttype` varchar(30) NOT NULL, `assetaccount` varchar(30) NOT NULL, `salesaccount` varchar(30) NOT NULL, `expenseaccount` varchar(30) DEFAULT NULL, `start` varchar(20) NOT NULL, `close` varchar(20) NOT NULL, `transactioncode` varchar(50) NOT NULL, `name` varchar(20) NOT NULL, `chargeid` varchar(20) NOT NULL, `plotno` varchar(20) NOT NULL, `houseno` varchar(20) NOT NULL, `cost` varchar(20) NOT NULL, `createdat` varchar(30) NOT NULL, `discountedtotal` varchar(20) DEFAULT NULL, `idno` varchar(20) DEFAULT NULL, `phone` varchar(50) DEFAULT NULL, `checkin` varchar(30) DEFAULT NULL, `checkout` varchar(30) DEFAULT NULL, `roomtype` varchar(20) DEFAULT NULL, `bedid` varchar(20) DEFAULT NULL, `bedname` varchar(20) DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `myinvoice` (`myinvoice`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dailycharges` -- LOCK TABLES `dailycharges` WRITE; /*!40000 ALTER TABLE `dailycharges` DISABLE KEYS */; /*!40000 ALTER TABLE `dailycharges` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dailycollections` -- DROP TABLE IF EXISTS `dailycollections`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `dailycollections` ( `id` int(40) NOT NULL AUTO_INCREMENT, `idno` varchar(50) NOT NULL, `description` text NOT NULL, `userid` varchar(50) NOT NULL, `createdat` varchar(50) NOT NULL, `updatedat` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `amount` varchar(30) NOT NULL, `name` varchar(30) NOT NULL, `total` varchar(30) NOT NULL, `balance` varchar(30) NOT NULL, `mpesa` varchar(30) NOT NULL, `card` varchar(30) NOT NULL, `credit` varchar(30) NOT NULL, `voucher` varchar(10) NOT NULL, `cheque` varchar(30) NOT NULL, `points` varchar(30) NOT NULL, `controller` varchar(30) NOT NULL, `expense` varchar(30) NOT NULL, `cash` varchar(30) NOT NULL, `discount` varchar(30) NOT NULL, `entrydate` varchar(30) NOT NULL, `contact` varchar(30) NOT NULL, `transactioncode` varchar(30) NOT NULL, `status` varchar(30) NOT NULL DEFAULT 'active', `tax` decimal(10,2) NOT NULL, `sort` decimal(10,2) NOT NULL, `sortmoney` decimal(10,2) NOT NULL, `transactiondate` varchar(30) NOT NULL, `branchid` int(11) NOT NULL, `openingbalance` decimal(10,2) NOT NULL, `closingbalance` decimal(10,2) NOT NULL, `cashcollected` decimal(10,2) NOT NULL, `totalsales` decimal(10,2) NOT NULL, `debt` decimal(10,0) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dailycollections` -- LOCK TABLES `dailycollections` WRITE; /*!40000 ALTER TABLE `dailycollections` DISABLE KEYS */; INSERT INTO `dailycollections` VALUES (1,'','','1','2023-05-10 15:40:36','','1','','Admin','','',' 0','0','110','0','0','0','rrrr','','0','','2023-05-09 23:59:00','','','active',0.00,0.00,0.00,'',1,0.00,300.00,0.00,0.00,0),(2,'32424234','dfsadfs','1','2023-11-08 05:38:57','','1','','Admin','','',' 0','0','0','0','0','0','r34r','','740','','2023-11-08 23:59:00','0724915554','','active',0.00,0.00,740.00,'',1,300.00,0.00,0.00,740.00,400),(3,'32424234','xx','1','2023-11-08 05:40:21','','1','4000','Admin','','',' 0','0','0','0','0','0','ROBERT','','740','','2023-11-08 23:59:00','0724915554','','active',0.00,0.00,740.00,'',1,0.00,0.00,0.00,740.00,400),(4,'32424234','dddd','1','2023-11-08 05:41:54','','1','4000','Admin','','',' 0','0','0','0','0','0','ROBERT','3400','740','','2023-11-08 23:59:00','0724915554','','active',0.00,0.00,740.00,'',1,0.00,0.00,0.00,740.00,400); /*!40000 ALTER TABLE `dailycollections` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dailytasks` -- DROP TABLE IF EXISTS `dailytasks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `dailytasks` ( `id` int(30) NOT NULL AUTO_INCREMENT, `branchid` int(11) DEFAULT NULL, `status` varchar(11) NOT NULL DEFAULT 'active', `userid` int(30) NOT NULL, `createdate` varchar(30) NOT NULL, `companyid` int(11) NOT NULL, `updateddate` varchar(40) NOT NULL, `taskid` int(11) NOT NULL, `achieved` varchar(20) NOT NULL, `period` varchar(20) NOT NULL, `description` text NOT NULL, `exactdate` varchar(30) NOT NULL, `day` varchar(20) NOT NULL, `comment` text NOT NULL, `updatedby` int(11) NOT NULL, `mykey` varchar(50) NOT NULL, `approval` varchar(20) NOT NULL, PRIMARY KEY (`id`), KEY `contract` (`branchid`), KEY `type` (`status`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci COMMENT='Add or sub entitlement for employees or contracts'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dailytasks` -- LOCK TABLES `dailytasks` WRITE; /*!40000 ALTER TABLE `dailytasks` DISABLE KEYS */; /*!40000 ALTER TABLE `dailytasks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `damages` -- DROP TABLE IF EXISTS `damages`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `damages` ( `id` int(10) NOT NULL AUTO_INCREMENT, `expendituretype` varchar(50) NOT NULL, `user` varchar(50) NOT NULL, `qty` varchar(50) NOT NULL, `details` text NOT NULL, `datedamaged` varchar(50) NOT NULL, `incharge` varchar(40) NOT NULL, `product` text NOT NULL, `userid` varchar(50) NOT NULL, `companyid` varchar(30) NOT NULL, `entrydate` varchar(50) NOT NULL, `supplier` varchar(30) NOT NULL, `original` decimal(10,2) NOT NULL, `balance` decimal(10,2) NOT NULL, `branchid` int(5) DEFAULT 1, `invoice` varchar(50) NOT NULL, `buyingprice` varchar(20) NOT NULL, `ttbrice` varchar(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `damages` -- LOCK TABLES `damages` WRITE; /*!40000 ALTER TABLE `damages` DISABLE KEYS */; /*!40000 ALTER TABLE `damages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `deals` -- DROP TABLE IF EXISTS `deals`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `deals` ( `id` int(50) NOT NULL AUTO_INCREMENT, `owner` varchar(100) NOT NULL, `title` varchar(100) NOT NULL, `contact` varchar(100) NOT NULL, `type` varchar(100) NOT NULL, `nextstep` text NOT NULL, `contactname` varchar(100) NOT NULL, `amount` varchar(100) NOT NULL, `fromdate` datetime NOT NULL, `todate` datetime NOT NULL, `probability` varchar(100) NOT NULL, `expectedrevenue` varchar(100) NOT NULL, `stage` varchar(100) NOT NULL, `status` varchar(100) NOT NULL DEFAULT 'active', `comments` text NOT NULL, `userid` varchar(100) NOT NULL, `dateposted` datetime NOT NULL, `companyid` varchar(100) NOT NULL, `allsteps` text NOT NULL, `dealowner` varchar(30) NOT NULL, `branchid` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `deals` -- LOCK TABLES `deals` WRITE; /*!40000 ALTER TABLE `deals` DISABLE KEYS */; /*!40000 ALTER TABLE `deals` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dealsfeedback` -- DROP TABLE IF EXISTS `dealsfeedback`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `dealsfeedback` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` text NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dealsfeedback` -- LOCK TABLES `dealsfeedback` WRITE; /*!40000 ALTER TABLE `dealsfeedback` DISABLE KEYS */; /*!40000 ALTER TABLE `dealsfeedback` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `debitcredit` -- DROP TABLE IF EXISTS `debitcredit`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `debitcredit` ( `id` int(30) NOT NULL AUTO_INCREMENT, `account` varchar(50) NOT NULL, `code` varchar(50) NOT NULL, `crateddate` datetime NOT NULL, `debit` decimal(10,2) DEFAULT NULL, `credit` decimal(10,2) DEFAULT NULL, `balance` varchar(20) NOT NULL, `userid` varchar(20) NOT NULL, `companyid` varchar(20) NOT NULL, `description` text NOT NULL, `branch` varchar(30) NOT NULL, `supplier` varchar(30) NOT NULL, `type` varchar(30) NOT NULL, `refno` varchar(30) NOT NULL, `mode` varchar(50) NOT NULL, `confirm` varchar(30) NOT NULL DEFAULT 'No', `updatedat` varchar(30) DEFAULT NULL, `updatedby` int(11) DEFAULT NULL, `transactioncode` varchar(50) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=9623 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `debitcredit` -- LOCK TABLES `debitcredit` WRITE; /*!40000 ALTER TABLE `debitcredit` DISABLE KEYS */; INSERT INTO `debitcredit` VALUES (1,'1000','31675598621','2023-02-05 15:03:43',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2,'4000','31675598621','2023-02-05 15:03:43',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(3,'1000','41675598810','2023-02-05 15:07:40',1320.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4,'4000','41675598810','2023-02-05 15:07:40',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(5,'4000','41675598810','2023-02-05 15:06:50',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6,'4000','41675598810','2023-02-05 15:07:06',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7,'4000','41675598810','2023-02-05 15:07:09',NULL,400.00,'','4','1','Good sold','1','','sales','37','','No',NULL,NULL,''),(8,'4000','41675598810','2023-02-05 15:07:19',NULL,10.00,'','4','1','Good sold','1','','sales','49','','No',NULL,NULL,''),(9,'4000','41675598810','2023-02-05 15:07:34',NULL,10.00,'','4','1','Good sold','1','','sales','49','','No',NULL,NULL,''),(10,'1000','41675599135','2023-02-05 15:12:16',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(11,'4000','41675599135','2023-02-05 15:12:16',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(12,'1000','41675599327','2023-02-05 15:16:07',1120.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(13,'4000','41675599327','2023-02-05 15:16:07',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(14,'4000','41675599327','2023-02-05 15:15:27',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(15,'4000','41675599327','2023-02-05 15:15:32',NULL,400.00,'','4','1','Good sold','1','','sales','37','','No',NULL,NULL,''),(16,'4000','41675599327','2023-02-05 15:15:43',NULL,10.00,'','4','1','Good sold','1','','sales','49','','No',NULL,NULL,''),(17,'4000','41675599327','2023-02-05 15:15:59',NULL,10.00,'','4','1','Good sold','1','','sales','49','','No',NULL,NULL,''),(18,'1000','41675600059','2023-02-05 15:27:46',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(19,'4000','41675600059','2023-02-05 15:27:46',NULL,200.00,'','4','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(20,'4000','41675600059','2023-02-05 15:27:39',NULL,200.00,'','4','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(21,'1000','41675600259','2023-02-05 15:31:01',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(22,'4000','41675600259','2023-02-05 15:31:01',NULL,200.00,'','4','1','Good sold','1','','sales','9','','No',NULL,NULL,''),(23,'4000','41675598810','2023-02-05 15:41:59',200.00,NULL,'','1','1','Returned products','1','','return','','','No',NULL,NULL,''),(24,'1000','41675598810','2023-02-05 15:41:59',NULL,200.00,'','1','1','Returned products','1','','return','','','No',NULL,NULL,''),(25,'5500','41675598810','2023-02-05 15:41:59',NULL,0.00,'','1','1','Cost of goods returned','1','','sales','3','','No',NULL,NULL,''),(26,'1110','41675598810','2023-02-05 15:41:59',0.00,NULL,'','1','1','Inventory retuned ','1','','sales','','','No',NULL,NULL,''),(27,'4000','41675598810','2023-02-05 15:42:02',350.00,NULL,'','1','1','Returned products','1','','return','','','No',NULL,NULL,''),(28,'1000','41675598810','2023-02-05 15:42:02',NULL,350.00,'','1','1','Returned products','1','','return','','','No',NULL,NULL,''),(29,'5500','41675598810','2023-02-05 15:42:02',NULL,0.00,'','1','1','Cost of goods returned','1','','sales','38','','No',NULL,NULL,''),(30,'1110','41675598810','2023-02-05 15:42:02',0.00,NULL,'','1','1','Inventory retuned ','1','','sales','','','No',NULL,NULL,''),(31,'4000','41675598810','2023-02-05 15:42:11',350.00,NULL,'','1','1','Returned products','1','','return','','','No',NULL,NULL,''),(32,'1000','41675598810','2023-02-05 15:42:11',NULL,350.00,'','1','1','Returned products','1','','return','','','No',NULL,NULL,''),(33,'5500','41675598810','2023-02-05 15:42:11',NULL,0.00,'','1','1','Cost of goods returned','1','','sales','38','','No',NULL,NULL,''),(34,'1110','41675598810','2023-02-05 15:42:11',0.00,NULL,'','1','1','Inventory retuned ','1','','sales','','','No',NULL,NULL,''),(35,'4000','41675598810','2023-02-05 15:42:13',400.00,NULL,'','1','1','Returned products','1','','return','','','No',NULL,NULL,''),(36,'1000','41675598810','2023-02-05 15:42:13',NULL,400.00,'','1','1','Returned products','1','','return','','','No',NULL,NULL,''),(37,'5500','41675598810','2023-02-05 15:42:13',NULL,0.00,'','1','1','Cost of goods returned','1','','sales','37','','No',NULL,NULL,''),(38,'1110','41675598810','2023-02-05 15:42:13',0.00,NULL,'','1','1','Inventory retuned ','1','','sales','','','No',NULL,NULL,''),(39,'4000','41675598810','2023-02-05 15:42:15',10.00,NULL,'','1','1','Returned products','1','','return','','','No',NULL,NULL,''),(40,'1000','41675598810','2023-02-05 15:42:15',NULL,10.00,'','1','1','Returned products','1','','return','','','No',NULL,NULL,''),(41,'5500','41675598810','2023-02-05 15:42:15',NULL,0.00,'','1','1','Cost of goods returned','1','','sales','49','','No',NULL,NULL,''),(42,'1110','41675598810','2023-02-05 15:42:15',0.00,NULL,'','1','1','Inventory retuned ','1','','sales','','','No',NULL,NULL,''),(43,'4000','41675598810','2023-02-05 15:42:17',10.00,NULL,'','1','1','Returned products','1','','return','','','No',NULL,NULL,''),(44,'1000','41675598810','2023-02-05 15:42:17',NULL,10.00,'','1','1','Returned products','1','','return','','','No',NULL,NULL,''),(45,'5500','41675598810','2023-02-05 15:42:17',NULL,0.00,'','1','1','Cost of goods returned','1','','sales','49','','No',NULL,NULL,''),(46,'1110','41675598810','2023-02-05 15:42:17',0.00,NULL,'','1','1','Inventory retuned ','1','','sales','','','No',NULL,NULL,''),(47,'1000','41675602242','2023-02-05 16:04:03',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(48,'4000','41675602242','2023-02-05 16:04:03',NULL,300.00,'','4','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(49,'1000','31675603108','2023-02-05 16:18:30',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(50,'4000','31675603108','2023-02-05 16:18:30',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(51,'1000','41675606835','2023-02-05 17:20:45',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(52,'4000','41675606835','2023-02-05 17:20:45',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(53,'1000','31675608878','2023-02-05 17:54:40',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(54,'4000','31675608878','2023-02-05 17:54:40',NULL,200.00,'','3','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(55,'1000','31675610944','2023-02-05 18:29:40',1250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(56,'4000','31675610944','2023-02-05 18:29:40',NULL,250.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(57,'4000','31675610944','2023-02-05 18:29:04',NULL,250.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(58,'4000','31675610944','2023-02-05 18:29:26',NULL,250.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(59,'4000','31675610944','2023-02-05 18:29:31',NULL,250.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(60,'4000','31675610944','2023-02-05 18:29:35',NULL,250.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(61,'1000','31675664235','2023-02-06 09:18:08',400.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(62,'4000','31675664235','2023-02-06 09:18:08',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(63,'4000','31675664235','2023-02-06 09:17:15',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(64,'1000','31675667154','2023-02-06 10:05:56',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(65,'4000','31675667154','2023-02-06 10:05:56',NULL,250.00,'','3','1','Good sold','1','','sales','6','','No',NULL,NULL,''),(66,'1000','31675669959','2023-02-06 10:52:40',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(67,'4000','31675669959','2023-02-06 10:52:40',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(68,'1000','31675671049','2023-02-06 11:11:02',550.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(71,'1000','31675671049','2023-02-06 11:11:02',750.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(72,'4000','31675671049','2023-02-06 11:11:02',NULL,300.00,'','3','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(73,'4000','31675671049','2023-02-06 11:10:49',NULL,250.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(74,'4000','31675671049','2023-02-06 11:11:01',NULL,200.00,'','3','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(75,'1000','41675673571','2023-02-06 11:52:52',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(76,'4000','41675673571','2023-02-06 11:52:52',NULL,200.00,'','4','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(77,'1000','31675673761','2023-02-06 11:56:02',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(78,'4000','31675673761','2023-02-06 11:56:02',NULL,200.00,'','3','1','Good sold','1','','sales','16','','No',NULL,NULL,''),(79,'1000','41675691222','2023-02-06 16:47:03',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(80,'4000','41675691222','2023-02-06 16:47:03',NULL,200.00,'','4','1','Good sold','1','','sales','16','','No',NULL,NULL,''),(81,'1000','41675692064','2023-02-06 17:01:06',10.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(82,'4000','41675692064','2023-02-06 17:01:06',NULL,10.00,'','4','1','Good sold','1','','sales','48','','No',NULL,NULL,''),(83,'1000','41675697121','2023-02-06 18:25:23',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(84,'4000','41675697121','2023-02-06 18:25:23',NULL,250.00,'','4','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(85,'1000','41675700665','2023-02-06 19:24:42',550.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(86,'4000','41675700665','2023-02-06 19:24:42',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(87,'4000','41675700665','2023-02-06 19:24:25',NULL,200.00,'','4','1','Good sold','1','','sales','16','','No',NULL,NULL,''),(88,'1000','41675704570','2023-02-06 20:30:00',850.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(89,'4000','41675704570','2023-02-06 20:30:00',NULL,200.00,'','4','1','Good sold','1','','sales','16','','No',NULL,NULL,''),(90,'4000','41675704570','2023-02-06 20:29:30',NULL,300.00,'','4','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(91,'4000','41675704570','2023-02-06 20:29:54',NULL,350.00,'','4','1','Good sold','1','','sales','35','','No',NULL,NULL,''),(92,'1000','41675704651','2023-02-06 20:30:58',20.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(93,'4000','41675704651','2023-02-06 20:30:58',NULL,10.00,'','4','1','Good sold','1','','sales','49','','No',NULL,NULL,''),(94,'4000','41675704651','2023-02-06 20:30:51',NULL,10.00,'','4','1','Good sold','1','','sales','49','','No',NULL,NULL,''),(95,'1000','41675704833','2023-02-06 20:35:40',4200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(96,'4000','41675704833','2023-02-06 20:35:40',NULL,600.00,'','4','1','Good sold','1','','sales','40','','No',NULL,NULL,''),(97,'4000','41675704833','2023-02-06 20:33:53',NULL,600.00,'','4','1','Good sold','1','','sales','40','','No',NULL,NULL,''),(98,'4000','41675704833','2023-02-06 20:34:22',NULL,600.00,'','4','1','Good sold','1','','sales','40','','No',NULL,NULL,''),(99,'4000','41675704833','2023-02-06 20:34:35',NULL,600.00,'','4','1','Good sold','1','','sales','40','','No',NULL,NULL,''),(100,'4000','41675704833','2023-02-06 20:34:40',NULL,600.00,'','4','1','Good sold','1','','sales','40','','No',NULL,NULL,''),(101,'4000','41675704833','2023-02-06 20:34:44',NULL,600.00,'','4','1','Good sold','1','','sales','40','','No',NULL,NULL,''),(102,'4000','41675704833','2023-02-06 20:34:47',NULL,600.00,'','4','1','Good sold','1','','sales','40','','No',NULL,NULL,''),(103,'1000','41675706871','2023-02-06 21:07:52',330.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(104,'4000','41675706871','2023-02-06 21:07:52',NULL,330.00,'','4','1','Good sold','1','','sales','30','','No',NULL,NULL,''),(105,'1000','41675755822','2023-02-07 10:43:44',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(106,'4000','41675755822','2023-02-07 10:43:44',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(107,'1000','41675769812','2023-02-07 14:36:54',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(108,'4000','41675769812','2023-02-07 14:36:54',NULL,300.00,'','4','1','Good sold','1','','sales','33','','No',NULL,NULL,''),(109,'1000','41675771006','2023-02-07 14:56:48',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(110,'4000','41675771006','2023-02-07 14:56:48',NULL,200.00,'','4','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(111,'1000','41675781016','2023-02-07 17:43:37',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(112,'4000','41675781016','2023-02-07 17:43:37',NULL,200.00,'','4','1','Good sold','1','','sales','31','','No',NULL,NULL,''),(113,'1000','41675781075','2023-02-07 17:44:37',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(114,'4000','41675781075','2023-02-07 17:44:37',NULL,250.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(115,'1000','41675783474','2023-02-07 18:24:35',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(116,'4000','41675783474','2023-02-07 18:24:35',NULL,200.00,'','4','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(117,'1000','41675786314','2023-02-07 19:11:56',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(118,'4000','41675786314','2023-02-07 19:11:56',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(119,'1000','41675789018','2023-02-07 19:56:59',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(120,'4000','41675789018','2023-02-07 19:56:59',NULL,250.00,'','4','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(121,'1000','41675790727','2023-02-07 20:25:29',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(122,'4000','41675790727','2023-02-07 20:25:29',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(123,'1000','41675792060','2023-02-07 20:47:41',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(124,'4000','41675792060','2023-02-07 20:47:41',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(125,'1000','41675793003','2023-02-07 21:03:25',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(126,'4000','41675793003','2023-02-07 21:03:25',NULL,300.00,'','4','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(127,'1000','41675793064','2023-02-07 21:04:25',10.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(128,'4000','41675793064','2023-02-07 21:04:25',NULL,10.00,'','4','1','Good sold','1','','sales','49','','No',NULL,NULL,''),(129,'1000','31675843646','2023-02-08 11:07:39',210.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(130,'4000','31675843646','2023-02-08 11:07:39',NULL,200.00,'','3','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(131,'4000','31675843646','2023-02-08 11:07:26',NULL,10.00,'','3','1','Good sold','1','','sales','48','','No',NULL,NULL,''),(132,'1000','31675846334','2023-02-08 11:52:18',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(133,'4000','31675846334','2023-02-08 11:52:18',NULL,200.00,'','3','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(134,'1000','31675853706','2023-02-08 13:55:34',210.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(135,'4000','31675853706','2023-02-08 13:55:34',NULL,200.00,'','3','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(136,'4000','31675853706','2023-02-08 13:55:06',NULL,10.00,'','3','1','Good sold','1','','sales','48','','No',NULL,NULL,''),(137,'1000','31675855333','2023-02-08 14:22:16',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(138,'4000','31675855333','2023-02-08 14:22:16',NULL,150.00,'','3','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(139,'1000','31675861077','2023-02-08 15:57:59',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(140,'4000','31675861077','2023-02-08 15:57:59',NULL,200.00,'','3','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(141,'1000','31675861166','2023-02-08 15:59:29',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(142,'4000','31675861166','2023-02-08 15:59:29',NULL,150.00,'','3','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(143,'1000','31675862017','2023-02-08 16:13:39',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(144,'4000','31675862017','2023-02-08 16:13:39',NULL,150.00,'','3','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(145,'1000','31675867889','2023-02-08 17:51:30',400.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(147,'1000','31675867889','2023-02-08 17:51:30',600.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(150,'1000','31675870568','2023-02-08 18:36:09',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(151,'4000','31675870568','2023-02-08 18:36:09',NULL,200.00,'','3','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(152,'1000','31675870696','2023-02-08 18:38:21',400.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(155,'1000','31675867889','2023-02-08 17:51:30',600.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(156,'4000','31675867889','2023-02-08 17:51:30',NULL,400.00,'','3','1','Good sold','1','','sales','36','','No',NULL,NULL,''),(157,'4000','31675867889','2023-02-08 17:51:29',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(158,'1000','31675870696','2023-02-08 18:38:21',400.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(159,'4000','31675870696','2023-02-08 18:38:21',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(160,'4000','31675870696','2023-02-08 18:38:16',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(161,'1000','31675873860','2023-02-08 19:31:15',450.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(162,'4000','31675873860','2023-02-08 19:31:15',NULL,150.00,'','3','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(163,'4000','31675873860','2023-02-08 19:31:00',NULL,150.00,'','3','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(164,'4000','31675873860','2023-02-08 19:31:09',NULL,150.00,'','3','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(165,'1000','31675877524','2023-02-08 20:41:43',700.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(170,'1000','31675877524','2023-02-08 20:41:43',720.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(177,'1000','31675877524','2023-02-08 20:41:43',720.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(178,'4000','31675877524','2023-02-08 20:41:43',NULL,250.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(179,'4000','31675877524','2023-02-08 20:32:04',NULL,250.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(180,'4000','31675877524','2023-02-08 20:41:28',NULL,100.00,'','3','1','Good sold','1','','sales','26','','No',NULL,NULL,''),(181,'4000','31675877524','2023-02-08 20:41:38',NULL,100.00,'','3','1','Good sold','1','','sales','24','','No',NULL,NULL,''),(182,'4000','31675877524','2023-02-08 20:41:42',NULL,10.00,'','3','1','Good sold','1','','sales','48','','No',NULL,NULL,''),(183,'4000','31675877524','2023-02-08 20:42:48',NULL,10.00,'','3','1','Good sold','1','','sales','48','','No',NULL,NULL,''),(184,'1000','31675879405','2023-02-08 21:03:30',500.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(185,'4000','31675879405','2023-02-08 21:03:30',NULL,250.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(186,'4000','31675879405','2023-02-08 21:03:25',NULL,250.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(187,'1000','31675879621','2023-02-08 21:08:01',1400.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(188,'4000','31675879621','2023-02-08 21:08:01',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(189,'4000','31675879621','2023-02-08 21:07:01',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(190,'4000','31675879621','2023-02-08 21:07:31',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(191,'4000','31675879621','2023-02-08 21:07:32',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(192,'4000','31675879621','2023-02-08 21:07:40',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(193,'4000','31675879621','2023-02-08 21:07:43',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(194,'4000','31675879621','2023-02-08 21:07:47',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(195,'1000','31675880156','2023-02-08 21:15:57',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(196,'4000','31675880156','2023-02-08 21:15:57',NULL,250.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(197,'1000','31675929665','2023-02-09 11:01:07',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(198,'4000','31675929665','2023-02-09 11:01:07',NULL,200.00,'','3','1','Good sold','1','','sales','16','','No',NULL,NULL,''),(199,'1000','31675936802','2023-02-09 13:00:04',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(200,'4000','31675936802','2023-02-09 13:00:04',NULL,200.00,'','3','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(201,'1000','41675937752','2023-02-09 13:16:09',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(202,'4000','41675937752','2023-02-09 13:16:09',NULL,150.00,'','4','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(203,'1000','31675939248','2023-02-09 13:40:50',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(204,'4000','31675939248','2023-02-09 13:40:50',NULL,200.00,'','3','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(205,'1000','41675939678','2023-02-09 13:48:08',160.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(206,'4000','41675939678','2023-02-09 13:48:08',NULL,150.00,'','4','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(207,'4000','41675939678','2023-02-09 13:47:58',NULL,10.00,'','4','1','Good sold','1','','sales','48','','No',NULL,NULL,''),(208,'1000','41675947294','2023-02-09 15:55:20',210.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(209,'4000','41675947294','2023-02-09 15:55:20',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(210,'4000','41675947294','2023-02-09 15:54:54',NULL,10.00,'','4','1','Good sold','1','','sales','48','','No',NULL,NULL,''),(211,'1000','41675956759','2023-02-09 18:32:40',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(212,'4000','41675956759','2023-02-09 18:32:40',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(213,'1000','41675957606','2023-02-09 18:46:47',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(214,'4000','41675957606','2023-02-09 18:46:47',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(215,'1000','41675963228','2023-02-09 20:20:29',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(216,'4000','41675963228','2023-02-09 20:20:29',NULL,250.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(217,'1000','41675965332','2023-02-09 20:55:33',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(218,'4000','41675965332','2023-02-09 20:55:33',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(219,'1000','41675967146','2023-02-09 21:25:54',210.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(220,'4000','41675967146','2023-02-09 21:25:54',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(221,'4000','41675967146','2023-02-09 21:25:46',NULL,10.00,'','4','1','Good sold','1','','sales','48','','No',NULL,NULL,''),(222,'1000','31676019342','2023-02-10 11:55:48',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(223,'4000','31676019342','2023-02-10 11:55:48',NULL,150.00,'','3','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(224,'4000','31676019342','2023-02-10 11:55:42',NULL,150.00,'','3','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(225,'1000','41676020522','2023-02-10 12:15:24',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(226,'4000','41676020522','2023-02-10 12:15:24',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(227,'1000','31676021372','2023-02-10 12:29:47',210.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(228,'4000','31676021372','2023-02-10 12:29:47',NULL,200.00,'','3','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(229,'4000','31676021372','2023-02-10 12:29:32',NULL,10.00,'','3','1','Good sold','1','','sales','48','','No',NULL,NULL,''),(230,'1000','41676028515','2023-02-10 14:28:36',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(231,'4000','41676028515','2023-02-10 14:28:36',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(232,'1000','41676037046','2023-02-10 16:50:48',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(233,'4000','41676037046','2023-02-10 16:50:48',NULL,300.00,'','4','1','Good sold','1','','sales','33','','No',NULL,NULL,''),(234,'1000','31676046814','2023-02-10 19:33:35',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(235,'4000','31676046814','2023-02-10 19:33:35',NULL,200.00,'','3','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(236,'1000','41676052508','2023-02-10 21:08:29',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(237,'4000','41676052508','2023-02-10 21:08:29',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(238,'1000','31676109062','2023-02-11 12:51:18',210.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(239,'4000','31676109062','2023-02-11 12:51:18',NULL,200.00,'','3','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(240,'4000','31676109062','2023-02-11 12:51:02',NULL,10.00,'','3','1','Good sold','1','','sales','48','','No',NULL,NULL,''),(241,'1000','41676113080','2023-02-11 13:58:02',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(242,'4000','41676113080','2023-02-11 13:58:02',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(243,'1000','31676120084','2023-02-11 15:54:46',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(245,'1000','31676125911','2023-02-11 17:31:53',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(246,'4000','31676125911','2023-02-11 17:31:53',NULL,250.00,'','3','1','Good sold','1','','sales','6','','No',NULL,NULL,''),(247,'1000','31676120084','2023-02-11 15:54:46',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(248,'4000','31676120084','2023-02-11 15:54:46',NULL,150.00,'','3','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(249,'1000','41676132026','2023-02-11 19:13:57',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(250,'4000','41676132026','2023-02-11 19:13:57',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(251,'4000','41676132026','2023-02-11 19:13:46',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(252,'1000','41676137335','2023-02-11 20:42:20',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(253,'4000','41676137335','2023-02-11 20:42:20',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(254,'4000','41676137335','2023-02-11 20:42:15',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(255,'1000','41676137724','2023-02-11 20:48:46',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(256,'4000','41676137724','2023-02-11 20:48:46',NULL,250.00,'','4','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(257,'1000','31676138174','2023-02-11 20:56:58',600.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(258,'4000','31676138174','2023-02-11 20:56:58',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(259,'4000','31676138174','2023-02-11 20:56:14',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(260,'4000','31676138174','2023-02-11 20:56:45',NULL,200.00,'','3','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(261,'1000','31676141268','2023-02-11 21:47:49',600.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(262,'4000','31676141268','2023-02-11 21:47:49',NULL,600.00,'','3','1','Good sold','1','','sales','40','','No',NULL,NULL,''),(263,'1000','31676141295','2023-02-11 21:48:16',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(264,'4000','31676141295','2023-02-11 21:48:16',NULL,200.00,'','3','1','Good sold','1','','sales','19','','No',NULL,NULL,''),(265,'1000','41676141860','2023-02-11 22:01:09',1550.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(266,'4000','41676141860','2023-02-11 22:01:09',NULL,250.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(267,'4000','41676141860','2023-02-11 21:57:40',NULL,250.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(268,'4000','41676141860','2023-02-11 21:58:19',NULL,200.00,'','4','1','Good sold','1','','sales','9','','No',NULL,NULL,''),(269,'4000','41676141860','2023-02-11 21:58:37',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(270,'4000','41676141860','2023-02-11 21:59:15',NULL,250.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(271,'4000','41676141860','2023-02-11 22:01:04',NULL,250.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(272,'1000','41676142332','2023-02-11 22:05:41',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(273,'4000','41676142332','2023-02-11 22:05:41',NULL,200.00,'','4','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(274,'4000','41676142332','2023-02-11 22:05:32',NULL,200.00,'','4','1','Good sold','1','','sales','16','','No',NULL,NULL,''),(275,'1000','41676142674','2023-02-11 22:11:23',20.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(276,'4000','41676142674','2023-02-11 22:11:23',NULL,10.00,'','4','1','Good sold','1','','sales','48','','No',NULL,NULL,''),(277,'4000','41676142674','2023-02-11 22:11:14',NULL,10.00,'','4','1','Good sold','1','','sales','48','','No',NULL,NULL,''),(278,'1000','31676192256','2023-02-12 11:57:53',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(279,'4000','31676192256','2023-02-12 11:57:53',NULL,150.00,'','3','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(280,'4000','31676192256','2023-02-12 11:57:36',NULL,100.00,'','3','1','Good sold','1','','sales','26','','No',NULL,NULL,''),(281,'1000','31676197447','2023-02-12 13:24:08',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(282,'4000','31676197447','2023-02-12 13:24:08',NULL,250.00,'','3','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(283,'1000','31676206017','2023-02-12 15:46:59',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(285,'1000','31676206017','2023-02-12 15:46:59',600.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(286,'4000','31676206017','2023-02-12 15:46:59',NULL,300.00,'','3','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(287,'4000','31676206017','2023-02-12 15:46:57',NULL,300.00,'','3','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(288,'1000','31676211211','2023-02-12 17:13:54',1100.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(289,'4000','31676211211','2023-02-12 17:13:54',NULL,400.00,'','3','1','Good sold','1','','sales','36','','No',NULL,NULL,''),(290,'4000','31676211211','2023-02-12 17:13:31',NULL,400.00,'','3','1','Good sold','1','','sales','37','','No',NULL,NULL,''),(291,'4000','31676211211','2023-02-12 17:13:35',NULL,300.00,'','3','1','Good sold','1','','sales','32','','No',NULL,NULL,''),(292,'1000','31676213538','2023-02-12 17:52:20',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(293,'4000','31676213538','2023-02-12 17:52:20',NULL,300.00,'','3','1','Good sold','1','','sales','32','','No',NULL,NULL,''),(294,'1000','31676213558','2023-02-12 17:52:39',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(295,'4000','31676213558','2023-02-12 17:52:39',NULL,300.00,'','3','1','Good sold','1','','sales','32','','No',NULL,NULL,''),(296,'1000','31676214806','2023-02-12 18:13:30',700.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(297,'4000','31676214806','2023-02-12 18:13:30',NULL,350.00,'','3','1','Good sold','1','','sales','35','','No',NULL,NULL,''),(298,'4000','31676214806','2023-02-12 18:13:26',NULL,350.00,'','3','1','Good sold','1','','sales','35','','No',NULL,NULL,''),(299,'1000','31676227981','2023-02-12 21:53:04',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(300,'4000','31676227981','2023-02-12 21:53:04',NULL,250.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(301,'1000','31676228017','2023-02-12 21:53:39',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(302,'4000','31676228017','2023-02-12 21:53:39',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(303,'1000','31676271316','2023-02-13 09:55:17',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(304,'4000','31676271316','2023-02-13 09:55:17',NULL,200.00,'','3','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(305,'1000','41676276784','2023-02-13 11:26:26',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(306,'4000','41676276784','2023-02-13 11:26:26',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(307,'1000','41676294770','2023-02-13 16:26:11',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(308,'4000','41676294770','2023-02-13 16:26:11',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(309,'1000','41676302183','2023-02-13 18:29:44',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(310,'4000','41676302183','2023-02-13 18:29:44',NULL,400.00,'','4','1','Good sold','1','','sales','36','','No',NULL,NULL,''),(311,'1000','31676309617','2023-02-13 20:33:38',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(312,'4000','31676309617','2023-02-13 20:33:38',NULL,300.00,'','3','1','Good sold','1','','sales','33','','No',NULL,NULL,''),(313,'1000','31676312054','2023-02-13 21:14:15',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(314,'4000','31676312054','2023-02-13 21:14:15',NULL,250.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(315,'1000','31676312261','2023-02-13 21:17:43',10.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(316,'4000','31676312261','2023-02-13 21:17:43',NULL,10.00,'','3','1','Good sold','1','','sales','48','','No',NULL,NULL,''),(317,'1000','41676357819','2023-02-14 09:57:09',340.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(318,'4000','41676357819','2023-02-14 09:57:09',NULL,330.00,'','4','1','Good sold','1','','sales','30','','No',NULL,NULL,''),(319,'4000','41676357819','2023-02-14 09:56:59',NULL,10.00,'','4','1','Good sold','1','','sales','48','','No',NULL,NULL,''),(320,'1000','41676359392','2023-02-14 10:23:21',310.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(321,'4000','41676359392','2023-02-14 10:23:21',NULL,300.00,'','4','1','Good sold','1','','sales','29','','No',NULL,NULL,''),(322,'4000','41676359392','2023-02-14 10:23:12',NULL,10.00,'','4','1','Good sold','1','','sales','49','','No',NULL,NULL,''),(323,'1000','41676362493','2023-02-14 11:15:02',600.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(324,'4000','41676362493','2023-02-14 11:15:02',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(325,'4000','41676362493','2023-02-14 11:14:53',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(326,'4000','41676362493','2023-02-14 11:14:56',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(327,'1000','41676362516','2023-02-14 11:15:17',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(328,'4000','41676362516','2023-02-14 11:15:17',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(329,'1000','41676363951','2023-02-14 11:39:12',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(330,'4000','41676363951','2023-02-14 11:39:12',NULL,250.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(331,'1000','41676375086','2023-02-14 14:44:48',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(332,'4000','41676375086','2023-02-14 14:44:48',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(333,'1000','41676390732','2023-02-14 19:05:34',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(334,'4000','41676390732','2023-02-14 19:05:34',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(335,'1000','41676390831','2023-02-14 19:07:33',750.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(336,'4000','41676390831','2023-02-14 19:07:33',NULL,200.00,'','4','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(337,'4000','41676390831','2023-02-14 19:07:11',NULL,150.00,'','4','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(338,'4000','41676390831','2023-02-14 19:07:19',NULL,400.00,'','4','1','Good sold','1','','sales','37','','No',NULL,NULL,''),(339,'1000','41676394095','2023-02-14 20:01:36',330.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(340,'4000','41676394095','2023-02-14 20:01:36',NULL,330.00,'','4','1','Good sold','1','','sales','30','','No',NULL,NULL,''),(341,'1000','41676395631','2023-02-14 20:27:13',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(342,'4000','41676395631','2023-02-14 20:27:13',NULL,250.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(343,'1000','41676395651','2023-02-14 20:27:33',10.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(344,'4000','41676395651','2023-02-14 20:27:33',NULL,10.00,'','4','1','Good sold','1','','sales','48','','No',NULL,NULL,''),(345,'1000','31676468970','2023-02-15 16:49:31',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(346,'4000','31676468970','2023-02-15 16:49:31',NULL,200.00,'','3','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(347,'1000','31676478387','2023-02-15 19:26:28',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(348,'4000','31676478387','2023-02-15 19:26:28',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(349,'1000','31676479230','2023-02-15 19:40:44',450.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(350,'4000','31676479230','2023-02-15 19:40:44',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(351,'4000','31676479230','2023-02-15 19:40:30',NULL,250.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(352,'1000','31676486854','2023-02-15 21:47:35',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(353,'4000','31676486854','2023-02-15 21:47:35',NULL,200.00,'','3','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(354,'1000','41676546272','2023-02-16 14:17:54',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(355,'4000','41676546272','2023-02-16 14:17:54',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(356,'1000','31676555292','2023-02-16 16:48:13',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(357,'4000','31676555292','2023-02-16 16:48:13',NULL,200.00,'','3','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(358,'1000','31676558880','2023-02-16 17:48:02',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(359,'4000','31676558880','2023-02-16 17:48:02',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(360,'1000','41676558983','2023-02-16 17:49:47',600.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(361,'4000','41676558983','2023-02-16 17:49:47',NULL,300.00,'','4','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(362,'4000','41676558983','2023-02-16 17:49:43',NULL,300.00,'','4','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(363,'1000','41676560684','2023-02-16 18:18:06',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(364,'4000','41676560684','2023-02-16 18:18:06',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(365,'1000','31676562305','2023-02-16 18:45:09',400.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(366,'4000','31676562305','2023-02-16 18:45:09',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(367,'4000','31676562305','2023-02-16 18:45:05',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(368,'1000','41676562422','2023-02-16 18:47:03',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(369,'4000','41676562422','2023-02-16 18:47:03',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(370,'1000','31676578581','2023-02-16 23:16:30',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(371,'4000','31676578581','2023-02-16 23:16:30',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(372,'1000','41676621516','2023-02-17 11:12:13',800.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(373,'4000','41676621516','2023-02-17 11:12:13',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(374,'4000','41676621516','2023-02-17 11:11:56',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(375,'4000','41676621516','2023-02-17 11:12:04',NULL,400.00,'','4','1','Good sold','1','','sales','37','','No',NULL,NULL,''),(376,'1000','41676631511','2023-02-17 13:58:32',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(377,'4000','41676631511','2023-02-17 13:58:32',NULL,300.00,'','4','1','Good sold','1','','sales','32','','No',NULL,NULL,''),(378,'1000','41676632871','2023-02-17 14:21:12',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(379,'4000','41676632871','2023-02-17 14:21:12',NULL,200.00,'','4','1','Good sold','1','','sales','9','','No',NULL,NULL,''),(380,'1000','31676646814','2023-02-17 18:13:45',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(382,'1000','31676646814','2023-02-17 18:13:45',310.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(383,'4000','31676646814','2023-02-17 18:13:45',NULL,300.00,'','3','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(384,'4000','31676646814','2023-02-17 18:13:34',NULL,10.00,'','3','1','Good sold','1','','sales','49','','No',NULL,NULL,''),(385,'1000','41676650708','2023-02-17 19:18:29',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(386,'4000','41676650708','2023-02-17 19:18:29',NULL,300.00,'','4','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(387,'1000','41676653994','2023-02-17 20:13:25',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(388,'4000','41676653994','2023-02-17 20:13:25',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(389,'1000','31676659118','2023-02-17 21:38:40',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(390,'4000','31676659118','2023-02-17 21:38:40',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(391,'1000','41676709619','2023-02-18 11:41:03',1400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(392,'4000','41676709619','2023-02-18 11:41:03',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(393,'4000','41676709619','2023-02-18 11:40:19',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(394,'4000','41676709619','2023-02-18 11:40:23',NULL,400.00,'','4','1','Good sold','1','','sales','44','','No',NULL,NULL,''),(395,'4000','41676709619','2023-02-18 11:40:52',NULL,600.00,'','4','1','Good sold','1','','sales','43','','No',NULL,NULL,''),(396,'1000','31676709841','2023-02-18 11:44:15',600.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(397,'4000','31676709841','2023-02-18 11:44:15',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(398,'4000','31676709841','2023-02-18 11:44:01',NULL,400.00,'','3','1','Good sold','1','','sales','44','','No',NULL,NULL,''),(399,'1000','31676713270','2023-02-18 12:41:17',260.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(400,'4000','31676713270','2023-02-18 12:41:17',NULL,250.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(401,'4000','31676713270','2023-02-18 12:41:10',NULL,10.00,'','3','1','Good sold','1','','sales','48','','No',NULL,NULL,''),(402,'1000','41676713448','2023-02-18 12:44:09',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(403,'4000','41676713448','2023-02-18 12:44:09',NULL,300.00,'','4','1','Good sold','1','','sales','29','','No',NULL,NULL,''),(404,'1000','31676715198','2023-02-18 13:13:27',900.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(405,'4000','31676715198','2023-02-18 13:13:27',NULL,600.00,'','3','1','Good sold','1','','sales','40','','No',NULL,NULL,''),(406,'4000','31676715198','2023-02-18 13:13:18',NULL,300.00,'','3','1','Good sold','1','','sales','32','','No',NULL,NULL,''),(407,'1000','41676724607','2023-02-18 15:50:16',600.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(408,'4000','41676724607','2023-02-18 15:50:16',NULL,300.00,'','4','1','Good sold','1','','sales','29','','No',NULL,NULL,''),(409,'4000','41676724607','2023-02-18 15:50:07',NULL,300.00,'','4','1','Good sold','1','','sales','32','','No',NULL,NULL,''),(410,'1000','41676724660','2023-02-18 15:51:01',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(411,'4000','41676724660','2023-02-18 15:51:01',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(412,'1000','31676724754','2023-02-18 15:52:36',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(413,'4000','31676724754','2023-02-18 15:52:36',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(414,'1000','31676726984','2023-02-18 16:29:45',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(415,'4000','31676726984','2023-02-18 16:29:45',NULL,200.00,'','3','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(416,'1000','41676727042','2023-02-18 16:30:43',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(417,'4000','41676727042','2023-02-18 16:30:43',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(418,'1000','41676729733','2023-02-18 17:15:35',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(419,'4000','41676729733','2023-02-18 17:15:35',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(420,'1000','41676734482','2023-02-18 18:34:44',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(421,'4000','41676734482','2023-02-18 18:34:44',NULL,200.00,'','4','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(422,'1000','41676734571','2023-02-18 18:36:12',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(423,'4000','41676734571','2023-02-18 18:36:12',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(424,'1000','41676736276','2023-02-18 19:05:13',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(425,'4000','41676736276','2023-02-18 19:05:13',NULL,200.00,'','4','1','Good sold','1','','sales','9','','No',NULL,NULL,''),(426,'1000','31676738419','2023-02-18 19:40:20',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(427,'4000','31676738419','2023-02-18 19:40:20',NULL,250.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(428,'1000','31676738443','2023-02-18 19:40:45',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(429,'4000','31676738443','2023-02-18 19:40:45',NULL,200.00,'','3','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(430,'1000','31676738590','2023-02-18 19:43:12',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(431,'4000','31676738590','2023-02-18 19:43:12',NULL,200.00,'','3','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(432,'1000','31676738672','2023-02-18 19:44:34',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(433,'4000','31676738672','2023-02-18 19:44:34',NULL,150.00,'','3','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(434,'1000','31676738702','2023-02-18 19:45:03',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(435,'4000','31676738702','2023-02-18 19:45:03',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(436,'1000','31676742823','2023-02-18 20:53:52',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(437,'4000','31676742823','2023-02-18 20:53:52',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(438,'4000','31676742823','2023-02-18 20:53:43',NULL,150.00,'','3','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(439,'1000','41676743797','2023-02-18 21:09:59',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(440,'4000','41676743797','2023-02-18 21:09:59',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(441,'1000','31676744931','2023-02-18 21:28:52',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(442,'4000','31676744931','2023-02-18 21:28:52',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(443,'1000','31676745295','2023-02-18 21:34:57',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(444,'4000','31676745295','2023-02-18 21:34:57',NULL,250.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(445,'1000','41676795413','2023-02-19 11:30:27',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(446,'4000','41676795413','2023-02-19 11:30:27',NULL,200.00,'','4','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(447,'1000','41676797117','2023-02-19 11:58:42',500.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(448,'4000','41676797117','2023-02-19 11:58:42',NULL,250.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(449,'4000','41676797117','2023-02-19 11:58:37',NULL,250.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(450,'1000','41676797820','2023-02-19 12:10:21',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(451,'4000','41676797820','2023-02-19 12:10:21',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(452,'1000','41676811206','2023-02-19 15:53:27',600.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(453,'4000','41676811206','2023-02-19 15:53:27',NULL,600.00,'','4','1','Good sold','1','','sales','40','','No',NULL,NULL,''),(454,'1000','31676817380','2023-02-19 17:36:21',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(455,'4000','31676817380','2023-02-19 17:36:21',NULL,150.00,'','3','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(456,'1000','31676822138','2023-02-19 18:55:43',600.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(457,'4000','31676822138','2023-02-19 18:55:43',NULL,300.00,'','3','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(458,'4000','31676822138','2023-02-19 18:55:38',NULL,300.00,'','3','1','Good sold','1','','sales','33','','No',NULL,NULL,''),(459,'1000','41676822607','2023-02-19 19:03:32',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(460,'4000','41676822607','2023-02-19 19:03:32',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(461,'4000','41676822607','2023-02-19 19:03:27',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(462,'1000','31676823605','2023-02-19 19:20:06',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(463,'4000','31676823605','2023-02-19 19:20:06',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(464,'1000','31676825459','2023-02-19 19:51:07',800.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(465,'4000','31676825459','2023-02-19 19:51:07',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(466,'4000','31676825459','2023-02-19 19:50:59',NULL,600.00,'','3','1','Good sold','1','','sales','43','','No',NULL,NULL,''),(467,'1000','31676828185','2023-02-19 20:36:44',400.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(468,'4000','31676828185','2023-02-19 20:36:44',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(469,'4000','31676828185','2023-02-19 20:36:25',NULL,200.00,'','3','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(470,'1000','31676831384','2023-02-19 21:30:04',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(471,'4000','31676831384','2023-02-19 21:30:04',NULL,150.00,'','3','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(472,'4000','31676831384','2023-02-19 21:29:44',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(473,'1000','31676831508','2023-02-19 21:31:50',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(474,'4000','31676831508','2023-02-19 21:31:50',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(475,'1000','31676833748','2023-02-19 22:09:09',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(476,'4000','31676833748','2023-02-19 22:09:09',NULL,250.00,'','3','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(477,'1000','31676889120','2023-02-20 13:32:01',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(478,'4000','31676889120','2023-02-20 13:32:01',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(479,'1000','31676889158','2023-02-20 13:32:39',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(480,'4000','31676889158','2023-02-20 13:32:39',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(481,'1000','31676898242','2023-02-20 16:04:33',900.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(482,'4000','31676898242','2023-02-20 16:04:33',NULL,300.00,'','3','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(483,'4000','31676898242','2023-02-20 16:04:02',NULL,300.00,'','3','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(484,'4000','31676898242','2023-02-20 16:04:14',NULL,300.00,'','3','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(485,'1000','31676900670','2023-02-20 16:44:31',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(486,'4000','31676900670','2023-02-20 16:44:31',NULL,250.00,'','3','1','Good sold','1','','sales','6','','No',NULL,NULL,''),(487,'1000','31676901940','2023-02-20 17:05:47',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(488,'4000','31676901940','2023-02-20 17:05:47',NULL,150.00,'','3','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(489,'1000','41676909204','2023-02-20 19:06:45',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(490,'4000','41676909204','2023-02-20 19:06:45',NULL,280.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(491,'1000','41676909221','2023-02-20 19:07:03',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(492,'4000','41676909221','2023-02-20 19:07:03',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(493,'1000','41676909236','2023-02-20 19:07:17',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(494,'4000','41676909236','2023-02-20 19:07:17',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(495,'1000','41676910402','2023-02-20 19:26:44',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(496,'4000','41676910402','2023-02-20 19:26:44',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(497,'1000','41676910417','2023-02-20 19:26:58',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(498,'4000','41676910417','2023-02-20 19:26:58',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(499,'1000','41676910454','2023-02-20 19:27:35',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(500,'4000','41676910454','2023-02-20 19:27:35',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(501,'1000','41676913043','2023-02-20 20:10:45',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(502,'4000','41676913043','2023-02-20 20:10:45',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(503,'1000','41676916911','2023-02-20 21:15:24',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(504,'4000','41676916911','2023-02-20 21:15:24',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(505,'1000','41676916934','2023-02-20 21:15:35',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(506,'4000','41676916934','2023-02-20 21:15:35',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(507,'1000','41676916949','2023-02-20 21:15:50',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(508,'4000','41676916949','2023-02-20 21:15:50',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(509,'1000','41676916975','2023-02-20 21:16:16',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(510,'4000','41676916975','2023-02-20 21:16:16',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(511,'1000','41676917189','2023-02-20 21:19:51',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(512,'4000','41676917189','2023-02-20 21:19:51',NULL,200.00,'','4','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(513,'1000','41676920327','2023-02-20 22:12:08',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(514,'4000','41676920327','2023-02-20 22:12:08',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(515,'1000','41676962260','2023-02-21 09:51:01',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(516,'4000','41676962260','2023-02-21 09:51:01',NULL,250.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(517,'1000','41676971001','2023-02-21 12:16:50',210.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(518,'4000','41676971001','2023-02-21 12:16:50',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(519,'4000','41676971001','2023-02-21 12:16:41',NULL,10.00,'','4','1','Good sold','1','','sales','48','','No',NULL,NULL,''),(520,'1000','41676974403','2023-02-21 13:13:24',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(521,'4000','41676974403','2023-02-21 13:13:24',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(522,'1000','41676976028','2023-02-21 13:40:36',260.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(523,'4000','41676976028','2023-02-21 13:40:36',NULL,250.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(524,'4000','41676976028','2023-02-21 13:40:28',NULL,10.00,'','4','1','Good sold','1','','sales','48','','No',NULL,NULL,''),(525,'1000','41676982053','2023-02-21 15:20:55',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(526,'4000','41676982053','2023-02-21 15:20:55',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(527,'1000','41676983814','2023-02-21 15:50:15',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(528,'4000','41676983814','2023-02-21 15:50:15',NULL,250.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(529,'1000','41676986623','2023-02-21 16:37:05',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(530,'4000','41676986623','2023-02-21 16:37:05',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(531,'1000','41676990252','2023-02-21 17:37:33',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(532,'4000','41676990252','2023-02-21 17:37:33',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(533,'1000','41676990265','2023-02-21 17:37:46',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(534,'4000','41676990265','2023-02-21 17:37:46',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(535,'1000','41676990291','2023-02-21 17:38:12',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(536,'4000','41676990291','2023-02-21 17:38:12',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(537,'1000','41676990309','2023-02-21 17:38:30',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(538,'4000','41676990309','2023-02-21 17:38:30',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(539,'1000','41676993708','2023-02-21 18:35:09',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(540,'4000','41676993708','2023-02-21 18:35:09',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(541,'1000','41676993746','2023-02-21 18:35:48',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(542,'4000','41676993746','2023-02-21 18:35:48',NULL,200.00,'','4','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(543,'1000','41676995745','2023-02-21 19:09:06',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(544,'4000','41676995745','2023-02-21 19:09:06',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(545,'1000','41676995761','2023-02-21 19:09:22',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(546,'4000','41676995761','2023-02-21 19:09:22',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(547,'1000','41676997708','2023-02-21 19:41:49',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(548,'4000','41676997708','2023-02-21 19:41:49',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(549,'1000','41677001131','2023-02-21 20:38:53',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(550,'4000','41677001131','2023-02-21 20:38:53',NULL,250.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(551,'1000','41677003690','2023-02-21 21:21:31',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(552,'4000','41677003690','2023-02-21 21:21:31',NULL,250.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(553,'1000','41677005722','2023-02-21 21:55:23',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(554,'4000','41677005722','2023-02-21 21:55:23',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(555,'1000','41677049316','2023-02-22 10:01:58',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(556,'4000','41677049316','2023-02-22 10:01:58',NULL,250.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(557,'1000','41677053414','2023-02-22 11:10:16',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(558,'4000','41677053414','2023-02-22 11:10:16',NULL,200.00,'','4','1','Good sold','1','','sales','18','','No',NULL,NULL,''),(559,'1000','41677053452','2023-02-22 11:10:54',10.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(560,'4000','41677053452','2023-02-22 11:10:54',NULL,10.00,'','4','1','Good sold','1','','sales','48','','No',NULL,NULL,''),(561,'1000','41677053695','2023-02-22 11:14:56',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(562,'4000','41677053695','2023-02-22 11:14:56',NULL,250.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(563,'1000','41677057039','2023-02-22 12:10:41',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(564,'4000','41677057039','2023-02-22 12:10:41',NULL,200.00,'','4','1','Good sold','1','','sales','18','','No',NULL,NULL,''),(565,'1000','41677061962','2023-02-22 13:32:43',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(566,'4000','41677061962','2023-02-22 13:32:43',NULL,250.00,'','4','1','Good sold','1','','sales','6','','No',NULL,NULL,''),(567,'1000','31677082634','2023-02-22 19:17:18',700.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(568,'4000','31677082634','2023-02-22 19:17:18',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(569,'4000','31677082634','2023-02-22 19:17:14',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(570,'1000','31677093575','2023-02-22 22:19:36',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(571,'4000','31677093575','2023-02-22 22:19:36',NULL,250.00,'','3','1','Good sold','1','','sales','6','','No',NULL,NULL,''),(572,'1000','31677093614','2023-02-22 22:20:16',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(573,'4000','31677093614','2023-02-22 22:20:16',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(574,'1000','31677093674','2023-02-22 22:21:22',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(575,'4000','31677093674','2023-02-22 22:21:22',NULL,200.00,'','3','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(576,'4000','31677093674','2023-02-22 22:21:14',NULL,150.00,'','3','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(577,'1000','31677170159','2023-02-23 19:36:01',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(579,'1000','31677170159','2023-02-23 19:36:01',400.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(580,'4000','31677170159','2023-02-23 19:36:01',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(581,'4000','31677170159','2023-02-23 19:35:59',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(582,'1000','31677220486','2023-02-24 09:34:47',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(583,'4000','31677220486','2023-02-24 09:34:47',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(584,'1000','31677220503','2023-02-24 09:35:05',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(585,'4000','31677220503','2023-02-24 09:35:05',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(586,'1000','31677220614','2023-02-24 09:36:55',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(587,'4000','31677220614','2023-02-24 09:36:55',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(588,'1000','31677231353','2023-02-24 12:36:06',260.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(589,'4000','31677231353','2023-02-24 12:36:06',NULL,250.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(590,'4000','31677231353','2023-02-24 12:35:53',NULL,10.00,'','3','1','Good sold','1','','sales','48','','No',NULL,NULL,''),(591,'1000','31677241365','2023-02-24 15:22:47',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(592,'4000','31677241365','2023-02-24 15:22:47',NULL,250.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(593,'1000','41677241610','2023-02-24 15:26:51',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(594,'4000','41677241610','2023-02-24 15:26:51',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(595,'1000','41677243505','2023-02-24 15:58:27',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(596,'4000','41677243505','2023-02-24 15:58:27',NULL,300.00,'','4','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(597,'1000','41677251059','2023-02-24 18:04:21',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(598,'4000','41677251059','2023-02-24 18:04:21',NULL,250.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(599,'1000','41677305605','2023-02-25 09:13:26',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(600,'4000','41677305605','2023-02-25 09:13:26',NULL,250.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(601,'1000','41677308452','2023-02-25 10:00:53',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(602,'4000','41677308452','2023-02-25 10:00:53',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(603,'1000','41677314727','2023-02-25 11:45:28',600.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(604,'4000','41677314727','2023-02-25 11:45:28',NULL,600.00,'','4','1','Good sold','1','','sales','40','','No',NULL,NULL,''),(605,'1000','41677324495','2023-02-25 14:28:16',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(606,'4000','41677324495','2023-02-25 14:28:16',NULL,200.00,'','4','1','Good sold','1','','sales','18','','No',NULL,NULL,''),(607,'1000','31677325340','2023-02-25 14:42:22',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(608,'4000','31677325340','2023-02-25 14:42:22',NULL,300.00,'','3','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(609,'1000','31677325375','2023-02-25 14:42:56',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(610,'4000','31677325375','2023-02-25 14:42:56',NULL,200.00,'','3','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(611,'1000','31677340436','2023-02-25 18:54:03',1050.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(612,'4000','31677340436','2023-02-25 18:54:03',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(613,'4000','31677340436','2023-02-25 18:53:56',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(614,'4000','31677340436','2023-02-25 18:53:59',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(615,'1000','31677340578','2023-02-25 18:56:19',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(616,'4000','31677340578','2023-02-25 18:56:19',NULL,200.00,'','3','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(617,'1000','41677341613','2023-02-25 19:13:42',550.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(618,'4000','41677341613','2023-02-25 19:13:42',NULL,250.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(619,'4000','41677341613','2023-02-25 19:13:33',NULL,300.00,'','4','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(620,'1000','31677341761','2023-02-25 19:16:03',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(621,'4000','31677341761','2023-02-25 19:16:03',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(622,'1000','31677343803','2023-02-25 19:50:05',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(624,'1000','31677343803','2023-02-25 19:50:05',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(625,'4000','31677343803','2023-02-25 19:50:05',NULL,250.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(626,'4000','31677343803','2023-02-25 19:50:03',NULL,100.00,'','3','1','Good sold','1','','sales','26','','No',NULL,NULL,''),(627,'1000','31677346081','2023-02-25 20:28:02',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(628,'4000','31677346081','2023-02-25 20:28:02',NULL,250.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(629,'1000','31677349310','2023-02-25 21:22:02',450.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(630,'4000','31677349310','2023-02-25 21:22:02',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(631,'4000','31677349310','2023-02-25 21:21:50',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(632,'1000','31677349429','2023-02-25 21:23:54',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(633,'4000','31677349429','2023-02-25 21:23:54',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(634,'4000','31677349429','2023-02-25 21:23:49',NULL,150.00,'','3','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(635,'1000','31677395915','2023-02-26 10:18:37',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(636,'4000','31677395915','2023-02-26 10:18:37',NULL,250.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(637,'1000','31677395942','2023-02-26 10:19:04',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(638,'4000','31677395942','2023-02-26 10:19:04',NULL,250.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(639,'1000','31677400504','2023-02-26 11:35:06',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(640,'4000','31677400504','2023-02-26 11:35:06',NULL,150.00,'','3','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(641,'1000','41677409008','2023-02-26 13:57:01',340.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(642,'4000','41677409008','2023-02-26 13:57:01',NULL,330.00,'','4','1','Good sold','1','','sales','30','','No',NULL,NULL,''),(643,'4000','41677409008','2023-02-26 13:56:48',NULL,10.00,'','4','1','Good sold','1','','sales','49','','No',NULL,NULL,''),(644,'1000','31677409177','2023-02-26 13:59:38',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(646,'1000','41677409846','2023-02-26 14:10:47',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(647,'4000','41677409846','2023-02-26 14:10:47',NULL,200.00,'','4','1','Good sold','1','','sales','18','','No',NULL,NULL,''),(648,'1000','41677412772','2023-02-26 14:59:34',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(649,'4000','41677412772','2023-02-26 14:59:34',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(650,'1000','41677414110','2023-02-26 15:21:57',600.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(651,'4000','41677414110','2023-02-26 15:21:57',NULL,300.00,'','4','1','Good sold','1','','sales','33','','No',NULL,NULL,''),(652,'4000','41677414110','2023-02-26 15:21:50',NULL,300.00,'','4','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(653,'1000','31677415160','2023-02-26 15:39:22',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(654,'4000','31677415160','2023-02-26 15:39:22',NULL,300.00,'','3','1','Good sold','1','','sales','29','','No',NULL,NULL,''),(655,'1000','31677409177','2023-02-26 13:59:38',600.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(656,'4000','31677409177','2023-02-26 13:59:38',NULL,300.00,'','3','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(657,'4000','31677409177','2023-02-26 13:59:37',NULL,300.00,'','3','1','Good sold','1','','sales','29','','No',NULL,NULL,''),(658,'1000','41677419867','2023-02-26 16:57:49',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(659,'4000','41677419867','2023-02-26 16:57:49',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(660,'1000','41677421779','2023-02-26 17:29:50',800.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(661,'4000','41677421779','2023-02-26 17:29:50',NULL,200.00,'','4','1','Good sold','1','','sales','31','','No',NULL,NULL,''),(662,'4000','41677421779','2023-02-26 17:29:39',NULL,600.00,'','4','1','Good sold','1','','sales','40','','No',NULL,NULL,''),(663,'1000','41677422937','2023-02-26 17:48:58',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(664,'4000','41677422937','2023-02-26 17:48:58',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(665,'1000','41677434759','2023-02-26 21:06:00',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(666,'4000','41677434759','2023-02-26 21:06:00',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(667,'1000','41677434782','2023-02-26 21:06:24',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(668,'4000','41677434782','2023-02-26 21:06:24',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(669,'1000','41677434920','2023-02-26 21:08:42',20.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(670,'4000','41677434920','2023-02-26 21:08:42',NULL,20.00,'','4','1','Good sold','1','','sales','48','','No',NULL,NULL,''),(671,'1000','41677435035','2023-02-26 21:10:41',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(672,'4000','41677435035','2023-02-26 21:10:41',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(673,'4000','41677435035','2023-02-26 21:10:35',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(674,'1000','41677436129','2023-02-26 21:29:10',370.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(675,'4000','41677436129','2023-02-26 21:29:10',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(676,'4000','41677436129','2023-02-26 21:28:50',NULL,20.00,'','4','1','Good sold','1','','sales','48','','No',NULL,NULL,''),(677,'1000','41677488159','2023-02-27 11:56:00',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(678,'4000','41677488159','2023-02-27 11:56:00',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(679,'1000','31677488435','2023-02-27 12:00:40',450.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(680,'4000','31677488435','2023-02-27 12:00:40',NULL,250.00,'','3','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(681,'4000','31677488435','2023-02-27 12:00:35',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(682,'1000','41677489066','2023-02-27 12:11:08',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(683,'4000','41677489066','2023-02-27 12:11:08',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(684,'1000','31677490186','2023-02-27 12:29:51',500.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(685,'4000','31677490186','2023-02-27 12:29:51',NULL,250.00,'','3','1','Good sold','1','','sales','6','','No',NULL,NULL,''),(686,'4000','31677490186','2023-02-27 12:29:46',NULL,250.00,'','3','1','Good sold','1','','sales','6','','No',NULL,NULL,''),(687,'1000','41677492694','2023-02-27 13:11:35',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(688,'4000','41677492694','2023-02-27 13:11:35',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(689,'1000','41677495208','2023-02-27 13:53:33',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(690,'4000','41677495208','2023-02-27 13:53:33',NULL,200.00,'','4','1','Good sold','1','','sales','18','','No',NULL,NULL,''),(691,'4000','41677495208','2023-02-27 13:53:28',NULL,200.00,'','4','1','Good sold','1','','sales','18','','No',NULL,NULL,''),(692,'1000','31677497791','2023-02-27 14:36:32',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(693,'4000','31677497791','2023-02-27 14:36:32',NULL,300.00,'','3','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(694,'1000','31677501740','2023-02-27 15:42:21',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(695,'4000','31677501740','2023-02-27 15:42:21',NULL,300.00,'','3','1','Good sold','1','','sales','33','','No',NULL,NULL,''),(696,'1000','31677503309','2023-02-27 16:08:38',1050.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(697,'4000','31677503309','2023-02-27 16:08:38',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(698,'4000','31677503309','2023-02-27 16:08:29',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(699,'4000','31677503309','2023-02-27 16:08:33',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(700,'1110','41677509112','2023-02-27 17:45:20',NULL,0.00,'','4','1','Inventory sold','1','','sales','34','','No',NULL,NULL,''),(701,'1110','41677509112','2023-02-27 17:45:12',NULL,10.00,'','4','1','Inventory sold','1','','sales','49','','No',NULL,NULL,''),(702,'5500','41677509112','2023-02-27 17:45:19',10.00,NULL,'','4','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(703,'1000','41677509112','2023-02-27 17:45:20',315.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(704,'4000','41677509112','2023-02-27 17:45:20',NULL,300.00,'','4','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(705,'4000','41677509112','2023-02-27 17:45:12',NULL,15.00,'','4','1','Good sold','1','','sales','49','','No',NULL,NULL,''),(706,'1000','41677510861','2023-02-27 18:14:50',750.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(707,'4000','41677510861','2023-02-27 18:14:50',NULL,200.00,'','4','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(708,'4000','41677510861','2023-02-27 18:14:21',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(709,'4000','41677510861','2023-02-27 18:14:31',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(710,'1000','41677512273','2023-02-27 18:38:00',370.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(711,'4000','41677512273','2023-02-27 18:38:00',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(712,'4000','41677512273','2023-02-27 18:37:53',NULL,20.00,'','4','1','Good sold','1','','sales','48','','No',NULL,NULL,''),(713,'1000','31677512616','2023-02-27 18:43:38',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(714,'4000','31677512616','2023-02-27 18:43:38',NULL,200.00,'','3','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(715,'1000','31677513934','2023-02-27 19:05:36',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(716,'4000','31677513934','2023-02-27 19:05:36',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(717,'1000','31677521910','2023-02-27 21:19:03',700.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(718,'4000','31677521910','2023-02-27 21:19:03',NULL,250.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(719,'4000','31677521910','2023-02-27 21:18:30',NULL,250.00,'','3','1','Good sold','1','','sales','6','','No',NULL,NULL,''),(720,'4000','31677521910','2023-02-27 21:18:40',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(721,'1000','31677522313','2023-02-27 21:25:14',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(722,'4000','31677522313','2023-02-27 21:25:14',NULL,250.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(723,'1000','31677522337','2023-02-27 21:25:38',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(724,'4000','31677522337','2023-02-27 21:25:38',NULL,250.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(725,'1000','31677522483','2023-02-27 21:32:29',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(726,'4000','31677522483','2023-02-27 21:32:29',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(727,'4000','31677522483','2023-02-27 21:28:03',NULL,100.00,'','3','1','Good sold','1','','sales','26','','No',NULL,NULL,''),(728,'1000','31677523015','2023-02-27 21:36:57',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(729,'4000','31677523015','2023-02-27 21:36:57',NULL,250.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(730,'1000','31677523140','2023-02-27 21:39:12',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(731,'4000','31677523140','2023-02-27 21:39:12',NULL,200.00,'','3','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(732,'1000','31677524154','2023-02-27 21:55:58',400.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(733,'4000','31677524154','2023-02-27 21:55:58',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(734,'4000','31677524154','2023-02-27 21:55:54',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(735,'1000','41677568090','2023-02-28 10:09:07',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(736,'4000','41677568090','2023-02-28 10:09:07',NULL,200.00,'','4','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(737,'4000','41677568090','2023-02-28 10:08:30',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(738,'1000','41677569039','2023-02-28 10:24:00',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(739,'4000','41677569039','2023-02-28 10:24:00',NULL,200.00,'','4','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(740,'1000','41677570089','2023-02-28 10:41:30',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(741,'4000','41677570089','2023-02-28 10:41:30',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(742,'1000','41677570119','2023-02-28 10:42:00',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(743,'4000','41677570119','2023-02-28 10:42:00',NULL,200.00,'','4','1','Good sold','1','','sales','16','','No',NULL,NULL,''),(744,'1000','41677577332','2023-02-28 12:42:17',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(745,'4000','41677577332','2023-02-28 12:42:17',NULL,200.00,'','4','1','Good sold','1','','sales','18','','No',NULL,NULL,''),(746,'4000','41677577332','2023-02-28 12:42:12',NULL,200.00,'','4','1','Good sold','1','','sales','18','','No',NULL,NULL,''),(747,'1000','41677578848','2023-02-28 13:07:30',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(748,'4000','41677578848','2023-02-28 13:07:30',NULL,200.00,'','4','1','Good sold','1','','sales','18','','No',NULL,NULL,''),(749,'1000','41677587161','2023-02-28 15:26:02',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(750,'4000','41677587161','2023-02-28 15:26:02',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(751,'1000','41677590031','2023-02-28 16:13:53',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(752,'4000','41677590031','2023-02-28 16:13:53',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(753,'1000','41677592941','2023-02-28 17:02:25',500.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(754,'4000','41677592941','2023-02-28 17:02:25',NULL,250.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(755,'4000','41677592941','2023-02-28 17:02:21',NULL,250.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(756,'1000','41677594001','2023-02-28 17:20:02',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(757,'4000','41677594001','2023-02-28 17:20:02',NULL,200.00,'','4','1','Good sold','1','','sales','31','','No',NULL,NULL,''),(758,'1000','41677602984','2023-02-28 19:49:46',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(759,'4000','41677602984','2023-02-28 19:49:46',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(760,'1000','41677603062','2023-02-28 19:51:03',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(761,'4000','41677603062','2023-02-28 19:51:03',NULL,250.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(762,'1000','41677603078','2023-02-28 19:51:19',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(763,'4000','41677603078','2023-02-28 19:51:19',NULL,200.00,'','4','1','Good sold','1','','sales','31','','No',NULL,NULL,''),(764,'1000','41677603105','2023-02-28 19:51:47',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(765,'4000','41677603105','2023-02-28 19:51:47',NULL,200.00,'','4','1','Good sold','1','','sales','16','','No',NULL,NULL,''),(766,'1000','41677604834','2023-02-28 20:20:35',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(767,'4000','41677604834','2023-02-28 20:20:35',NULL,300.00,'','4','1','Good sold','1','','sales','39','','No',NULL,NULL,''),(768,'1000','41677604860','2023-02-28 20:21:01',20.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(769,'4000','41677604860','2023-02-28 20:21:01',NULL,20.00,'','4','1','Good sold','1','','sales','48','','No',NULL,NULL,''),(770,'1000','41677607269','2023-02-28 21:01:10',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(771,'4000','41677607269','2023-02-28 21:01:10',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(772,'1000','41677610315','2023-02-28 21:52:03',270.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(773,'4000','41677610315','2023-02-28 21:52:03',NULL,250.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(774,'4000','41677610315','2023-02-28 21:51:55',NULL,20.00,'','4','1','Good sold','1','','sales','48','','No',NULL,NULL,''),(775,'1000','41677611105','2023-02-28 22:05:27',220.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(776,'4000','41677611105','2023-02-28 22:05:27',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(777,'4000','41677611105','2023-02-28 22:05:05',NULL,20.00,'','4','1','Good sold','1','','sales','48','','No',NULL,NULL,''),(778,'1000','41677666813','2023-03-01 13:33:34',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(779,'4000','41677666813','2023-03-01 13:33:34',NULL,250.00,'','4','1','Good sold','1','','sales','6','','No',NULL,NULL,''),(780,'1000','41677667619','2023-03-01 13:47:00',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(781,'4000','41677667619','2023-03-01 13:47:00',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(782,'1000','41677676703','2023-03-01 16:18:43',1000.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(783,'4000','41677676703','2023-03-01 16:18:43',NULL,400.00,'','4','1','Good sold','1','','sales','36','','No',NULL,NULL,''),(784,'4000','41677676703','2023-03-01 16:18:23',NULL,600.00,'','4','1','Good sold','1','','sales','43','','No',NULL,NULL,''),(785,'1000','31677678763','2023-03-01 16:52:44',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(786,'4000','31677678763','2023-03-01 16:52:44',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(787,'1000','41677679206','2023-03-01 17:00:08',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(788,'4000','41677679206','2023-03-01 17:00:08',NULL,250.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(789,'1000','31677682122','2023-03-01 17:48:43',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(790,'4000','31677682122','2023-03-01 17:48:43',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(791,'1000','41677682699','2023-03-01 17:58:21',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(792,'4000','41677682699','2023-03-01 17:58:21',NULL,200.00,'','4','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(793,'1000','31677686091','2023-03-01 18:55:02',270.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(794,'4000','31677686091','2023-03-01 18:55:02',NULL,250.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(795,'4000','31677686091','2023-03-01 18:54:51',NULL,20.00,'','3','1','Good sold','1','','sales','48','','No',NULL,NULL,''),(796,'1000','31677692559','2023-03-01 20:42:50',220.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(797,'4000','31677692559','2023-03-01 20:42:50',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(798,'4000','31677692559','2023-03-01 20:42:39',NULL,20.00,'','3','1','Good sold','1','','sales','48','','No',NULL,NULL,''),(799,'1000','31677698930','2023-03-01 22:28:52',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(800,'4000','31677698930','2023-03-01 22:28:52',NULL,250.00,'','3','1','Good sold','1','','sales','6','','No',NULL,NULL,''),(801,'1000','31677698946','2023-03-01 22:29:07',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(802,'4000','31677698946','2023-03-01 22:29:07',NULL,250.00,'','3','1','Good sold','1','','sales','6','','No',NULL,NULL,''),(803,'1000','31677743157','2023-03-02 10:46:37',220.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(804,'4000','31677743157','2023-03-02 10:46:37',NULL,200.00,'','3','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(805,'4000','31677743157','2023-03-02 10:46:06',NULL,20.00,'','3','1','Good sold','1','','sales','48','','No',NULL,NULL,''),(806,'1000','31677743245','2023-03-02 10:47:27',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(807,'4000','31677743245','2023-03-02 10:47:27',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(808,'1000','31677744583','2023-03-02 11:09:45',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(809,'4000','31677744583','2023-03-02 11:09:45',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(810,'1000','31677749736','2023-03-02 12:39:04',800.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(811,'4000','31677749736','2023-03-02 12:39:04',NULL,600.00,'','3','1','Good sold','1','','sales','43','','No',NULL,NULL,''),(812,'4000','31677749736','2023-03-02 12:35:36',NULL,200.00,'','3','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(813,'1000','31677755051','2023-03-02 14:04:13',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(814,'4000','31677755051','2023-03-02 14:04:13',NULL,250.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(815,'1000','31677756787','2023-03-02 14:33:08',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(816,'4000','31677756787','2023-03-02 14:33:08',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(817,'1000','31677758371','2023-03-02 14:59:44',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(819,'1000','31677758402','2023-03-02 15:00:04',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(821,'1000','31677758417','2023-03-02 15:00:19',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(823,'1000','31677758417','2023-03-02 15:00:19',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(824,'4000','31677758417','2023-03-02 15:00:19',NULL,200.00,'','3','1','Good sold','1','','sales','31','','No',NULL,NULL,''),(825,'4000','31677758417','2023-03-02 15:00:17',NULL,100.00,'','3','1','Good sold','1','','sales','26','','No',NULL,NULL,''),(826,'1000','31677758402','2023-03-02 15:00:04',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(827,'4000','31677758402','2023-03-02 15:00:04',NULL,200.00,'','3','1','Good sold','1','','sales','31','','No',NULL,NULL,''),(828,'4000','31677758402','2023-03-02 15:00:02',NULL,100.00,'','3','1','Good sold','1','','sales','26','','No',NULL,NULL,''),(829,'1000','31677758371','2023-03-02 14:59:44',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(830,'4000','31677758371','2023-03-02 14:59:44',NULL,200.00,'','3','1','Good sold','1','','sales','31','','No',NULL,NULL,''),(831,'4000','31677758371','2023-03-02 14:59:36',NULL,100.00,'','3','1','Good sold','1','','sales','26','','No',NULL,NULL,''),(832,'1000','31677762270','2023-03-02 16:04:38',900.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(833,'4000','31677762270','2023-03-02 16:04:38',NULL,300.00,'','3','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(834,'4000','31677762270','2023-03-02 16:04:30',NULL,300.00,'','3','1','Good sold','1','','sales','32','','No',NULL,NULL,''),(835,'4000','31677762270','2023-03-02 16:04:34',NULL,300.00,'','3','1','Good sold','1','','sales','32','','No',NULL,NULL,''),(836,'1000','31677768435','2023-03-02 17:47:36',230.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(837,'4000','31677768435','2023-03-02 17:47:36',NULL,200.00,'','3','1','Good sold','1','','sales','18','','No',NULL,NULL,''),(838,'4000','31677768435','2023-03-02 17:47:15',NULL,30.00,'','3','1','Good sold','1','','sales','58','','No',NULL,NULL,''),(839,'1000','31677768495','2023-03-02 17:48:29',1100.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(840,'4000','31677768495','2023-03-02 17:48:29',NULL,300.00,'','3','1','Good sold','1','','sales','32','','No',NULL,NULL,''),(841,'4000','31677768495','2023-03-02 17:48:15',NULL,400.00,'','3','1','Good sold','1','','sales','37','','No',NULL,NULL,''),(842,'4000','31677768495','2023-03-02 17:48:24',NULL,400.00,'','3','1','Good sold','1','','sales','37','','No',NULL,NULL,''),(843,'1000','31677771290','2023-03-02 18:34:51',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(844,'4000','31677771290','2023-03-02 18:34:51',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(845,'1000','31677771959','2023-03-02 18:46:00',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(846,'4000','31677771959','2023-03-02 18:46:00',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(847,'1000','31677782045','2023-03-02 21:34:22',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(848,'4000','31677782045','2023-03-02 21:34:22',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(849,'4000','31677782045','2023-03-02 21:34:05',NULL,150.00,'','3','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(850,'1000','31677782797','2023-03-02 21:46:47',220.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(851,'4000','31677782797','2023-03-02 21:46:47',NULL,200.00,'','3','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(852,'4000','31677782797','2023-03-02 21:46:37',NULL,20.00,'','3','1','Good sold','1','','sales','48','','No',NULL,NULL,''),(853,'1000','31677825405','2023-03-03 09:36:46',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(854,'4000','31677825405','2023-03-03 09:36:46',NULL,350.00,'','3','1','Good sold','1','','sales','54','','No',NULL,NULL,''),(855,'1000','31677831229','2023-03-03 11:13:50',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(856,'4000','31677831229','2023-03-03 11:13:50',NULL,350.00,'','3','1','Good sold','1','','sales','54','','No',NULL,NULL,''),(857,'1000','31677852672','2023-03-03 17:11:13',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(858,'4000','31677852672','2023-03-03 17:11:13',NULL,150.00,'','3','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(859,'1000','31677854065','2023-03-03 17:34:26',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(860,'4000','31677854065','2023-03-03 17:34:26',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(861,'1000','41677857537','2023-03-03 18:32:18',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(862,'4000','41677857537','2023-03-03 18:32:18',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(863,'1000','41677859113','2023-03-03 18:58:35',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(864,'4000','41677859113','2023-03-03 18:58:35',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(865,'1000','41677864180','2023-03-03 20:23:01',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(866,'4000','41677864180','2023-03-03 20:23:01',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(867,'1000','41677869065','2023-03-03 21:44:52',440.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(868,'4000','41677869065','2023-03-03 21:44:52',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(869,'4000','41677869065','2023-03-03 21:44:25',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(870,'4000','41677869065','2023-03-03 21:44:29',NULL,20.00,'','4','1','Good sold','1','','sales','48','','No',NULL,NULL,''),(871,'4000','41677869065','2023-03-03 21:44:47',NULL,20.00,'','4','1','Good sold','1','','sales','48','','No',NULL,NULL,''),(872,'1000','41677869448','2023-03-03 21:50:55',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(873,'4000','41677869448','2023-03-03 21:50:55',NULL,200.00,'','4','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(874,'4000','41677869448','2023-03-03 21:50:48',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(875,'1000','41677869467','2023-03-03 21:51:15',220.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(876,'4000','41677869467','2023-03-03 21:51:15',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(877,'4000','41677869467','2023-03-03 21:51:07',NULL,20.00,'','4','1','Good sold','1','','sales','48','','No',NULL,NULL,''),(878,'1000','41677869996','2023-03-03 21:59:57',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(879,'4000','41677869996','2023-03-03 21:59:57',NULL,200.00,'','4','1','Good sold','1','','sales','18','','No',NULL,NULL,''),(880,'1110','41677871901','2023-03-03 22:31:56',NULL,0.00,'','4','1','Inventory sold','1','','sales','34','','No',NULL,NULL,''),(881,'1110','41677871901','2023-03-03 22:31:41',NULL,0.00,'','4','1','Inventory sold','1','','sales','32','','No',NULL,NULL,''),(882,'1110','41677871901','2023-03-03 22:31:45',NULL,10.00,'','4','1','Inventory sold','1','','sales','49','','No',NULL,NULL,''),(883,'1110','41677871901','2023-03-03 22:31:51',NULL,10.00,'','4','1','Inventory sold','1','','sales','49','','No',NULL,NULL,''),(884,'5500','41677871901','2023-03-03 22:31:55',20.00,NULL,'','4','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(885,'1000','41677871901','2023-03-03 22:31:56',630.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(886,'4000','41677871901','2023-03-03 22:31:56',NULL,300.00,'','4','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(887,'4000','41677871901','2023-03-03 22:31:41',NULL,300.00,'','4','1','Good sold','1','','sales','32','','No',NULL,NULL,''),(888,'4000','41677871901','2023-03-03 22:31:45',NULL,15.00,'','4','1','Good sold','1','','sales','49','','No',NULL,NULL,''),(889,'4000','41677871901','2023-03-03 22:31:51',NULL,15.00,'','4','1','Good sold','1','','sales','49','','No',NULL,NULL,''),(890,'1000','41677872746','2023-03-03 22:45:48',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(891,'4000','41677872746','2023-03-03 22:45:48',NULL,250.00,'','4','1','Good sold','1','','sales','13','','No',NULL,NULL,''),(892,'1110','41677873284','2023-03-03 22:54:56',NULL,10.00,'','4','1','Inventory sold','1','','sales','49','','No',NULL,NULL,''),(893,'1110','41677873284','2023-03-03 22:54:44',NULL,0.00,'','4','1','Inventory sold','1','','sales','34','','No',NULL,NULL,''),(894,'5500','41677873284','2023-03-03 22:54:55',10.00,NULL,'','4','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(895,'1000','41677873284','2023-03-03 22:54:56',315.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(896,'4000','41677873284','2023-03-03 22:54:56',NULL,15.00,'','4','1','Good sold','1','','sales','49','','No',NULL,NULL,''),(897,'4000','41677873284','2023-03-03 22:54:44',NULL,300.00,'','4','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(898,'1000','41677919162','2023-03-04 11:39:23',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(899,'4000','41677919162','2023-03-04 11:39:23',NULL,280.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(900,'1000','41677919181','2023-03-04 11:39:43',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(901,'4000','41677919181','2023-03-04 11:39:43',NULL,250.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(902,'1000','31677922800','2023-03-04 12:40:01',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(903,'4000','31677922800','2023-03-04 12:40:01',NULL,300.00,'','3','1','Good sold','1','','sales','33','','No',NULL,NULL,''),(904,'1000','41677922935','2023-03-04 12:42:17',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(905,'4000','41677922935','2023-03-04 12:42:17',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(906,'1110','31677925126','2023-03-04 13:19:09',NULL,0.00,'','3','1','Inventory sold','1','','sales','33','','No',NULL,NULL,''),(907,'1110','31677925126','2023-03-04 13:18:51',NULL,10.00,'','3','1','Inventory sold','1','','sales','49','','No',NULL,NULL,''),(908,'5500','31677925126','2023-03-04 13:19:08',10.00,NULL,'','3','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(909,'1000','31677925126','2023-03-04 13:19:09',315.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(910,'4000','31677925126','2023-03-04 13:19:09',NULL,300.00,'','3','1','Good sold','1','','sales','33','','No',NULL,NULL,''),(911,'4000','31677925126','2023-03-04 13:18:51',NULL,15.00,'','3','1','Good sold','1','','sales','49','','No',NULL,NULL,''),(912,'1000','41677925243','2023-03-04 13:20:44',600.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(913,'4000','41677925243','2023-03-04 13:20:44',NULL,600.00,'','4','1','Good sold','1','','sales','43','','No',NULL,NULL,''),(914,'1000','41677928583','2023-03-04 14:16:24',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(915,'4000','41677928583','2023-03-04 14:16:24',NULL,250.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(916,'1000','41677999972','2023-03-05 10:06:13',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(917,'4000','41677999972','2023-03-05 10:06:13',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(918,'1000','41678000326','2023-03-05 10:12:07',20.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(919,'4000','41678000326','2023-03-05 10:12:07',NULL,20.00,'','4','1','Good sold','1','','sales','48','','No',NULL,NULL,''),(920,'1000','41678001358','2023-03-05 10:29:19',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(921,'4000','41678001358','2023-03-05 10:29:19',NULL,250.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(922,'1000','41678002878','2023-03-05 10:54:39',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(923,'4000','41678002878','2023-03-05 10:54:39',NULL,280.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(924,'1000','41678003296','2023-03-05 11:01:38',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(925,'4000','41678003296','2023-03-05 11:01:38',NULL,200.00,'','4','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(926,'1000','41678005045','2023-03-05 11:30:54',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(927,'4000','41678005045','2023-03-05 11:30:54',NULL,200.00,'','4','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(928,'4000','41678005045','2023-03-05 11:30:45',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(929,'1000','41678021120','2023-03-05 15:58:42',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(930,'4000','41678021120','2023-03-05 15:58:42',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(931,'1000','31678023620','2023-03-05 16:40:21',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(932,'4000','31678023620','2023-03-05 16:40:21',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(933,'1000','31678025557','2023-03-05 17:12:38',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(934,'4000','31678025557','2023-03-05 17:12:38',NULL,150.00,'','3','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(935,'1000','31678028527','2023-03-05 18:02:08',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(936,'4000','31678028527','2023-03-05 18:02:08',NULL,300.00,'','3','1','Good sold','1','','sales','33','','No',NULL,NULL,''),(937,'1000','41678029134','2023-03-05 18:12:16',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(938,'4000','41678029134','2023-03-05 18:12:16',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(939,'1000','31678033156','2023-03-05 19:19:17',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(940,'4000','31678033156','2023-03-05 19:19:17',NULL,250.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(941,'1000','31678033214','2023-03-05 19:20:16',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(942,'4000','31678033214','2023-03-05 19:20:16',NULL,200.00,'','3','1','Good sold','1','','sales','31','','No',NULL,NULL,''),(943,'1000','31678033245','2023-03-05 19:20:46',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(944,'4000','31678033245','2023-03-05 19:20:46',NULL,150.00,'','3','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(945,'1000','31678036690','2023-03-05 20:18:16',400.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(946,'4000','31678036690','2023-03-05 20:18:16',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(947,'4000','31678036690','2023-03-05 20:18:11',NULL,200.00,'','3','1','Good sold','1','','sales','15','','No',NULL,NULL,''),(948,'1110','31678043143','2023-03-05 22:05:50',NULL,10.00,'','3','1','Inventory sold','1','','sales','49','','No',NULL,NULL,''),(949,'1110','31678043143','2023-03-05 22:05:43',NULL,0.00,'','3','1','Inventory sold','1','','sales','34','','No',NULL,NULL,''),(950,'5500','31678043143','2023-03-05 22:05:49',10.00,NULL,'','3','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(951,'1000','31678043143','2023-03-05 22:05:50',315.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(952,'4000','31678043143','2023-03-05 22:05:50',NULL,15.00,'','3','1','Good sold','1','','sales','49','','No',NULL,NULL,''),(953,'4000','31678043143','2023-03-05 22:05:43',NULL,300.00,'','3','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(954,'1000','31678043271','2023-03-05 22:07:52',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(956,'1000','31678043927','2023-03-05 22:18:49',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(957,'4000','31678043927','2023-03-05 22:18:49',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(958,'1000','31678043271','2023-03-05 22:07:52',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(959,'4000','31678043271','2023-03-05 22:07:52',NULL,150.00,'','3','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(960,'4000','31678043271','2023-03-05 22:07:51',NULL,150.00,'','3','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(961,'1000','31678092632','2023-03-06 11:50:34',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(962,'4000','31678092632','2023-03-06 11:50:34',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(963,'1000','31678092648','2023-03-06 11:50:49',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(964,'4000','31678092648','2023-03-06 11:50:49',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(965,'1000','31678093976','2023-03-06 12:12:57',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(966,'4000','31678093976','2023-03-06 12:12:57',NULL,200.00,'','3','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(967,'1000','41678118023','2023-03-06 18:53:45',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(968,'4000','41678118023','2023-03-06 18:53:45',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(969,'1000','41678119328','2023-03-06 19:15:29',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(970,'4000','41678119328','2023-03-06 19:15:29',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(971,'1000','41678120632','2023-03-06 19:37:14',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(972,'4000','41678120632','2023-03-06 19:37:14',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(973,'1000','41678122572','2023-03-06 20:09:33',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(974,'4000','41678122572','2023-03-06 20:09:33',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(975,'1000','41678130288','2023-03-06 22:18:09',330.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(976,'4000','41678130288','2023-03-06 22:18:09',NULL,330.00,'','4','1','Good sold','1','','sales','30','','No',NULL,NULL,''),(977,'1000','41678170290','2023-03-07 09:24:51',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(978,'4000','41678170290','2023-03-07 09:24:51',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(979,'1000','41678172073','2023-03-07 09:54:34',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(980,'4000','41678172073','2023-03-07 09:54:34',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(981,'1000','41678175318','2023-03-07 10:48:39',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(982,'4000','41678175318','2023-03-07 10:48:39',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(983,'1000','41678182902','2023-03-07 12:55:03',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(984,'4000','41678182902','2023-03-07 12:55:03',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(985,'1110','41678183873','2023-03-07 13:11:26',NULL,0.00,'','4','1','Inventory sold','1','','sales','33','','No',NULL,NULL,''),(986,'1110','41678183873','2023-03-07 13:11:13',NULL,10.00,'','4','1','Inventory sold','1','','sales','49','','No',NULL,NULL,''),(987,'5500','41678183873','2023-03-07 13:11:25',10.00,NULL,'','4','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(988,'1000','41678183873','2023-03-07 13:11:26',315.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(989,'4000','41678183873','2023-03-07 13:11:26',NULL,300.00,'','4','1','Good sold','1','','sales','33','','No',NULL,NULL,''),(990,'4000','41678183873','2023-03-07 13:11:13',NULL,15.00,'','4','1','Good sold','1','','sales','49','','No',NULL,NULL,''),(991,'1000','41678188164','2023-03-07 14:22:45',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(992,'4000','41678188164','2023-03-07 14:22:45',NULL,300.00,'','4','1','Good sold','1','','sales','29','','No',NULL,NULL,''),(993,'1000','41678191818','2023-03-07 15:23:40',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(994,'4000','41678191818','2023-03-07 15:23:40',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(995,'1000','41678197040','2023-03-07 16:50:44',700.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(996,'4000','41678197040','2023-03-07 16:50:44',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(997,'4000','41678197040','2023-03-07 16:50:40',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(998,'1000','41678197102','2023-03-07 16:51:43',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(999,'4000','41678197102','2023-03-07 16:51:43',NULL,250.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(1000,'1000','41678199753','2023-03-07 17:35:55',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1001,'4000','41678199753','2023-03-07 17:35:55',NULL,200.00,'','4','1','Good sold','1','','sales','16','','No',NULL,NULL,''),(1002,'1000','41678199849','2023-03-07 17:37:33',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1003,'4000','41678199849','2023-03-07 17:37:33',NULL,200.00,'','4','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(1004,'4000','41678199849','2023-03-07 17:37:29',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(1005,'1000','41678200571','2023-03-07 17:49:33',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1006,'4000','41678200571','2023-03-07 17:49:33',NULL,200.00,'','4','1','Good sold','1','','sales','18','','No',NULL,NULL,''),(1007,'1000','41678202769','2023-03-07 18:26:10',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1008,'4000','41678202769','2023-03-07 18:26:10',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(1009,'1000','41678202784','2023-03-07 18:26:25',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1010,'4000','41678202784','2023-03-07 18:26:25',NULL,200.00,'','4','1','Good sold','1','','sales','18','','No',NULL,NULL,''),(1011,'1000','41678204611','2023-03-07 18:56:52',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1012,'4000','41678204611','2023-03-07 18:56:52',NULL,200.00,'','4','1','Good sold','1','','sales','18','','No',NULL,NULL,''),(1013,'1000','41678204630','2023-03-07 18:57:12',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1014,'4000','41678204630','2023-03-07 18:57:12',NULL,200.00,'','4','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(1015,'1000','41678204983','2023-03-07 19:03:04',30.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1016,'4000','41678204983','2023-03-07 19:03:04',NULL,30.00,'','4','1','Good sold','1','','sales','58','','No',NULL,NULL,''),(1017,'1000','41678257802','2023-03-08 09:43:23',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1018,'4000','41678257802','2023-03-08 09:43:23',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(1019,'1000','41678278139','2023-03-08 15:22:20',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1020,'4000','41678278139','2023-03-08 15:22:20',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(1021,'1000','41678284451','2023-03-08 17:07:41',600.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1022,'4000','41678284451','2023-03-08 17:07:41',NULL,400.00,'','4','1','Good sold','1','','sales','36','','No',NULL,NULL,''),(1023,'4000','41678284451','2023-03-08 17:07:31',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(1024,'1000','31678287802','2023-03-08 18:03:23',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1025,'4000','31678287802','2023-03-08 18:03:23',NULL,250.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(1026,'1000','31678287857','2023-03-08 18:04:18',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1027,'4000','31678287857','2023-03-08 18:04:18',NULL,200.00,'','3','1','Good sold','1','','sales','16','','No',NULL,NULL,''),(1028,'1000','41678288207','2023-03-08 18:10:12',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1029,'4000','41678288207','2023-03-08 18:10:12',NULL,150.00,'','4','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(1030,'4000','41678288207','2023-03-08 18:10:07',NULL,150.00,'','4','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(1031,'1000','31678288377','2023-03-08 18:12:59',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1032,'4000','31678288377','2023-03-08 18:12:59',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(1033,'1000','31678292169','2023-03-08 19:16:14',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1034,'4000','31678292169','2023-03-08 19:16:14',NULL,150.00,'','3','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(1035,'4000','31678292169','2023-03-08 19:16:09',NULL,150.00,'','3','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(1036,'1000','31678295665','2023-03-08 20:14:26',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1037,'4000','31678295665','2023-03-08 20:14:26',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(1038,'1000','31678299575','2023-03-08 21:19:50',220.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1039,'4000','31678299575','2023-03-08 21:19:50',NULL,200.00,'','3','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(1040,'4000','31678299575','2023-03-08 21:19:35',NULL,20.00,'','3','1','Good sold','1','','sales','48','','No',NULL,NULL,''),(1041,'1000','31678302396','2023-03-08 22:06:37',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1042,'4000','31678302396','2023-03-08 22:06:37',NULL,250.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(1043,'1000','31678351724','2023-03-09 11:48:50',400.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1044,'4000','31678351724','2023-03-09 11:48:50',NULL,200.00,'','3','1','Good sold','1','','sales','18','','No',NULL,NULL,''),(1045,'4000','31678351724','2023-03-09 11:48:44',NULL,200.00,'','3','1','Good sold','1','','sales','18','','No',NULL,NULL,''),(1046,'1000','31678365533','2023-03-09 15:38:54',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1048,'1000','31678365566','2023-03-09 15:39:27',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1049,'4000','31678365566','2023-03-09 15:39:27',NULL,250.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(1050,'1000','31678365533','2023-03-09 15:38:54',600.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1051,'4000','31678365533','2023-03-09 15:38:54',NULL,200.00,'','3','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(1052,'4000','31678365533','2023-03-09 15:38:53',NULL,200.00,'','3','1','Good sold','1','','sales','15','','No',NULL,NULL,''),(1053,'4000','31678365533','2023-03-09 17:08:37',NULL,200.00,'','3','1','Good sold','1','','sales','15','','No',NULL,NULL,''),(1054,'1000','31678372990','2023-03-09 17:43:11',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1055,'4000','31678372990','2023-03-09 17:43:11',NULL,200.00,'','3','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(1056,'1000','31678383592','2023-03-09 20:39:57',700.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1057,'4000','31678383592','2023-03-09 20:39:57',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(1058,'4000','31678383592','2023-03-09 20:39:52',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(1059,'1000','31678390446','2023-03-09 22:34:07',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1060,'4000','31678390446','2023-03-09 22:34:07',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(1061,'1000','31678391107','2023-03-09 22:45:33',600.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1062,'4000','31678391107','2023-03-09 22:45:33',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(1063,'4000','31678391107','2023-03-09 22:45:07',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(1064,'4000','31678391107','2023-03-09 22:45:18',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(1065,'4000','31678391107','2023-03-09 22:45:27',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(1066,'1110','31678392214','2023-03-09 23:03:36',NULL,150.00,'','3','1','Inventory sold','1','','sales','53','','No',NULL,NULL,''),(1067,'5500','31678392214','2023-03-09 23:03:34',150.00,NULL,'','3','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1068,'1000','31678392214','2023-03-09 23:03:36',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1069,'4000','31678392214','2023-03-09 23:03:36',NULL,200.00,'','3','1','Good sold','1','','sales','53','','No',NULL,NULL,''),(1070,'1000','31678437580','2023-03-10 11:39:42',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1072,'1000','31678437580','2023-03-10 11:39:42',550.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1073,'4000','31678437580','2023-03-10 11:39:42',NULL,350.00,'','3','1','Good sold','1','','sales','54','','No',NULL,NULL,''),(1074,'4000','31678437580','2023-03-10 11:39:40',NULL,200.00,'','3','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(1075,'1000','31678453230','2023-03-10 16:00:32',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1076,'4000','31678453230','2023-03-10 16:00:32',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(1077,'1000','41678453606','2023-03-10 16:06:47',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1078,'4000','41678453606','2023-03-10 16:06:47',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(1079,'1000','41678459510','2023-03-10 17:45:11',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1080,'4000','41678459510','2023-03-10 17:45:11',NULL,400.00,'','4','1','Good sold','1','','sales','36','','No',NULL,NULL,''),(1081,'1000','31678459630','2023-03-10 17:47:11',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1082,'4000','31678459630','2023-03-10 17:47:11',NULL,150.00,'','3','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(1083,'1000','31678460308','2023-03-10 17:58:29',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1084,'4000','31678460308','2023-03-10 17:58:29',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(1085,'1000','41678461362','2023-03-10 18:16:03',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1086,'4000','41678461362','2023-03-10 18:16:03',NULL,280.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(1087,'1000','41678461401','2023-03-10 18:16:43',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1088,'4000','41678461401','2023-03-10 18:16:43',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(1089,'1110','31678461995','2023-03-10 18:26:36',NULL,10.00,'','3','1','Inventory sold','1','','sales','49','','No',NULL,NULL,''),(1090,'5500','31678461995','2023-03-10 18:26:35',10.00,NULL,'','3','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1091,'1000','31678461995','2023-03-10 18:26:36',15.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1092,'4000','31678461995','2023-03-10 18:26:36',NULL,15.00,'','3','1','Good sold','1','','sales','49','','No',NULL,NULL,''),(1093,'1000','31678462022','2023-03-10 18:27:03',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1094,'4000','31678462022','2023-03-10 18:27:03',NULL,300.00,'','3','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(1095,'1000','31678462460','2023-03-10 18:34:21',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1096,'4000','31678462460','2023-03-10 18:34:21',NULL,250.00,'','3','1','Good sold','1','','sales','13','','No',NULL,NULL,''),(1097,'1000','31678462541','2023-03-10 18:35:42',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1098,'4000','31678462541','2023-03-10 18:35:42',NULL,250.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(1099,'1000','31678464000','2023-03-10 19:00:01',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1100,'4000','31678464000','2023-03-10 19:00:01',NULL,200.00,'','3','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(1101,'1000','41678464349','2023-03-10 19:05:50',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1102,'4000','41678464349','2023-03-10 19:05:50',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(1103,'1000','41678468197','2023-03-10 20:09:59',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1104,'4000','41678468197','2023-03-10 20:09:59',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(1105,'1000','41678469417','2023-03-10 20:30:18',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1106,'4000','41678469417','2023-03-10 20:30:18',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(1107,'1000','41678469484','2023-03-10 20:31:59',750.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1112,'1000','41678469484','2023-03-10 20:31:59',850.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1113,'4000','41678469484','2023-03-10 20:31:59',NULL,250.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(1114,'4000','41678469484','2023-03-10 20:31:24',NULL,200.00,'','4','1','Good sold','1','','sales','9','','No',NULL,NULL,''),(1115,'4000','41678469484','2023-03-10 20:31:35',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(1116,'4000','41678469484','2023-03-10 20:31:47',NULL,100.00,'','4','1','Good sold','1','','sales','24','','No',NULL,NULL,''),(1117,'4000','41678469484','2023-03-10 20:31:57',NULL,100.00,'','4','1','Good sold','1','','sales','26','','No',NULL,NULL,''),(1118,'1000','41678470470','2023-03-10 20:47:56',60.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1119,'4000','41678470470','2023-03-10 20:47:56',NULL,20.00,'','4','1','Good sold','1','','sales','48','','No',NULL,NULL,''),(1120,'4000','41678470470','2023-03-10 20:47:50',NULL,20.00,'','4','1','Good sold','1','','sales','48','','No',NULL,NULL,''),(1121,'4000','41678470470','2023-03-10 20:47:52',NULL,20.00,'','4','1','Good sold','1','','sales','48','','No',NULL,NULL,''),(1122,'1000','41678473796','2023-03-10 21:43:17',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1123,'4000','41678473796','2023-03-10 21:43:17',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(1124,'1110','41678473825','2023-03-10 21:43:46',NULL,150.00,'','4','1','Inventory sold','1','','sales','55','','No',NULL,NULL,''),(1125,'5500','41678473825','2023-03-10 21:43:45',150.00,NULL,'','4','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1126,'1000','41678473825','2023-03-10 21:43:46',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1127,'4000','41678473825','2023-03-10 21:43:46',NULL,200.00,'','4','1','Good sold','1','','sales','55','','No',NULL,NULL,''),(1128,'1000','41678473895','2023-03-10 21:44:56',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1129,'4000','41678473895','2023-03-10 21:44:56',NULL,200.00,'','4','1','Good sold','1','','sales','14','','No',NULL,NULL,''),(1130,'1000','41678473941','2023-03-10 21:45:46',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1131,'4000','41678473941','2023-03-10 21:45:46',NULL,200.00,'','4','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(1132,'4000','41678473941','2023-03-10 21:45:41',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(1133,'1000','41678475958','2023-03-10 22:19:19',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1134,'4000','41678475958','2023-03-10 22:19:19',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(1135,'1110','41678477171','2023-03-10 22:39:42',NULL,0.00,'','4','1','Inventory sold','1','','sales','29','','No',NULL,NULL,''),(1136,'1110','41678477171','2023-03-10 22:39:31',NULL,10.00,'','4','1','Inventory sold','1','','sales','49','','No',NULL,NULL,''),(1137,'5500','41678477171','2023-03-10 22:39:41',10.00,NULL,'','4','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1138,'1000','41678477171','2023-03-10 22:39:42',315.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1139,'4000','41678477171','2023-03-10 22:39:42',NULL,300.00,'','4','1','Good sold','1','','sales','29','','No',NULL,NULL,''),(1140,'4000','41678477171','2023-03-10 22:39:31',NULL,15.00,'','4','1','Good sold','1','','sales','49','','No',NULL,NULL,''),(1141,'1000','41678477592','2023-03-10 22:46:33',100.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1142,'4000','41678477592','2023-03-10 22:46:33',NULL,100.00,'','4','1','Good sold','1','','sales','24','','No',NULL,NULL,''),(1143,'1110','41678477862','2023-03-10 22:51:12',NULL,0.00,'','4','1','Inventory sold','1','','sales','34','','No',NULL,NULL,''),(1144,'1110','41678477862','2023-03-10 22:51:02',NULL,10.00,'','4','1','Inventory sold','1','','sales','49','','No',NULL,NULL,''),(1145,'5500','41678477862','2023-03-10 22:51:11',10.00,NULL,'','4','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1146,'1000','41678477862','2023-03-10 22:51:12',315.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1147,'4000','41678477862','2023-03-10 22:51:12',NULL,300.00,'','4','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(1148,'4000','41678477862','2023-03-10 22:51:02',NULL,15.00,'','4','1','Good sold','1','','sales','49','','No',NULL,NULL,''),(1149,'1000','41678518659','2023-03-11 10:21:37',1950.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1150,'4000','41678518659','2023-03-11 10:21:37',NULL,200.00,'','4','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(1151,'4000','41678518659','2023-03-11 10:11:03',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(1152,'4000','41678518659','2023-03-11 10:11:07',NULL,200.00,'','4','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(1153,'4000','41678518659','2023-03-11 10:11:11',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(1154,'4000','41678518659','2023-03-11 10:11:16',NULL,200.00,'','4','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(1155,'4000','41678518659','2023-03-11 10:11:21',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(1156,'4000','41678518659','2023-03-11 10:11:29',NULL,200.00,'','4','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(1157,'4000','41678518659','2023-03-11 10:11:34',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(1158,'4000','41678518659','2023-03-11 10:11:49',NULL,200.00,'','4','1','Good sold','1','','sales','14','','No',NULL,NULL,''),(1159,'1000','41678519732','2023-03-11 10:28:53',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1160,'4000','41678519732','2023-03-11 10:28:53',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(1161,'1000','41678520971','2023-03-11 10:49:32',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1162,'4000','41678520971','2023-03-11 10:49:32',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(1163,'1000','41678529701','2023-03-11 13:15:10',800.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1164,'4000','41678529701','2023-03-11 13:15:10',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(1165,'4000','41678529701','2023-03-11 13:15:01',NULL,600.00,'','4','1','Good sold','1','','sales','43','','No',NULL,NULL,''),(1166,'1000','41678538419','2023-03-11 15:40:20',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1167,'4000','41678538419','2023-03-11 15:40:20',NULL,300.00,'','4','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(1168,'1000','31678546426','2023-03-11 18:14:06',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1169,'4000','31678546426','2023-03-11 18:14:06',NULL,200.00,'','3','1','Good sold','1','','sales','15','','No',NULL,NULL,''),(1170,'1000','51678548297','2023-03-11 18:24:58',400.00,NULL,'','5','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1171,'4000','51678548297','2023-03-11 18:24:58',NULL,400.00,'','5','1','Good sold','1','','sales','56','','No',NULL,NULL,''),(1172,'1000','31678548828','2023-03-11 18:33:57',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1173,'4000','31678548828','2023-03-11 18:33:57',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(1174,'1000','41678549766','2023-03-11 18:49:56',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1175,'4000','41678549766','2023-03-11 18:49:56',NULL,350.00,'','4','1','Good sold','1','','sales','54','','No',NULL,NULL,''),(1176,'1000','31678550430','2023-03-11 19:01:09',270.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1177,'4000','31678550430','2023-03-11 19:01:09',NULL,250.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(1178,'4000','31678550430','2023-03-11 19:00:30',NULL,20.00,'','3','1','Good sold','1','','sales','48','','No',NULL,NULL,''),(1179,'1000','31678550668','2023-03-11 19:04:29',250.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,''),(1180,'4000','31678550668','2023-03-11 19:04:29',NULL,250.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(1181,'1000','31678550736','2023-03-11 19:05:39',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1182,'4000','31678550736','2023-03-11 19:05:39',NULL,150.00,'','3','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(1183,'1110','31678550775','2023-03-11 19:06:26',NULL,0.00,'','3','1','Inventory sold','1','','sales','32','','No',NULL,NULL,''),(1184,'1110','31678550775','2023-03-11 19:06:15',NULL,10.00,'','3','1','Inventory sold','1','','sales','49','','No',NULL,NULL,''),(1185,'5500','31678550775','2023-03-11 19:06:22',10.00,NULL,'','3','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1186,'1000','31678550775','2023-03-11 19:06:26',315.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1187,'4000','31678550775','2023-03-11 19:06:26',NULL,300.00,'','3','1','Good sold','1','','sales','32','','No',NULL,NULL,''),(1188,'4000','31678550775','2023-03-11 19:06:15',NULL,15.00,'','3','1','Good sold','1','','sales','49','','No',NULL,NULL,''),(1189,'1000','41678551464','2023-03-11 19:17:56',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1190,'4000','41678551464','2023-03-11 19:17:56',NULL,200.00,'','4','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(1191,'1000','31678555427','2023-03-11 20:24:05',1200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1192,'4000','31678555427','2023-03-11 20:24:05',NULL,600.00,'','3','1','Good sold','1','','sales','43','','No',NULL,NULL,''),(1193,'4000','31678555427','2023-03-11 20:23:47',NULL,600.00,'','3','1','Good sold','1','','sales','43','','No',NULL,NULL,''),(1194,'1000','31678556395','2023-03-11 20:39:59',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1195,'4000','31678556395','2023-03-11 20:39:59',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(1196,'1000','31678559430','2023-03-11 21:30:31',350.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,''),(1197,'4000','31678559430','2023-03-11 21:30:31',NULL,350.00,'','3','1','Good sold','1','','sales','54','','No',NULL,NULL,''),(1198,'1000','31678560092','2023-03-11 21:41:33',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1199,'4000','31678560092','2023-03-11 21:41:33',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(1200,'1000','31678560227','2023-03-11 21:43:48',250.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,''),(1201,'4000','31678560227','2023-03-11 21:43:48',NULL,250.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(1202,'1000','31678560348','2023-03-11 21:45:51',250.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,''),(1203,'4000','31678560348','2023-03-11 21:45:51',NULL,250.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(1204,'1000','31678563144','2023-03-11 22:32:28',200.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,''),(1205,'4000','31678563144','2023-03-11 22:32:28',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(1206,'1000','31678563704','2023-03-11 22:41:46',200.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,''),(1207,'4000','31678563704','2023-03-11 22:41:46',NULL,200.00,'','3','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(1208,'1000','31678609436','2023-03-12 11:24:46',670.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1209,'4000','31678609436','2023-03-12 11:24:46',NULL,200.00,'','3','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(1210,'4000','31678609436','2023-03-12 11:23:56',NULL,250.00,'','3','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(1211,'4000','31678609436','2023-03-12 11:24:12',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(1212,'4000','31678609436','2023-03-12 11:24:17',NULL,20.00,'','3','1','Good sold','1','','sales','48','','No',NULL,NULL,''),(1213,'1000','31678609578','2023-03-12 11:26:21',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1214,'4000','31678609578','2023-03-12 11:26:21',NULL,200.00,'','3','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(1215,'1000','31678630636','2023-03-12 17:17:17',250.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,''),(1216,'4000','31678630636','2023-03-12 17:17:17',NULL,250.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(1217,'1000','31678630659','2023-03-12 17:17:40',150.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,''),(1218,'4000','31678630659','2023-03-12 17:17:40',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(1219,'1000','41678631690','2023-03-12 17:35:04',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1220,'4000','41678631690','2023-03-12 17:35:04',NULL,300.00,'','4','1','Good sold','1','','sales','32','','No',NULL,NULL,''),(1221,'1000','41678635726','2023-03-12 18:42:19',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1222,'4000','41678635726','2023-03-12 18:42:19',NULL,300.00,'','4','1','Good sold','1','','sales','29','','No',NULL,NULL,''),(1223,'1000','41678637427','2023-03-12 19:10:29',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1224,'4000','41678637427','2023-03-12 19:10:29',NULL,300.00,'','4','1','Good sold','1','','sales','28','','No',NULL,NULL,''),(1225,'1000','31678637796','2023-03-12 19:16:40',400.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,''),(1226,'4000','31678637796','2023-03-12 19:16:40',NULL,400.00,'','3','1','Good sold','1','','sales','36','','No',NULL,NULL,''),(1229,'1000','31678642565','2023-03-12 20:36:14',600.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1230,'4000','31678642565','2023-03-12 20:36:14',NULL,250.00,'','3','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(1231,'4000','31678642565','2023-03-12 20:36:05',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(1232,'1000','41678645185','2023-03-12 21:20:02',700.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1233,'4000','41678645185','2023-03-12 21:20:02',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(1234,'4000','41678645185','2023-03-12 21:19:45',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(1235,'1000','41678688967','2023-03-13 09:29:38',200.00,NULL,'','4','1','Good sold','1','','sales','','','No',NULL,NULL,''),(1236,'4000','41678688967','2023-03-13 09:29:38',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(1237,'1000','41678715511','2023-03-13 16:51:52',600.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1238,'4000','41678715511','2023-03-13 16:51:52',NULL,600.00,'','4','1','Good sold','1','','sales','43','','No',NULL,NULL,''),(1239,'1000','41678717819','2023-03-13 17:30:44',320.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1240,'4000','41678717819','2023-03-13 17:30:44',NULL,200.00,'','4','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(1241,'4000','41678717819','2023-03-13 17:30:19',NULL,100.00,'','4','1','Good sold','1','','sales','24','','No',NULL,NULL,''),(1242,'4000','41678717819','2023-03-13 17:30:27',NULL,20.00,'','4','1','Good sold','1','','sales','48','','No',NULL,NULL,''),(1243,'1000','41678719296','2023-03-13 17:54:57',250.00,NULL,'','4','1','Good sold','1','','sales','','','No',NULL,NULL,''),(1244,'4000','41678719296','2023-03-13 17:54:57',NULL,250.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(1245,'1000','41678720166','2023-03-13 18:09:28',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1246,'4000','41678720166','2023-03-13 18:09:28',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(1247,'1000','41678721586','2023-03-13 18:33:07',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1248,'4000','41678721586','2023-03-13 18:33:07',NULL,150.00,'','4','1','Good sold','1','','sales','61','','No',NULL,NULL,''),(1249,'1000','41678722053','2023-03-13 18:41:00',270.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1250,'4000','41678722053','2023-03-13 18:41:00',NULL,250.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(1251,'4000','41678722053','2023-03-13 18:40:53',NULL,20.00,'','4','1','Good sold','1','','sales','48','','No',NULL,NULL,''),(1252,'1000','41678722199','2023-03-13 18:43:24',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1253,'4000','41678722199','2023-03-13 18:43:24',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(1254,'1000','41678776337','2023-03-14 09:45:41',200.00,NULL,'','4','1','Good sold','1','','sales','','','No',NULL,NULL,''),(1255,'4000','41678776337','2023-03-14 09:45:41',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(1256,'1000','41678778302','2023-03-14 10:18:23',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1257,'4000','41678778302','2023-03-14 10:18:23',NULL,250.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(1258,'1000','41678780676','2023-03-14 10:58:00',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1259,'4000','41678780676','2023-03-14 10:58:00',NULL,150.00,'','4','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(1260,'1000','41678796043','2023-03-14 15:14:09',600.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1261,'4000','41678796043','2023-03-14 15:14:09',NULL,600.00,'','4','1','Good sold','1','','sales','40','','No',NULL,NULL,''),(1262,'1000','31678801873','2023-03-14 16:51:17',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1263,'4000','31678801873','2023-03-14 16:51:17',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(1264,'1000','31678803930','2023-03-14 17:25:32',250.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,''),(1265,'4000','31678803930','2023-03-14 17:25:32',NULL,250.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(1266,'1000','31678803981','2023-03-14 17:26:24',300.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,''),(1267,'4000','31678803981','2023-03-14 17:26:24',NULL,300.00,'','3','1','Good sold','1','','sales','29','','No',NULL,NULL,''),(1268,'1000','31678804152','2023-03-14 17:29:15',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1269,'4000','31678804152','2023-03-14 17:29:15',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(1270,'1000','31678806837','2023-03-14 18:14:02',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1271,'4000','31678806837','2023-03-14 18:14:02',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(1272,'1000','41678807020','2023-03-14 18:17:02',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1273,'4000','41678807020','2023-03-14 18:17:02',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(1274,'1000','41678809007','2023-03-14 18:50:08',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1275,'4000','41678809007','2023-03-14 18:50:08',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(1276,'1000','31678811390','2023-03-14 19:30:03',600.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1277,'4000','31678811390','2023-03-14 19:30:03',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(1278,'4000','31678811390','2023-03-14 19:29:50',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(1279,'1000','31678811534','2023-03-14 19:32:17',200.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,''),(1280,'4000','31678811534','2023-03-14 19:32:17',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(1281,'1000','31678813990','2023-03-14 20:13:23',220.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1282,'4000','31678813990','2023-03-14 20:13:23',NULL,200.00,'','3','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(1283,'4000','31678813990','2023-03-14 20:13:10',NULL,20.00,'','3','1','Good sold','1','','sales','48','','No',NULL,NULL,''),(1284,'1000','31678817021','2023-03-14 21:03:46',300.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,''),(1285,'4000','31678817021','2023-03-14 21:03:46',NULL,300.00,'','3','1','Good sold','1','','sales','29','','No',NULL,NULL,''),(1286,'1000','31678817078','2023-03-14 21:08:49',300.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,''),(1287,'4000','31678817078','2023-03-14 21:08:49',NULL,200.00,'','3','1','Good sold','1','','sales','15','','No',NULL,NULL,''),(1288,'4000','31678817078','2023-03-14 21:04:38',NULL,100.00,'','3','1','Good sold','1','','sales','27','','No',NULL,NULL,''),(1289,'1000','31678876200','2023-03-15 13:30:05',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1290,'4000','31678876200','2023-03-15 13:30:05',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(1291,'1000','31678876231','2023-03-15 13:30:34',200.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,''),(1292,'4000','31678876231','2023-03-15 13:30:34',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(1293,'1000','31678881923','2023-03-15 15:05:25',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1294,'4000','31678881923','2023-03-15 15:05:25',NULL,200.00,'','3','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(1295,'1000','31678882020','2023-03-15 15:07:03',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1296,'4000','31678882020','2023-03-15 15:07:03',NULL,300.00,'','3','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(1297,'1000','31678882075','2023-03-15 15:08:09',300.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,''),(1298,'4000','31678882075','2023-03-15 15:08:09',NULL,200.00,'','3','1','Good sold','1','','sales','31','','No',NULL,NULL,''),(1299,'4000','31678882075','2023-03-15 15:07:55',NULL,100.00,'','3','1','Good sold','1','','sales','27','','No',NULL,NULL,''),(1300,'1000','31678885777','2023-03-15 16:09:38',250.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,''),(1301,'4000','31678885777','2023-03-15 16:09:38',NULL,250.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(1302,'1000','31678885806','2023-03-15 16:10:10',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1303,'4000','31678885806','2023-03-15 16:10:10',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(1304,'1000','31678887718','2023-03-15 16:42:36',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1305,'4000','31678887718','2023-03-15 16:42:36',NULL,250.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(1306,'4000','31678887718','2023-03-15 16:41:58',NULL,100.00,'','3','1','Good sold','1','','sales','24','','No',NULL,NULL,''),(1307,'1000','31678889297','2023-03-15 17:08:25',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1308,'4000','31678889297','2023-03-15 17:08:25',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(1309,'1000','51678894339','2023-03-15 18:32:20',350.00,NULL,'','5','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1310,'4000','51678894339','2023-03-15 18:32:20',NULL,350.00,'','5','1','Good sold','1','','sales','54','','No',NULL,NULL,''),(1311,'1000','31678895741','2023-03-15 18:55:43',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1312,'4000','31678895741','2023-03-15 18:55:43',NULL,250.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(1313,'1100','31678637854','2023-03-15 19:31:58',NULL,0.00,'','5','1','','1','','payment','','','No',NULL,NULL,''),(1314,'na','31678637854','2023-03-15 19:31:58',0.00,NULL,'','5','1','','1','','payment','','','No',NULL,NULL,''),(1315,'1110','31678904133','2023-03-15 21:15:49',NULL,70.00,'','3','1','Inventory sold','1','','sales','60','','No',NULL,NULL,''),(1316,'5500','31678904133','2023-03-15 21:15:47',70.00,NULL,'','3','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1317,'1000','31678904133','2023-03-15 21:15:49',800.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1318,'4000','31678904133','2023-03-15 21:15:49',NULL,100.00,'','3','1','Good sold','1','','sales','60','','No',NULL,NULL,''),(1319,'4000','31678904133','2023-03-15 21:15:33',NULL,350.00,'','3','1','Good sold','1','','sales','57','','No',NULL,NULL,''),(1320,'4000','31678904133','2023-03-15 21:15:45',NULL,350.00,'','3','1','Good sold','1','','sales','57','','No',NULL,NULL,''),(1321,'1000','31678904240','2023-03-15 21:18:34',520.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1322,'4000','31678904240','2023-03-15 21:18:34',NULL,20.00,'','3','1','Good sold','1','','sales','48','','No',NULL,NULL,''),(1323,'4000','31678904240','2023-03-15 21:17:20',NULL,300.00,'','3','1','Good sold','1','','sales','29','','No',NULL,NULL,''),(1324,'4000','31678904240','2023-03-15 21:17:32',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(1325,'1000','31678906868','2023-03-15 22:01:45',600.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1326,'4000','31678906868','2023-03-15 22:01:45',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(1327,'4000','31678906868','2023-03-15 22:01:08',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(1328,'4000','31678906868','2023-03-15 22:01:11',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(1329,'4000','31678906868','2023-03-15 22:01:38',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(1330,'1000','31678955388','2023-03-16 11:29:50',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1331,'4000','31678955388','2023-03-16 11:29:50',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(1332,'1000','31678965950','2023-03-16 14:25:51',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1333,'4000','31678965950','2023-03-16 14:25:51',NULL,200.00,'','3','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(1334,'1000','31678966101','2023-03-16 14:28:22',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1335,'4000','31678966101','2023-03-16 14:28:22',NULL,250.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(1336,'1000','31678966232','2023-03-16 14:30:33',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1337,'4000','31678966232','2023-03-16 14:30:33',NULL,250.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(1338,'1000','31678966380','2023-03-16 14:33:01',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1339,'4000','31678966380','2023-03-16 14:33:01',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(1340,'1000','41678984998','2023-03-16 19:43:20',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1341,'4000','41678984998','2023-03-16 19:43:20',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(1342,'1000','41678986279','2023-03-16 20:04:40',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1343,'4000','41678986279','2023-03-16 20:04:40',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(1344,'1000','31678986494','2023-03-16 20:08:16',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1345,'4000','31678986494','2023-03-16 20:08:16',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(1346,'1000','41678989829','2023-03-16 21:03:52',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1347,'4000','41678989829','2023-03-16 21:03:52',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(1348,'4000','41678989829','2023-03-16 21:03:49',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(1349,'1000','41679032516','2023-03-17 08:55:24',450.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1350,'4000','41679032516','2023-03-17 08:55:24',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(1351,'4000','41679032516','2023-03-17 08:55:16',NULL,250.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(1352,'1000','41679032540','2023-03-17 08:55:45',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1353,'4000','41679032540','2023-03-17 08:55:45',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(1354,'4000','41679032540','2023-03-17 08:55:40',NULL,200.00,'','4','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(1355,'1000','31679040184','2023-03-17 11:03:45',370.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1356,'4000','31679040184','2023-03-17 11:03:45',NULL,250.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(1357,'4000','31679040184','2023-03-17 11:03:04',NULL,20.00,'','3','1','Good sold','1','','sales','48','','No',NULL,NULL,''),(1358,'4000','31679040184','2023-03-17 11:03:14',NULL,100.00,'','3','1','Good sold','1','','sales','24','','No',NULL,NULL,''),(1359,'1000','31679041747','2023-03-17 11:29:08',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1360,'4000','31679041747','2023-03-17 11:29:08',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(1361,'1000','41679047508','2023-03-17 13:05:09',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1362,'4000','41679047508','2023-03-17 13:05:09',NULL,200.00,'','4','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(1363,'1000','31679052893','2023-03-17 14:35:05',270.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1364,'4000','31679052893','2023-03-17 14:35:05',NULL,20.00,'','3','1','Good sold','1','','sales','48','','No',NULL,NULL,''),(1365,'4000','31679052893','2023-03-17 14:34:53',NULL,250.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(1366,'1000','41679054158','2023-03-17 14:55:59',300.00,NULL,'','4','1','Good sold','1','','sales','','','No',NULL,NULL,''),(1367,'4000','41679054158','2023-03-17 14:55:59',NULL,300.00,'','4','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(1368,'1000','41679062147','2023-03-17 17:09:08',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1369,'4000','41679062147','2023-03-17 17:09:08',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(1370,'1000','41679063532','2023-03-17 17:32:14',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1371,'4000','41679063532','2023-03-17 17:32:14',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(1372,'1000','41679066899','2023-03-17 18:28:21',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1373,'4000','41679066899','2023-03-17 18:28:21',NULL,250.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(1374,'1000','31679067856','2023-03-17 18:44:17',400.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1375,'4000','31679067856','2023-03-17 18:44:17',NULL,400.00,'','3','1','Good sold','1','','sales','36','','No',NULL,NULL,''),(1376,'1000','31679068103','2023-03-17 18:48:24',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1377,'4000','31679068103','2023-03-17 18:48:24',NULL,200.00,'','3','1','Good sold','1','','sales','18','','No',NULL,NULL,''),(1378,'1000','41679072911','2023-03-17 20:08:32',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1379,'4000','41679072911','2023-03-17 20:08:32',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(1380,'1000','41679072935','2023-03-17 20:08:57',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1381,'4000','41679072935','2023-03-17 20:08:57',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(1382,'1000','41679077110','2023-03-17 21:18:32',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1383,'4000','41679077110','2023-03-17 21:18:32',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(1384,'1000','41679077151','2023-03-17 21:19:17',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1385,'4000','41679077151','2023-03-17 21:19:17',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(1386,'4000','41679077151','2023-03-17 21:19:11',NULL,150.00,'','4','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(1387,'1000','31679077889','2023-03-17 21:31:31',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1388,'4000','31679077889','2023-03-17 21:31:31',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(1389,'1000','31679077989','2023-03-17 21:33:11',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1390,'4000','31679077989','2023-03-17 21:33:11',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(1391,'1000','31679080731','2023-03-17 22:18:52',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1392,'4000','31679080731','2023-03-17 22:18:52',NULL,200.00,'','3','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(1393,'1000','31679080845','2023-03-17 22:20:47',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1394,'4000','31679080845','2023-03-17 22:20:47',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(1395,'1000','41679126191','2023-03-18 10:56:33',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1396,'4000','41679126191','2023-03-18 10:56:33',NULL,150.00,'','4','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(1397,'1000','41679126217','2023-03-18 10:56:58',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1398,'4000','41679126217','2023-03-18 10:56:58',NULL,150.00,'','4','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(1399,'1110','41679127705','2023-03-18 11:22:18',NULL,0.00,'','4','1','Inventory sold','1','','sales','1','','No',NULL,NULL,''),(1400,'1110','41679127705','2023-03-18 11:21:45',NULL,0.00,'','4','1','Inventory sold','1','','sales','48','','No',NULL,NULL,''),(1401,'1110','41679127705','2023-03-18 11:22:01',NULL,10.00,'','4','1','Inventory sold','1','','sales','49','','No',NULL,NULL,''),(1402,'1110','41679127705','2023-03-18 11:22:12',NULL,10.00,'','4','1','Inventory sold','1','','sales','49','','No',NULL,NULL,''),(1403,'5500','41679127705','2023-03-18 11:22:17',20.00,NULL,'','4','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1404,'1000','41679127705','2023-03-18 11:22:18',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1405,'4000','41679127705','2023-03-18 11:22:18',NULL,250.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(1406,'4000','41679127705','2023-03-18 11:21:45',NULL,20.00,'','4','1','Good sold','1','','sales','48','','No',NULL,NULL,''),(1407,'4000','41679127705','2023-03-18 11:22:01',NULL,15.00,'','4','1','Good sold','1','','sales','49','','No',NULL,NULL,''),(1408,'4000','41679127705','2023-03-18 11:22:12',NULL,15.00,'','4','1','Good sold','1','','sales','49','','No',NULL,NULL,''),(1409,'1000','31679128006','2023-03-18 11:27:34',600.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1410,'4000','31679128006','2023-03-18 11:27:34',NULL,300.00,'','3','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(1411,'4000','31679128006','2023-03-18 11:26:46',NULL,300.00,'','3','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(1412,'1000','31679129019','2023-03-18 11:43:40',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1413,'4000','31679129019','2023-03-18 11:43:40',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(1414,'1000','41679148320','2023-03-18 17:05:22',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1415,'4000','41679148320','2023-03-18 17:05:22',NULL,350.00,'','4','1','Good sold','1','','sales','54','','No',NULL,NULL,''),(1416,'1000','31679153292','2023-03-18 18:28:58',800.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1417,'4000','31679153292','2023-03-18 18:28:58',NULL,400.00,'','3','1','Good sold','1','','sales','56','','No',NULL,NULL,''),(1418,'4000','31679153292','2023-03-18 18:28:12',NULL,400.00,'','3','1','Good sold','1','','sales','56','','No',NULL,NULL,''),(1419,'1000','41679153411','2023-03-18 18:30:12',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1420,'4000','41679153411','2023-03-18 18:30:12',NULL,300.00,'','4','1','Good sold','1','','sales','32','','No',NULL,NULL,''),(1421,'1000','31679153831','2023-03-18 18:37:12',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1422,'4000','31679153831','2023-03-18 18:37:12',NULL,250.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(1423,'1000','31679153929','2023-03-18 18:38:50',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1424,'4000','31679153929','2023-03-18 18:38:50',NULL,250.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(1425,'1000','31679153942','2023-03-18 18:39:04',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1426,'4000','31679153942','2023-03-18 18:39:04',NULL,250.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(1427,'1000','41679163505','2023-03-18 21:18:37',150.00,NULL,'','4','1','Good sold','1','','sales','','','No',NULL,NULL,''),(1428,'4000','41679163505','2023-03-18 21:18:37',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(1429,'1000','31679218345','2023-03-19 12:32:26',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1430,'4000','31679218345','2023-03-19 12:32:26',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(1431,'1110','31679224697','2023-03-19 14:18:35',NULL,0.00,'','3','1','Inventory sold','1','','sales','34','','No',NULL,NULL,''),(1432,'1110','31679224697','2023-03-19 14:18:17',NULL,0.00,'','3','1','Inventory sold','1','','sales','34','','No',NULL,NULL,''),(1433,'1110','31679224697','2023-03-19 14:18:19',NULL,10.00,'','3','1','Inventory sold','1','','sales','49','','No',NULL,NULL,''),(1434,'1110','31679224697','2023-03-19 14:18:32',NULL,10.00,'','3','1','Inventory sold','1','','sales','49','','No',NULL,NULL,''),(1435,'5500','31679224697','2023-03-19 14:18:34',20.00,NULL,'','3','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1436,'1000','31679224697','2023-03-19 14:18:35',630.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1437,'4000','31679224697','2023-03-19 14:18:35',NULL,300.00,'','3','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(1438,'4000','31679224697','2023-03-19 14:18:17',NULL,300.00,'','3','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(1439,'4000','31679224697','2023-03-19 14:18:19',NULL,15.00,'','3','1','Good sold','1','','sales','49','','No',NULL,NULL,''),(1440,'4000','31679224697','2023-03-19 14:18:32',NULL,15.00,'','3','1','Good sold','1','','sales','49','','No',NULL,NULL,''),(1441,'1000','41679226440','2023-03-19 14:47:21',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1442,'4000','41679226440','2023-03-19 14:47:21',NULL,300.00,'','4','1','Good sold','1','','sales','33','','No',NULL,NULL,''),(1443,'1000','31679227740','2023-03-19 15:09:02',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1444,'4000','31679227740','2023-03-19 15:09:02',NULL,300.00,'','3','1','Good sold','1','','sales','32','','No',NULL,NULL,''),(1445,'1000','31679228684','2023-03-19 15:24:45',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1446,'4000','31679228684','2023-03-19 15:24:45',NULL,250.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(1447,'1110','31679228794','2023-03-19 15:26:35',NULL,150.00,'','3','1','Inventory sold','1','','sales','53','','No',NULL,NULL,''),(1448,'5500','31679228794','2023-03-19 15:26:34',150.00,NULL,'','3','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1449,'1000','31679228794','2023-03-19 15:26:35',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1450,'4000','31679228794','2023-03-19 15:26:35',NULL,200.00,'','3','1','Good sold','1','','sales','53','','No',NULL,NULL,''),(1451,'1000','31679228832','2023-03-19 15:27:14',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1452,'4000','31679228832','2023-03-19 15:27:14',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(1453,'1000','41679229113','2023-03-19 15:31:54',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1454,'4000','41679229113','2023-03-19 15:31:54',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(1455,'1000','41679233891','2023-03-19 16:51:35',600.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1456,'4000','41679233891','2023-03-19 16:51:35',NULL,300.00,'','4','1','Good sold','1','','sales','32','','No',NULL,NULL,''),(1457,'4000','41679233891','2023-03-19 16:51:31',NULL,300.00,'','4','1','Good sold','1','','sales','32','','No',NULL,NULL,''),(1458,'1000','31679233969','2023-03-19 16:52:51',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1459,'4000','31679233969','2023-03-19 16:52:51',NULL,300.00,'','3','1','Good sold','1','','sales','32','','No',NULL,NULL,''),(1460,'1000','31679235450','2023-03-19 17:17:32',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1461,'4000','31679235450','2023-03-19 17:17:32',NULL,300.00,'','3','1','Good sold','1','','sales','29','','No',NULL,NULL,''),(1462,'1000','41679252047','2023-03-19 21:54:09',150.00,NULL,'','4','1','Good sold','1','','sales','','','No',NULL,NULL,''),(1463,'4000','41679252047','2023-03-19 21:54:09',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(1464,'1000','41679300736','2023-03-20 11:25:45',480.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1465,'4000','41679300736','2023-03-20 11:25:45',NULL,280.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(1466,'4000','41679300736','2023-03-20 11:25:36',NULL,200.00,'','4','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(1467,'1000','41679302085','2023-03-20 11:48:07',150.00,NULL,'','4','1','Good sold','1','','sales','','','No',NULL,NULL,''),(1468,'4000','41679302085','2023-03-20 11:48:07',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(1469,'1000','41679302108','2023-03-20 11:48:29',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1470,'4000','41679302108','2023-03-20 11:48:29',NULL,200.00,'','4','1','Good sold','1','','sales','9','','No',NULL,NULL,''),(1471,'1000','41679306512','2023-03-20 13:01:53',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1472,'4000','41679306512','2023-03-20 13:01:53',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(1473,'1000','41679311176','2023-03-20 14:19:38',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1474,'4000','41679311176','2023-03-20 14:19:38',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(1475,'1000','41679325556','2023-03-20 18:19:18',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1476,'4000','41679325556','2023-03-20 18:19:18',NULL,250.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(1477,'1000','41679381905','2023-03-21 09:58:27',200.00,NULL,'','4','1','Good sold','1','','sales','','','No',NULL,NULL,''),(1478,'4000','41679381905','2023-03-21 09:58:27',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(1479,'1000','41679396347','2023-03-21 13:59:08',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1480,'4000','41679396347','2023-03-21 13:59:08',NULL,250.00,'','4','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(1481,'1000','41679396719','2023-03-21 14:05:21',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1482,'4000','41679396719','2023-03-21 14:05:21',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(1483,'1000','41679397882','2023-03-21 14:24:44',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1484,'4000','41679397882','2023-03-21 14:24:44',NULL,250.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(1485,'1000','41679407463','2023-03-21 17:04:24',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1486,'4000','41679407463','2023-03-21 17:04:24',NULL,200.00,'','4','1','Good sold','1','','sales','16','','No',NULL,NULL,''),(1487,'1000','31679411755','2023-03-21 18:16:14',400.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1488,'4000','31679411755','2023-03-21 18:16:14',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(1489,'4000','31679411755','2023-03-21 18:15:59',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(1490,'1000','31679412452','2023-03-21 18:27:33',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1491,'4000','31679412452','2023-03-21 18:27:33',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(1492,'1000','31679412810','2023-03-21 18:34:00',550.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1493,'4000','31679412810','2023-03-21 18:34:00',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(1494,'4000','31679412810','2023-03-21 18:33:30',NULL,200.00,'','3','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(1495,'1000','41679413593','2023-03-21 18:46:38',500.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1496,'4000','41679413593','2023-03-21 18:46:38',NULL,250.00,'','4','1','Good sold','1','','sales','6','','No',NULL,NULL,''),(1497,'4000','41679413593','2023-03-21 18:46:34',NULL,250.00,'','4','1','Good sold','1','','sales','6','','No',NULL,NULL,''),(1498,'1000','31679416662','2023-03-21 19:37:47',700.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1501,'1000','31679416691','2023-03-21 19:38:18',370.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1502,'4000','31679416691','2023-03-21 19:38:18',NULL,20.00,'','3','1','Good sold','1','','sales','48','','No',NULL,NULL,''),(1503,'4000','31679416691','2023-03-21 19:38:11',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(1504,'1000','31679419456','2023-03-21 20:24:18',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1505,'4000','31679419456','2023-03-21 20:24:18',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(1506,'1000','31679416662','2023-03-21 19:37:47',950.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1507,'4000','31679416662','2023-03-21 19:37:47',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(1508,'4000','31679416662','2023-03-21 19:37:42',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(1509,'4000','31679416662','2023-03-21 19:37:45',NULL,250.00,'','3','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(1510,'1000','41679421504','2023-03-21 20:58:26',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1511,'4000','41679421504','2023-03-21 20:58:26',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(1512,'1000','31679424318','2023-03-21 21:45:30',600.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1513,'4000','31679424318','2023-03-21 21:45:30',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(1514,'4000','31679424318','2023-03-21 21:45:18',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(1515,'4000','31679424318','2023-03-21 21:45:22',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(1516,'4000','31679424318','2023-03-21 21:45:25',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(1517,'1000','31679425723','2023-03-21 22:08:45',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1518,'4000','31679425723','2023-03-21 22:08:45',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(1519,'1000','31679475276','2023-03-22 11:54:37',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1520,'4000','31679475276','2023-03-22 11:54:37',NULL,200.00,'','3','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(1521,'1000','31679477859','2023-03-22 12:37:40',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1522,'4000','31679477859','2023-03-22 12:37:40',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(1523,'1000','31679478802','2023-03-22 12:53:23',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1524,'4000','31679478802','2023-03-22 12:53:23',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(1525,'1000','31679482410','2023-03-22 13:53:37',220.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1526,'4000','31679482410','2023-03-22 13:53:37',NULL,200.00,'','3','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(1527,'4000','31679482410','2023-03-22 13:53:30',NULL,20.00,'','3','1','Good sold','1','','sales','48','','No',NULL,NULL,''),(1528,'1000','31679490162','2023-03-22 16:02:54',320.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1529,'4000','31679490162','2023-03-22 16:02:54',NULL,300.00,'','3','1','Good sold','1','','sales','29','','No',NULL,NULL,''),(1530,'4000','31679490162','2023-03-22 16:02:42',NULL,20.00,'','3','1','Good sold','1','','sales','48','','No',NULL,NULL,''),(1531,'1000','31679490321','2023-03-22 16:05:22',100.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1532,'4000','31679490321','2023-03-22 16:05:22',NULL,100.00,'','3','1','Good sold','1','','sales','24','','No',NULL,NULL,''),(1533,'1110','31679491564','2023-03-22 16:49:56',NULL,10.00,'','3','1','Inventory sold','1','','sales','49','','No',NULL,NULL,''),(1534,'1110','31679491564','2023-03-22 16:26:04',NULL,10.00,'','3','1','Inventory sold','1','','sales','49','','No',NULL,NULL,''),(1535,'5500','31679491564','2023-03-22 16:49:55',20.00,NULL,'','3','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1536,'1000','31679491564','2023-03-22 16:49:56',830.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1537,'4000','31679491564','2023-03-22 16:49:56',NULL,15.00,'','3','1','Good sold','1','','sales','49','','No',NULL,NULL,''),(1538,'4000','31679491564','2023-03-22 16:26:04',NULL,15.00,'','3','1','Good sold','1','','sales','49','','No',NULL,NULL,''),(1539,'4000','31679491564','2023-03-22 16:49:43',NULL,400.00,'','3','1','Good sold','1','','sales','56','','No',NULL,NULL,''),(1540,'4000','31679491564','2023-03-22 16:49:53',NULL,400.00,'','3','1','Good sold','1','','sales','56','','No',NULL,NULL,''),(1541,'1000','31679495189','2023-03-22 17:26:53',750.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1542,'4000','31679495189','2023-03-22 17:26:53',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(1543,'4000','31679495189','2023-03-22 17:26:29',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(1544,'4000','31679495189','2023-03-22 17:26:35',NULL,200.00,'','3','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(1545,'1000','31679496090','2023-03-22 17:41:35',60.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1546,'4000','31679496090','2023-03-22 17:41:35',NULL,30.00,'','3','1','Good sold','1','','sales','58','','No',NULL,NULL,''),(1547,'4000','31679496090','2023-03-22 17:41:30',NULL,30.00,'','3','1','Good sold','1','','sales','58','','No',NULL,NULL,''),(1548,'1000','31679503195','2023-03-22 19:39:56',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1549,'4000','31679503195','2023-03-22 19:39:56',NULL,250.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(1550,'1000','31679508711','2023-03-22 21:12:07',600.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1551,'4000','31679508711','2023-03-22 21:12:07',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(1552,'4000','31679508711','2023-03-22 21:11:51',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(1553,'4000','31679508711','2023-03-22 21:11:54',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(1554,'4000','31679508711','2023-03-22 21:11:57',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(1555,'1000','31679510080','2023-03-22 21:34:41',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1556,'4000','31679510080','2023-03-22 21:34:41',NULL,150.00,'','3','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(1557,'1000','31679510276','2023-03-22 21:37:58',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1558,'4000','31679510276','2023-03-22 21:37:58',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(1559,'1000','31679511422','2023-03-22 21:57:04',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1560,'4000','31679511422','2023-03-22 21:57:04',NULL,150.00,'','3','1','Good sold','1','','sales','61','','No',NULL,NULL,''),(1561,'1000','31679565746','2023-03-23 13:02:27',200.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,''),(1562,'4000','31679565746','2023-03-23 13:02:27',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(1563,'1000','31679565774','2023-03-23 13:02:56',150.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,''),(1564,'4000','31679565774','2023-03-23 13:02:56',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(1565,'1000','31679570528','2023-03-23 14:22:09',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1566,'4000','31679570528','2023-03-23 14:22:09',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(1567,'1000','41679580274','2023-03-23 17:04:35',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1568,'4000','41679580274','2023-03-23 17:04:35',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(1569,'1000','31679583812','2023-03-23 18:03:33',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1571,'1000','41679585442','2023-03-23 18:30:44',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1572,'4000','41679585442','2023-03-23 18:30:44',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(1573,'1000','41679585458','2023-03-23 18:31:00',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1574,'4000','41679585458','2023-03-23 18:31:00',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(1575,'1000','31679583812','2023-03-23 18:03:33',700.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1578,'1000','41679587036','2023-03-23 18:57:26',500.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1579,'4000','41679587036','2023-03-23 18:57:26',NULL,250.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(1580,'4000','41679587036','2023-03-23 18:57:16',NULL,250.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(1581,'1000','41679587628','2023-03-23 19:07:10',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1582,'4000','41679587628','2023-03-23 19:07:10',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(1583,'1000','41679588435','2023-03-23 19:20:36',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1584,'4000','41679588435','2023-03-23 19:20:36',NULL,250.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(1585,'1000','31679583812','2023-03-23 18:03:33',900.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1586,'4000','31679583812','2023-03-23 18:03:33',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(1587,'4000','31679583812','2023-03-23 18:03:32',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(1588,'4000','31679583812','2023-03-23 18:52:53',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(1589,'1000','41679590342','2023-03-23 19:52:26',500.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1590,'4000','41679590342','2023-03-23 19:52:26',NULL,250.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(1591,'4000','41679590342','2023-03-23 19:52:22',NULL,250.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(1592,'1000','31679590525','2023-03-23 19:55:26',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1593,'4000','31679590525','2023-03-23 19:55:26',NULL,250.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(1594,'1000','31679592717','2023-03-23 20:31:58',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1595,'4000','31679592717','2023-03-23 20:31:58',NULL,250.00,'','3','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(1596,'1000','31679593000','2023-03-23 20:36:48',450.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1597,'4000','31679593000','2023-03-23 20:36:48',NULL,250.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(1598,'4000','31679593000','2023-03-23 20:36:40',NULL,200.00,'','3','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(1599,'1000','31679593026','2023-03-23 20:37:07',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1600,'4000','31679593026','2023-03-23 20:37:07',NULL,250.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(1601,'1110','31679593044','2023-03-23 20:37:25',NULL,200.00,'','3','1','Inventory sold','1','','sales','62','','No',NULL,NULL,''),(1602,'5500','31679593044','2023-03-23 20:37:24',200.00,NULL,'','3','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1603,'1000','31679593044','2023-03-23 20:37:25',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1604,'4000','31679593044','2023-03-23 20:37:25',NULL,200.00,'','3','1','Good sold','1','','sales','62','','No',NULL,NULL,''),(1605,'1000','31679593071','2023-03-23 20:37:53',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1606,'4000','31679593071','2023-03-23 20:37:53',NULL,250.00,'','3','1','Good sold','1','','sales','6','','No',NULL,NULL,''),(1607,'1000','31679593197','2023-03-23 20:39:59',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1609,'1000','31679593197','2023-03-23 20:39:59',270.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1610,'4000','31679593197','2023-03-23 20:39:59',NULL,250.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(1611,'4000','31679593197','2023-03-23 20:39:57',NULL,20.00,'','3','1','Good sold','1','','sales','48','','No',NULL,NULL,''),(1612,'1000','41679599026','2023-03-23 22:17:07',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1613,'4000','41679599026','2023-03-23 22:17:07',NULL,150.00,'','4','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(1614,'1000','41679644883','2023-03-24 11:01:25',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1615,'4000','41679644883','2023-03-24 11:01:25',NULL,150.00,'','4','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(1616,'1000','41679647842','2023-03-24 11:50:43',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1617,'4000','41679647842','2023-03-24 11:50:43',NULL,250.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(1618,'1000','41679656260','2023-03-24 14:11:14',270.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1619,'4000','41679656260','2023-03-24 14:11:14',NULL,250.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(1620,'4000','41679656260','2023-03-24 14:11:00',NULL,20.00,'','4','1','Good sold','1','','sales','48','','No',NULL,NULL,''),(1621,'1000','41679656385','2023-03-24 14:13:06',100.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1622,'4000','41679656385','2023-03-24 14:13:06',NULL,100.00,'','4','1','Good sold','1','','sales','26','','No',NULL,NULL,''),(1623,'1000','41679659704','2023-03-24 15:08:26',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1624,'4000','41679659704','2023-03-24 15:08:26',NULL,300.00,'','4','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(1625,'1000','31679664672','2023-03-24 16:31:14',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1626,'4000','31679664672','2023-03-24 16:31:14',NULL,200.00,'','3','1','Good sold','1','','sales','16','','No',NULL,NULL,''),(1627,'1000','31679667453','2023-03-24 17:17:34',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1628,'4000','31679667453','2023-03-24 17:17:34',NULL,250.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(1629,'1000','31679667536','2023-03-24 17:18:57',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1630,'4000','31679667536','2023-03-24 17:18:57',NULL,280.00,'','3','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(1631,'1000','31679667552','2023-03-24 17:19:13',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1632,'4000','31679667552','2023-03-24 17:19:13',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(1633,'1000','31679669088','2023-03-24 17:45:02',180.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1634,'4000','31679669088','2023-03-24 17:45:02',NULL,150.00,'','3','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(1635,'4000','31679669088','2023-03-24 17:44:48',NULL,30.00,'','3','1','Good sold','1','','sales','58','','No',NULL,NULL,''),(1636,'1000','41679670148','2023-03-24 18:02:30',600.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1637,'4000','41679670148','2023-03-24 18:02:30',NULL,600.00,'','4','1','Good sold','1','','sales','40','','No',NULL,NULL,''),(1638,'1000','31679671155','2023-03-24 18:19:17',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1639,'4000','31679671155','2023-03-24 18:19:17',NULL,200.00,'','3','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(1640,'1000','31679672727','2023-03-24 18:45:29',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1641,'4000','31679672727','2023-03-24 18:45:29',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(1642,'1000','31679675062','2023-03-24 19:24:24',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1643,'4000','31679675062','2023-03-24 19:24:24',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(1644,'1000','31679675489','2023-03-24 19:31:30',20.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1645,'4000','31679675489','2023-03-24 19:31:30',NULL,20.00,'','3','1','Good sold','1','','sales','48','','No',NULL,NULL,''),(1646,'1000','41679678956','2023-03-24 20:29:17',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1647,'4000','41679678956','2023-03-24 20:29:17',NULL,250.00,'','4','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(1648,'1000','31679680547','2023-03-24 20:55:49',20.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1649,'4000','31679680547','2023-03-24 20:55:49',NULL,20.00,'','3','1','Good sold','1','','sales','48','','No',NULL,NULL,''),(1650,'1000','41679680886','2023-03-24 21:01:46',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1651,'4000','41679680886','2023-03-24 21:01:46',NULL,250.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(1652,'4000','41679680886','2023-03-24 21:01:26',NULL,100.00,'','4','1','Good sold','1','','sales','26','','No',NULL,NULL,''),(1653,'1000','31679682389','2023-03-24 21:27:50',1650.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1654,'4000','31679682389','2023-03-24 21:27:50',NULL,600.00,'','3','1','Good sold','1','','sales','43','','No',NULL,NULL,''),(1655,'4000','31679682389','2023-03-24 21:26:29',NULL,600.00,'','3','1','Good sold','1','','sales','43','','No',NULL,NULL,''),(1656,'4000','31679682389','2023-03-24 21:26:33',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(1657,'4000','31679682389','2023-03-24 21:26:41',NULL,250.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(1658,'1000','41679728700','2023-03-25 10:18:22',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1659,'4000','41679728700','2023-03-25 10:18:22',NULL,150.00,'','4','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(1660,'1000','41679728729','2023-03-25 10:18:50',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1661,'4000','41679728729','2023-03-25 10:18:50',NULL,150.00,'','4','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(1662,'1000','41679728747','2023-03-25 10:19:08',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1663,'4000','41679728747','2023-03-25 10:19:08',NULL,250.00,'','4','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(1664,'1000','41679735142','2023-03-25 12:05:43',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1665,'4000','41679735142','2023-03-25 12:05:43',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(1666,'1000','41679735162','2023-03-25 12:06:03',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1667,'4000','41679735162','2023-03-25 12:06:03',NULL,150.00,'','4','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(1668,'1000','41679745948','2023-03-25 15:05:55',700.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1669,'4000','41679745948','2023-03-25 15:05:55',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(1670,'4000','41679745948','2023-03-25 15:05:48',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(1671,'1000','41679745967','2023-03-25 15:06:09',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1672,'4000','41679745967','2023-03-25 15:06:09',NULL,300.00,'','4','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(1673,'1110','41679746027','2023-03-25 15:07:09',NULL,10.00,'','4','1','Inventory sold','1','','sales','49','','No',NULL,NULL,''),(1674,'5500','41679746027','2023-03-25 15:07:07',10.00,NULL,'','4','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1675,'1000','41679746027','2023-03-25 15:07:09',15.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1676,'4000','41679746027','2023-03-25 15:07:09',NULL,15.00,'','4','1','Good sold','1','','sales','49','','No',NULL,NULL,''),(1677,'1000','41679750351','2023-03-25 16:19:12',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1678,'4000','41679750351','2023-03-25 16:19:12',NULL,250.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(1679,'1000','41679750376','2023-03-25 16:19:38',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1680,'4000','41679750376','2023-03-25 16:19:38',NULL,400.00,'','4','1','Good sold','1','','sales','36','','No',NULL,NULL,''),(1681,'1110','41679751439','2023-03-25 16:37:21',NULL,10.00,'','4','1','Inventory sold','1','','sales','49','','No',NULL,NULL,''),(1682,'5500','41679751439','2023-03-25 16:37:19',10.00,NULL,'','4','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1683,'1000','41679751439','2023-03-25 16:37:21',15.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1684,'4000','41679751439','2023-03-25 16:37:21',NULL,15.00,'','4','1','Good sold','1','','sales','49','','No',NULL,NULL,''),(1685,'1000','31679752549','2023-03-25 16:56:22',400.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1686,'4000','31679752549','2023-03-25 16:56:22',NULL,300.00,'','3','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(1687,'4000','31679752549','2023-03-25 16:55:49',NULL,100.00,'','3','1','Good sold','1','','sales','26','','No',NULL,NULL,''),(1688,'1000','31679754995','2023-03-25 17:38:12',850.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,''),(1689,'4000','31679754995','2023-03-25 17:38:12',NULL,250.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(1690,'4000','31679754995','2023-03-25 17:36:35',NULL,200.00,'','3','1','Good sold','1','','sales','16','','No',NULL,NULL,''),(1691,'4000','31679754995','2023-03-25 17:36:58',NULL,200.00,'','3','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(1692,'4000','31679754995','2023-03-25 17:38:06',NULL,200.00,'','3','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(1693,'1000','31679756420','2023-03-25 18:01:28',590.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1694,'4000','31679756420','2023-03-25 18:01:28',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(1695,'4000','31679756420','2023-03-25 18:00:20',NULL,200.00,'','3','1','Good sold','1','','sales','63','','No',NULL,NULL,''),(1696,'4000','31679756420','2023-03-25 18:00:36',NULL,20.00,'','3','1','Good sold','1','','sales','48','','No',NULL,NULL,''),(1697,'4000','31679756420','2023-03-25 18:01:24',NULL,20.00,'','3','1','Good sold','1','','sales','48','','No',NULL,NULL,''),(1698,'1000','31679762083','2023-03-25 19:35:18',480.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1699,'4000','31679762083','2023-03-25 19:35:18',NULL,280.00,'','3','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(1700,'4000','31679762083','2023-03-25 19:34:43',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(1701,'1110','41679764286','2023-03-25 20:11:34',NULL,10.00,'','4','1','Inventory sold','1','','sales','49','','No',NULL,NULL,''),(1702,'1110','41679764286','2023-03-25 20:11:26',NULL,0.00,'','4','1','Inventory sold','1','','sales','34','','No',NULL,NULL,''),(1703,'5500','41679764286','2023-03-25 20:11:32',10.00,NULL,'','4','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1704,'1000','41679764286','2023-03-25 20:11:34',315.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1705,'4000','41679764286','2023-03-25 20:11:34',NULL,15.00,'','4','1','Good sold','1','','sales','49','','No',NULL,NULL,''),(1706,'4000','41679764286','2023-03-25 20:11:26',NULL,300.00,'','4','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(1707,'1000','31679770238','2023-03-25 21:50:39',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1708,'4000','31679770238','2023-03-25 21:50:39',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(1709,'1000','31679822430','2023-03-26 12:20:41',400.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1710,'4000','31679822430','2023-03-26 12:20:41',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(1711,'4000','31679822430','2023-03-26 12:20:30',NULL,200.00,'','3','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(1712,'1000','31679836410','2023-03-26 16:13:31',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1713,'4000','31679836410','2023-03-26 16:13:31',NULL,250.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(1714,'1000','31679836433','2023-03-26 16:13:54',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1715,'4000','31679836433','2023-03-26 16:13:54',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(1716,'1110','41679837582','2023-03-26 16:33:03',NULL,70.00,'','4','1','Inventory sold','1','','sales','60','','No',NULL,NULL,''),(1717,'5500','41679837582','2023-03-26 16:33:02',70.00,NULL,'','4','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1718,'1000','41679837582','2023-03-26 16:33:03',100.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1719,'4000','41679837582','2023-03-26 16:33:03',NULL,100.00,'','4','1','Good sold','1','','sales','60','','No',NULL,NULL,''),(1720,'1000','31679837756','2023-03-26 16:35:57',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1721,'4000','31679837756','2023-03-26 16:35:57',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(1722,'1000','41679838453','2023-03-26 16:47:52',1150.00,NULL,'','4','1','Good sold','1','','sales','','','No',NULL,NULL,''),(1723,'4000','41679838453','2023-03-26 16:47:52',NULL,250.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(1724,'4000','41679838453','2023-03-26 16:47:33',NULL,250.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(1725,'4000','41679838453','2023-03-26 16:47:36',NULL,250.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(1726,'4000','41679838453','2023-03-26 16:47:40',NULL,200.00,'','4','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(1727,'4000','41679838453','2023-03-26 16:47:48',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(1728,'1000','41679838747','2023-03-26 16:52:32',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1729,'4000','41679838747','2023-03-26 16:52:32',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(1730,'4000','41679838747','2023-03-26 16:52:27',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(1731,'1000','31679839940','2023-03-26 17:12:21',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1732,'4000','31679839940','2023-03-26 17:12:21',NULL,200.00,'','3','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(1733,'1000','41679846761','2023-03-26 19:06:02',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1734,'4000','41679846761','2023-03-26 19:06:02',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(1735,'1000','41679851074','2023-03-26 20:17:55',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1736,'4000','41679851074','2023-03-26 20:17:55',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(1737,'1000','41679855945','2023-03-26 21:39:07',200.00,NULL,'','4','1','Good sold','1','','sales','','','No',NULL,NULL,''),(1738,'4000','41679855945','2023-03-26 21:39:07',NULL,200.00,'','4','1','Good sold','1','','sales','19','','No',NULL,NULL,''),(1739,'1000','41679903426','2023-03-27 10:50:28',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1740,'4000','41679903426','2023-03-27 10:50:28',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(1741,'1000','41679903445','2023-03-27 10:50:46',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1742,'4000','41679903445','2023-03-27 10:50:46',NULL,200.00,'','4','1','Good sold','1','','sales','16','','No',NULL,NULL,''),(1743,'1000','41679903477','2023-03-27 10:51:19',200.00,NULL,'','4','1','Good sold','1','','sales','','','No',NULL,NULL,''),(1744,'4000','41679903477','2023-03-27 10:51:19',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(1745,'1000','41679923398','2023-03-27 16:23:19',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1746,'4000','41679923398','2023-03-27 16:23:19',NULL,150.00,'','4','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(1747,'1000','41679924084','2023-03-27 16:34:45',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1748,'4000','41679924084','2023-03-27 16:34:45',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(1749,'1000','41679928040','2023-03-27 17:40:41',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1750,'4000','41679928040','2023-03-27 17:40:41',NULL,200.00,'','4','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(1751,'1000','41679929546','2023-03-27 18:05:47',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1752,'4000','41679929546','2023-03-27 18:05:47',NULL,200.00,'','4','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(1753,'1000','41679932796','2023-03-27 18:59:57',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1754,'4000','41679932796','2023-03-27 18:59:57',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(1755,'1000','41679988002','2023-03-28 10:20:04',280.00,NULL,'','4','1','Good sold','1','','sales','','','No',NULL,NULL,''),(1756,'4000','41679988002','2023-03-28 10:20:04',NULL,280.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(1757,'1000','41679996620','2023-03-28 12:43:41',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1758,'4000','41679996620','2023-03-28 12:43:41',NULL,150.00,'','4','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(1759,'1000','41679996648','2023-03-28 12:44:16',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1760,'4000','41679996648','2023-03-28 12:44:16',NULL,350.00,'','4','1','Good sold','1','','sales','54','','No',NULL,NULL,''),(1761,'1000','41679998482','2023-03-28 13:14:44',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1762,'4000','41679998482','2023-03-28 13:14:44',NULL,200.00,'','4','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(1763,'1000','41680004746','2023-03-28 14:59:12',650.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1764,'4000','41680004746','2023-03-28 14:59:12',NULL,300.00,'','4','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(1765,'4000','41680004746','2023-03-28 14:59:07',NULL,350.00,'','4','1','Good sold','1','','sales','57','','No',NULL,NULL,''),(1766,'1000','31680006928','2023-03-28 15:35:29',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1767,'4000','31680006928','2023-03-28 15:35:29',NULL,200.00,'','3','1','Good sold','1','','sales','31','','No',NULL,NULL,''),(1768,'1000','31680006970','2023-03-28 15:36:25',550.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1769,'4000','31680006970','2023-03-28 15:36:25',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(1770,'4000','31680006970','2023-03-28 15:36:10',NULL,300.00,'','3','1','Good sold','1','','sales','29','','No',NULL,NULL,''),(1771,'1000','41680014450','2023-03-28 17:40:51',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1772,'4000','41680014450','2023-03-28 17:40:51',NULL,250.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(1773,'1000','41680014768','2023-03-28 17:46:09',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1774,'4000','41680014768','2023-03-28 17:46:09',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(1775,'1000','41680016036','2023-03-28 18:07:17',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1776,'4000','41680016036','2023-03-28 18:07:17',NULL,350.00,'','4','1','Good sold','1','','sales','54','','No',NULL,NULL,''),(1777,'1000','41680016056','2023-03-28 18:07:43',550.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1778,'4000','41680016056','2023-03-28 18:07:43',NULL,250.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(1779,'4000','41680016056','2023-03-28 18:07:36',NULL,300.00,'','4','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(1780,'1000','31680016627','2023-03-28 18:17:19',500.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1781,'4000','31680016627','2023-03-28 18:17:19',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(1782,'4000','31680016627','2023-03-28 18:17:07',NULL,250.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(1783,'1000','31680019178','2023-03-28 18:59:40',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1784,'4000','31680019178','2023-03-28 18:59:40',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(1785,'1000','31680020030','2023-03-28 19:13:51',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1786,'4000','31680020030','2023-03-28 19:13:51',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(1787,'1000','31680021387','2023-03-28 19:36:33',700.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1788,'4000','31680021387','2023-03-28 19:36:33',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(1789,'4000','31680021387','2023-03-28 19:36:27',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(1790,'1000','31680023298','2023-03-28 20:08:20',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1791,'4000','31680023298','2023-03-28 20:08:20',NULL,280.00,'','3','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(1792,'1000','31680025462','2023-03-28 20:44:24',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1793,'4000','31680025462','2023-03-28 20:44:24',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(1794,'1000','31680028046','2023-03-28 21:27:28',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1795,'4000','31680028046','2023-03-28 21:27:28',NULL,150.00,'','3','1','Good sold','1','','sales','61','','No',NULL,NULL,''),(1796,'1000','31680028145','2023-03-28 21:29:07',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1797,'4000','31680028145','2023-03-28 21:29:07',NULL,250.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(1798,'1000','31680028668','2023-03-28 21:37:50',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1799,'4000','31680028668','2023-03-28 21:37:50',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(1800,'1000','31680071879','2023-03-29 09:38:00',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1801,'4000','31680071879','2023-03-29 09:38:00',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(1802,'1000','31680073185','2023-03-29 09:59:47',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1803,'4000','31680073185','2023-03-29 09:59:47',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(1804,'1000','31680083838','2023-03-29 12:57:19',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1805,'4000','31680083838','2023-03-29 12:57:19',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(1806,'1000','31680084782','2023-03-29 13:13:04',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1807,'4000','31680084782','2023-03-29 13:13:04',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(1808,'1000','31680084814','2023-03-29 13:13:35',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1809,'4000','31680084814','2023-03-29 13:13:35',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(1810,'1000','31680091881','2023-03-29 15:11:23',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1811,'4000','31680091881','2023-03-29 15:11:23',NULL,150.00,'','3','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(1812,'1000','31680092126','2023-03-29 15:15:27',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1813,'4000','31680092126','2023-03-29 15:15:27',NULL,250.00,'','3','1','Good sold','1','','sales','6','','No',NULL,NULL,''),(1814,'1000','31680098241','2023-03-29 16:57:22',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1815,'4000','31680098241','2023-03-29 16:57:22',NULL,200.00,'','3','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(1816,'1000','31680099202','2023-03-29 17:13:24',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1817,'4000','31680099202','2023-03-29 17:13:24',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(1818,'1000','31680101668','2023-03-29 17:54:29',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1819,'4000','31680101668','2023-03-29 17:54:29',NULL,200.00,'','3','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(1820,'1000','31680103841','2023-03-29 18:30:42',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1821,'4000','31680103841','2023-03-29 18:30:42',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(1822,'1000','31680104791','2023-03-29 18:47:04',650.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1823,'4000','31680104791','2023-03-29 18:47:04',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(1824,'4000','31680104791','2023-03-29 18:46:31',NULL,300.00,'','3','1','Good sold','1','','sales','32','','No',NULL,NULL,''),(1825,'1000','31680106867','2023-03-29 19:21:08',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1826,'4000','31680106867','2023-03-29 19:21:08',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(1827,'1110','31680107963','2023-03-29 19:39:37',NULL,0.00,'','3','1','Inventory sold','1','','sales','1','','No',NULL,NULL,''),(1828,'1110','31680107963','2023-03-29 19:39:23',NULL,200.00,'','3','1','Inventory sold','1','','sales','62','','No',NULL,NULL,''),(1829,'5500','31680107963','2023-03-29 19:39:36',200.00,NULL,'','3','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1830,'1000','31680107963','2023-03-29 19:39:37',450.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1831,'4000','31680107963','2023-03-29 19:39:37',NULL,250.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(1832,'4000','31680107963','2023-03-29 19:39:23',NULL,200.00,'','3','1','Good sold','1','','sales','62','','No',NULL,NULL,''),(1833,'1000','31680108806','2023-03-29 19:53:28',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1834,'4000','31680108806','2023-03-29 19:53:28',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(1835,'1000','31680111792','2023-03-29 20:43:13',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1836,'4000','31680111792','2023-03-29 20:43:13',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(1837,'1000','31680112048','2023-03-29 20:47:29',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1838,'4000','31680112048','2023-03-29 20:47:29',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(1839,'1000','31680112069','2023-03-29 20:47:50',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1840,'4000','31680112069','2023-03-29 20:47:50',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(1841,'1000','31680112333','2023-03-29 20:52:15',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1842,'4000','31680112333','2023-03-29 20:52:15',NULL,200.00,'','3','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(1843,'1000','31680114706','2023-03-29 21:31:48',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1844,'4000','31680114706','2023-03-29 21:31:48',NULL,200.00,'','3','1','Good sold','1','','sales','15','','No',NULL,NULL,''),(1845,'1000','31680115677','2023-03-29 21:47:59',400.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1846,'4000','31680115677','2023-03-29 21:47:59',NULL,400.00,'','3','1','Good sold','1','','sales','36','','No',NULL,NULL,''),(1847,'1000','31680165564','2023-03-30 11:39:25',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1848,'4000','31680165564','2023-03-30 11:39:25',NULL,200.00,'','3','1','Good sold','1','','sales','15','','No',NULL,NULL,''),(1849,'1000','31680167953','2023-03-30 12:19:14',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1850,'4000','31680167953','2023-03-30 12:19:14',NULL,350.00,'','3','1','Good sold','1','','sales','54','','No',NULL,NULL,''),(1851,'1000','31680170786','2023-03-30 13:06:42',220.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1852,'4000','31680170786','2023-03-30 13:06:42',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(1853,'4000','31680170786','2023-03-30 13:06:26',NULL,20.00,'','3','1','Good sold','1','','sales','48','','No',NULL,NULL,''),(1854,'1000','31680170900','2023-03-30 13:08:21',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1855,'4000','31680170900','2023-03-30 13:08:21',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(1856,'1000','31680175304','2023-03-30 14:21:45',250.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,''),(1857,'4000','31680175304','2023-03-30 14:21:45',NULL,250.00,'','3','1','Good sold','1','','sales','6','','No',NULL,NULL,''),(1858,'1000','31680179894','2023-03-30 15:38:37',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1859,'4000','31680179894','2023-03-30 15:38:37',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(1860,'1000','41680181179','2023-03-30 15:59:40',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1861,'4000','41680181179','2023-03-30 15:59:40',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(1862,'1000','41680182932','2023-03-30 16:28:54',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1863,'4000','41680182932','2023-03-30 16:28:54',NULL,350.00,'','4','1','Good sold','1','','sales','54','','No',NULL,NULL,''),(1864,'1000','41680182961','2023-03-30 16:29:26',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1865,'4000','41680182961','2023-03-30 16:29:26',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(1866,'4000','41680182961','2023-03-30 16:29:21',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(1867,'1110','41680184131','2023-03-30 16:48:52',NULL,70.00,'','4','1','Inventory sold','1','','sales','60','','No',NULL,NULL,''),(1868,'5500','41680184131','2023-03-30 16:48:51',70.00,NULL,'','4','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(1869,'1000','41680184131','2023-03-30 16:48:52',100.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1870,'4000','41680184131','2023-03-30 16:48:52',NULL,100.00,'','4','1','Good sold','1','','sales','60','','No',NULL,NULL,''),(1871,'1000','41680185473','2023-03-30 17:11:14',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1872,'4000','41680185473','2023-03-30 17:11:14',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(1873,'1000','41680185559','2023-03-30 17:16:16',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1874,'4000','41680185559','2023-03-30 17:16:16',NULL,150.00,'','4','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(1875,'1000','41680191213','2023-03-30 18:46:55',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1876,'4000','41680191213','2023-03-30 18:46:55',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(1877,'1000','41680191747','2023-03-30 18:55:49',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1878,'4000','41680191747','2023-03-30 18:55:49',NULL,250.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(1879,'1000','41680194747','2023-03-30 19:45:48',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1881,'1000','41680194806','2023-03-30 19:46:47',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1882,'4000','41680194806','2023-03-30 19:46:47',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(1883,'1000','41680195596','2023-03-30 19:59:58',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1884,'4000','41680195596','2023-03-30 19:59:58',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(1885,'1000','41680195611','2023-03-30 20:00:12',30.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1886,'4000','41680195611','2023-03-30 20:00:12',NULL,30.00,'','4','1','Good sold','1','','sales','58','','No',NULL,NULL,''),(1887,'1000','41680196665','2023-03-30 20:17:46',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1888,'4000','41680196665','2023-03-30 20:17:46',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(1889,'1000','41680198129','2023-03-30 20:42:11',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1890,'4000','41680198129','2023-03-30 20:42:11',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(1891,'1000','41680198706','2023-03-30 20:51:48',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1892,'4000','41680198706','2023-03-30 20:51:48',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(1893,'1000','41680199113','2023-03-30 20:58:34',30.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1894,'4000','41680199113','2023-03-30 20:58:34',NULL,30.00,'','4','1','Good sold','1','','sales','58','','No',NULL,NULL,''),(1895,'1000','41680199841','2023-03-30 21:10:43',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1896,'4000','41680199841','2023-03-30 21:10:43',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(1897,'1000','31680203886','2023-03-30 22:18:07',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1898,'4000','31680203886','2023-03-30 22:18:07',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(1899,'1000','31680243811','2023-03-31 09:23:41',220.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1900,'4000','31680243811','2023-03-31 09:23:41',NULL,200.00,'','3','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(1901,'4000','31680243811','2023-03-31 09:23:31',NULL,20.00,'','3','1','Good sold','1','','sales','48','','No',NULL,NULL,''),(1902,'1000','41680245571','2023-03-31 09:52:52',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1903,'4000','41680245571','2023-03-31 09:52:52',NULL,150.00,'','4','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(1904,'1000','41680249361','2023-03-31 10:56:02',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1905,'4000','41680249361','2023-03-31 10:56:02',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(1906,'1000','31680259120','2023-03-31 13:38:41',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1907,'4000','31680259120','2023-03-31 13:38:41',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(1908,'1000','31680271711','2023-03-31 17:08:32',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1909,'4000','31680271711','2023-03-31 17:08:32',NULL,250.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(1910,'1000','31680271724','2023-03-31 17:08:46',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1911,'4000','31680271724','2023-03-31 17:08:46',NULL,280.00,'','3','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(1912,'1000','31680276455','2023-03-31 18:27:37',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1913,'4000','31680276455','2023-03-31 18:27:37',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(1914,'1000','31680276495','2023-03-31 18:28:16',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1915,'4000','31680276495','2023-03-31 18:28:16',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(1916,'1000','41680276525','2023-03-31 18:28:47',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1917,'4000','41680276525','2023-03-31 18:28:47',NULL,250.00,'','4','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(1918,'1000','41680276545','2023-03-31 18:29:06',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1919,'4000','41680276545','2023-03-31 18:29:06',NULL,200.00,'','4','1','Good sold','1','','sales','31','','No',NULL,NULL,''),(1920,'1000','41680276568','2023-03-31 18:29:29',100.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1921,'4000','41680276568','2023-03-31 18:29:29',NULL,100.00,'','4','1','Good sold','1','','sales','24','','No',NULL,NULL,''),(1922,'1000','41680276680','2023-03-31 18:31:21',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1923,'4000','41680276680','2023-03-31 18:31:21',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(1924,'1000','41680277291','2023-03-31 18:41:33',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1925,'4000','41680277291','2023-03-31 18:41:33',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(1926,'1000','31680279168','2023-03-31 19:12:49',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1927,'4000','31680279168','2023-03-31 19:12:49',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(1928,'1000','41680281748','2023-03-31 19:55:49',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1929,'4000','41680281748','2023-03-31 19:55:49',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(1930,'1000','31680287129','2023-03-31 21:25:30',100.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1931,'4000','31680287129','2023-03-31 21:25:30',NULL,100.00,'','3','1','Good sold','1','','sales','24','','No',NULL,NULL,''),(1932,'1000','31680287860','2023-03-31 21:37:41',30.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1933,'4000','31680287860','2023-03-31 21:37:41',NULL,30.00,'','3','1','Good sold','1','','sales','58','','No',NULL,NULL,''),(1934,'1000','31680288010','2023-03-31 21:40:12',300.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,''),(1935,'4000','31680288010','2023-03-31 21:40:12',NULL,300.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(1936,'1000','41680289530','2023-03-31 22:05:31',200.00,NULL,'','4','1','Good sold','1','','sales','','','No',NULL,NULL,''),(1937,'4000','41680289530','2023-03-31 22:05:31',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(1938,'1000','41680290999','2023-03-31 22:30:22',800.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1939,'4000','41680290999','2023-03-31 22:30:22',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(1940,'4000','41680290999','2023-03-31 22:29:59',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(1941,'4000','41680290999','2023-03-31 22:30:06',NULL,200.00,'','4','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(1942,'4000','41680290999','2023-03-31 22:30:11',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(1943,'1000','41680331222','2023-04-01 09:40:23',250.00,NULL,'','4','1','Good sold','1','','sales','','','No',NULL,NULL,''),(1944,'4000','41680331222','2023-04-01 09:40:23',NULL,250.00,'','4','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(1945,'1000','41680336986','2023-04-01 11:16:27',30.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1946,'4000','41680336986','2023-04-01 11:16:27',NULL,30.00,'','4','1','Good sold','1','','sales','58','','No',NULL,NULL,''),(1947,'1000','41680344259','2023-04-01 13:17:58',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1948,'4000','41680344259','2023-04-01 13:17:58',NULL,300.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(1949,'4000','41680344259','2023-04-01 13:17:39',NULL,100.00,'','4','1','Good sold','1','','sales','24','','No',NULL,NULL,''),(1950,'1000','31680355393','2023-04-01 16:23:15',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1951,'4000','31680355393','2023-04-01 16:23:15',NULL,300.00,'','3','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(1952,'1000','31680356546','2023-04-01 16:42:33',700.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1953,'4000','31680356546','2023-04-01 16:42:33',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(1954,'4000','31680356546','2023-04-01 16:42:26',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(1955,'1000','31680359879','2023-04-01 17:38:00',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1956,'4000','31680359879','2023-04-01 17:38:00',NULL,200.00,'','3','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(1957,'1000','31680365903','2023-04-01 19:18:24',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1958,'4000','31680365903','2023-04-01 19:18:24',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(1959,'1000','31680365963','2023-04-01 19:19:29',60.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1960,'4000','31680365963','2023-04-01 19:19:29',NULL,30.00,'','3','1','Good sold','1','','sales','58','','No',NULL,NULL,''),(1961,'4000','31680365963','2023-04-01 19:19:23',NULL,30.00,'','3','1','Good sold','1','','sales','58','','No',NULL,NULL,''),(1962,'1000','31680369749','2023-04-01 20:22:31',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1963,'4000','31680369749','2023-04-01 20:22:31',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(1964,'1000','31680371883','2023-04-01 20:58:04',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1965,'4000','31680371883','2023-04-01 20:58:04',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(1966,'1000','31680372953','2023-04-01 21:15:54',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1967,'4000','31680372953','2023-04-01 21:15:54',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(1968,'1000','31680376036','2023-04-01 22:07:17',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1969,'4000','31680376036','2023-04-01 22:07:17',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(1970,'1000','31680379624','2023-04-01 23:07:05',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1971,'4000','31680379624','2023-04-01 23:07:05',NULL,280.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(1972,'1000','31680379752','2023-04-01 23:09:17',400.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1973,'4000','31680379752','2023-04-01 23:09:17',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(1974,'4000','31680379752','2023-04-01 23:09:13',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(1975,'1000','31680380508','2023-04-01 23:21:49',30.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1976,'4000','31680380508','2023-04-01 23:21:49',NULL,30.00,'','3','1','Good sold','1','','sales','58','','No',NULL,NULL,''),(1977,'1000','31680430572','2023-04-02 13:16:13',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1978,'4000','31680430572','2023-04-02 13:16:13',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(1979,'1000','31680430613','2023-04-02 13:16:54',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1980,'4000','31680430613','2023-04-02 13:16:54',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(1981,'1000','41680441690','2023-04-02 16:21:31',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1982,'4000','41680441690','2023-04-02 16:21:31',NULL,300.00,'','4','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(1983,'1000','41680445245','2023-04-02 17:20:46',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1984,'4000','41680445245','2023-04-02 17:20:46',NULL,300.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(1985,'1000','31680447149','2023-04-02 17:52:31',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1987,'1000','31680447149','2023-04-02 17:52:31',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1988,'4000','31680447149','2023-04-02 17:52:31',NULL,150.00,'','3','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(1989,'4000','31680447149','2023-04-02 17:52:29',NULL,150.00,'','3','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(1990,'1000','31680449360','2023-04-02 18:30:15',650.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1991,'4000','31680449360','2023-04-02 18:30:15',NULL,250.00,'','3','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(1992,'4000','31680449360','2023-04-02 18:29:20',NULL,400.00,'','3','1','Good sold','1','','sales','56','','No',NULL,NULL,''),(1993,'1000','31680449442','2023-04-02 18:30:44',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1994,'4000','31680449442','2023-04-02 18:30:44',NULL,300.00,'','3','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(1995,'1000','31680449592','2023-04-02 18:33:14',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1996,'4000','31680449592','2023-04-02 18:33:14',NULL,280.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(1997,'1000','41680453558','2023-04-02 19:39:19',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(1998,'4000','41680453558','2023-04-02 19:39:19',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(1999,'1000','41680456240','2023-04-02 20:24:02',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2000,'4000','41680456240','2023-04-02 20:24:02',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(2001,'1000','41680460112','2023-04-02 21:28:45',450.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2002,'4000','41680460112','2023-04-02 21:28:45',NULL,250.00,'','4','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(2003,'4000','41680460112','2023-04-02 21:28:32',NULL,200.00,'','4','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(2004,'1000','41680461358','2023-04-02 21:49:20',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2005,'4000','41680461358','2023-04-02 21:49:20',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(2006,'1000','41680501998','2023-04-03 09:06:40',200.00,NULL,'','4','1','Good sold','1','','sales','','','No',NULL,NULL,''),(2007,'4000','41680501998','2023-04-03 09:06:40',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(2008,'1000','41680504049','2023-04-03 09:40:50',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2009,'4000','41680504049','2023-04-03 09:40:50',NULL,150.00,'','4','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(2010,'1000','41680515066','2023-04-03 12:44:27',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2011,'4000','41680515066','2023-04-03 12:44:27',NULL,150.00,'','4','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(2012,'1000','41680521975','2023-04-03 14:39:54',980.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2013,'4000','41680521975','2023-04-03 14:39:54',NULL,300.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(2014,'4000','41680521975','2023-04-03 14:39:35',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(2015,'4000','41680521975','2023-04-03 14:39:40',NULL,200.00,'','4','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(2016,'4000','41680521975','2023-04-03 14:39:49',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(2017,'1000','41680528820','2023-04-03 16:33:49',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2018,'4000','41680528820','2023-04-03 16:33:49',NULL,150.00,'','4','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(2019,'4000','41680528820','2023-04-03 16:33:40',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(2020,'1000','41680531577','2023-04-03 17:19:42',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2021,'4000','41680531577','2023-04-03 17:19:42',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(2022,'4000','41680531577','2023-04-03 17:19:37',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(2023,'1000','41680534037','2023-04-03 18:00:38',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2024,'4000','41680534037','2023-04-03 18:00:38',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(2025,'1000','41680540054','2023-04-03 19:40:56',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2026,'4000','41680540054','2023-04-03 19:40:56',NULL,250.00,'','4','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(2027,'1000','41680592465','2023-04-04 10:14:27',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2028,'4000','41680592465','2023-04-04 10:14:27',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(2029,'1000','41680603463','2023-04-04 13:17:44',250.00,NULL,'','4','1','Good sold','1','','sales','','','No',NULL,NULL,''),(2030,'4000','41680603463','2023-04-04 13:17:44',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(2031,'1000','41680605495','2023-04-04 13:51:37',200.00,NULL,'','4','1','Good sold','1','','sales','','','No',NULL,NULL,''),(2032,'4000','41680605495','2023-04-04 13:51:37',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(2033,'1000','31680612723','2023-04-04 15:52:05',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2034,'4000','31680612723','2023-04-04 15:52:05',NULL,300.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(2035,'1000','41680615905','2023-04-04 16:45:12',700.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2036,'4000','41680615905','2023-04-04 16:45:12',NULL,300.00,'','4','1','Good sold','1','','sales','32','','No',NULL,NULL,''),(2037,'4000','41680615905','2023-04-04 16:45:05',NULL,400.00,'','4','1','Good sold','1','','sales','56','','No',NULL,NULL,''),(2038,'1000','31680618484','2023-04-04 17:28:09',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2039,'4000','31680618484','2023-04-04 17:28:09',NULL,200.00,'','3','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(2040,'4000','31680618484','2023-04-04 17:28:04',NULL,150.00,'','3','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(2041,'1000','31680625026','2023-04-04 19:17:08',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2042,'4000','31680625026','2023-04-04 19:17:08',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(2043,'1110','31680629159','2023-04-04 20:26:01',NULL,150.00,'','3','1','Inventory sold','1','','sales','55','','No',NULL,NULL,''),(2044,'5500','31680629159','2023-04-04 20:26:00',150.00,NULL,'','3','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2045,'1000','31680629159','2023-04-04 20:26:01',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2046,'4000','31680629159','2023-04-04 20:26:01',NULL,200.00,'','3','1','Good sold','1','','sales','55','','No',NULL,NULL,''),(2047,'1000','31680630235','2023-04-04 20:43:56',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2048,'4000','31680630235','2023-04-04 20:43:56',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(2049,'1000','31680634904','2023-04-04 22:01:46',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2050,'4000','31680634904','2023-04-04 22:01:46',NULL,300.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(2051,'1000','31680635776','2023-04-04 22:16:17',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2052,'4000','31680635776','2023-04-04 22:16:17',NULL,300.00,'','3','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(2053,'1000','31680678384','2023-04-05 10:06:26',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2054,'4000','31680678384','2023-04-05 10:06:26',NULL,150.00,'','3','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(2055,'1000','31680694755','2023-04-05 14:39:17',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2056,'4000','31680694755','2023-04-05 14:39:17',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2057,'1000','31680698943','2023-04-05 15:49:05',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2058,'4000','31680698943','2023-04-05 15:49:05',NULL,300.00,'','3','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(2059,'1000','31680698958','2023-04-05 15:49:20',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2060,'4000','31680698958','2023-04-05 15:49:20',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(2061,'1000','31680698971','2023-04-05 15:49:33',400.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2062,'4000','31680698971','2023-04-05 15:49:33',NULL,400.00,'','3','1','Good sold','1','','sales','36','','No',NULL,NULL,''),(2063,'1000','31680698985','2023-04-05 15:49:46',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2064,'4000','31680698985','2023-04-05 15:49:46',NULL,250.00,'','3','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(2065,'1000','31680701776','2023-04-05 16:36:17',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2066,'4000','31680701776','2023-04-05 16:36:17',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(2067,'1000','31680704909','2023-04-05 17:28:30',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2068,'4000','31680704909','2023-04-05 17:28:30',NULL,280.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(2069,'1000','31680706003','2023-04-05 17:46:44',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2070,'4000','31680706003','2023-04-05 17:46:44',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2071,'1000','31680706341','2023-04-05 17:52:23',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2072,'4000','31680706341','2023-04-05 17:52:23',NULL,300.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(2073,'1000','31680706395','2023-04-05 17:53:17',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2074,'4000','31680706395','2023-04-05 17:53:17',NULL,250.00,'','3','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(2075,'1000','31680707041','2023-04-05 18:04:02',330.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2076,'4000','31680707041','2023-04-05 18:04:02',NULL,330.00,'','3','1','Good sold','1','','sales','30','','No',NULL,NULL,''),(2077,'1000','31680708182','2023-04-05 18:23:04',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2078,'4000','31680708182','2023-04-05 18:23:04',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(2079,'1000','31680711881','2023-04-05 19:24:46',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2080,'4000','31680711881','2023-04-05 19:24:46',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(2081,'4000','31680711881','2023-04-05 19:24:41',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(2082,'1000','31680711898','2023-04-05 19:25:00',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2083,'4000','31680711898','2023-04-05 19:25:00',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(2084,'1000','31680711914','2023-04-05 19:25:16',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2085,'4000','31680711914','2023-04-05 19:25:16',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(2086,'1000','31680712116','2023-04-05 19:28:37',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2087,'4000','31680712116','2023-04-05 19:28:37',NULL,200.00,'','3','1','Good sold','1','','sales','15','','No',NULL,NULL,''),(2088,'1000','31680715772','2023-04-05 20:29:34',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2089,'4000','31680715772','2023-04-05 20:29:34',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(2090,'1000','31680720182','2023-04-05 21:43:03',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2091,'4000','31680720182','2023-04-05 21:43:03',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(2092,'1000','31680720514','2023-04-05 21:48:35',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2093,'4000','31680720514','2023-04-05 21:48:35',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(2094,'1000','31680780115','2023-04-06 14:21:56',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2095,'4000','31680780115','2023-04-06 14:21:56',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2096,'1000','31680780137','2023-04-06 14:22:19',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2097,'4000','31680780137','2023-04-06 14:22:19',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(2098,'1000','31680780159','2023-04-06 14:22:40',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2099,'4000','31680780159','2023-04-06 14:22:40',NULL,350.00,'','3','1','Good sold','1','','sales','54','','No',NULL,NULL,''),(2100,'1000','31680781980','2023-04-06 14:53:08',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2101,'4000','31680781980','2023-04-06 14:53:08',NULL,280.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(2102,'1000','41680789971','2023-04-06 17:06:13',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2103,'4000','41680789971','2023-04-06 17:06:13',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2104,'1000','41680789988','2023-04-06 17:06:30',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2105,'4000','41680789988','2023-04-06 17:06:30',NULL,150.00,'','4','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(2106,'1000','41680792736','2023-04-06 17:52:18',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2107,'4000','41680792736','2023-04-06 17:52:18',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2108,'1000','31680793516','2023-04-06 18:05:17',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2109,'4000','31680793516','2023-04-06 18:05:17',NULL,280.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(2110,'1000','31680794861','2023-04-06 18:27:43',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2111,'4000','31680794861','2023-04-06 18:27:43',NULL,200.00,'','3','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(2112,'1000','41680796736','2023-04-06 18:58:57',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2113,'4000','41680796736','2023-04-06 18:58:57',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(2114,'1000','41680800113','2023-04-06 19:55:14',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2115,'4000','41680800113','2023-04-06 19:55:14',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2116,'1000','41680800131','2023-04-06 19:55:33',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2117,'4000','41680800131','2023-04-06 19:55:33',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2118,'1000','41680801712','2023-04-06 20:21:53',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2119,'4000','41680801712','2023-04-06 20:21:53',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2120,'1000','41680802296','2023-04-06 20:31:37',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2121,'4000','41680802296','2023-04-06 20:31:37',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(2122,'1000','41680803025','2023-04-06 20:43:47',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2123,'4000','41680803025','2023-04-06 20:43:47',NULL,150.00,'','4','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(2124,'1000','41680803874','2023-04-06 20:57:55',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2125,'4000','41680803874','2023-04-06 20:57:55',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(2126,'1000','41680805032','2023-04-06 21:17:13',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2127,'4000','41680805032','2023-04-06 21:17:13',NULL,250.00,'','4','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(2128,'1000','41680805288','2023-04-06 21:21:30',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2129,'4000','41680805288','2023-04-06 21:21:30',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2130,'1000','41680808271','2023-04-06 22:11:12',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2131,'4000','41680808271','2023-04-06 22:11:12',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2132,'1000','41680847245','2023-04-07 09:00:47',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2133,'4000','41680847245','2023-04-07 09:00:47',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(2134,'1000','41680849857','2023-04-07 09:44:18',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2135,'4000','41680849857','2023-04-07 09:44:18',NULL,250.00,'','4','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(2136,'1000','41680849870','2023-04-07 09:44:31',100.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2137,'4000','41680849870','2023-04-07 09:44:31',NULL,100.00,'','4','1','Good sold','1','','sales','24','','No',NULL,NULL,''),(2138,'1000','31680854908','2023-04-07 11:08:30',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2139,'4000','31680854908','2023-04-07 11:08:30',NULL,350.00,'','3','1','Good sold','1','','sales','54','','No',NULL,NULL,''),(2140,'1000','41680857320','2023-04-07 11:48:42',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2141,'4000','41680857320','2023-04-07 11:48:42',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2142,'1000','41680866072','2023-04-07 14:14:34',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2143,'4000','41680866072','2023-04-07 14:14:34',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(2144,'1000','41680866089','2023-04-07 14:14:51',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2145,'4000','41680866089','2023-04-07 14:14:51',NULL,300.00,'','4','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(2146,'1000','41680867319','2023-04-07 14:35:21',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2147,'4000','41680867319','2023-04-07 14:35:21',NULL,150.00,'','4','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(2148,'1000','31680865986','2023-04-07 14:50:19',400.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2149,'4000','31680865986','2023-04-07 14:50:19',NULL,250.00,'','3','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(2150,'4000','31680865986','2023-04-07 14:13:06',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(2151,'1000','41680870073','2023-04-07 15:21:14',600.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2152,'4000','41680870073','2023-04-07 15:21:14',NULL,600.00,'','4','1','Good sold','1','','sales','40','','No',NULL,NULL,''),(2153,'1000','31680870978','2023-04-07 15:36:19',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2154,'4000','31680870978','2023-04-07 15:36:19',NULL,300.00,'','3','1','Good sold','1','','sales','32','','No',NULL,NULL,''),(2155,'1000','31680871063','2023-04-07 15:37:44',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2156,'4000','31680871063','2023-04-07 15:37:44',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2157,'1000','31680874366','2023-04-07 16:32:47',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2158,'4000','31680874366','2023-04-07 16:32:47',NULL,150.00,'','3','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(2159,'1000','41680874905','2023-04-07 16:41:46',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2160,'4000','41680874905','2023-04-07 16:41:46',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(2161,'1000','41680878299','2023-04-07 17:38:21',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2162,'4000','41680878299','2023-04-07 17:38:21',NULL,300.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(2163,'1000','41680880882','2023-04-07 18:21:24',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2164,'4000','41680880882','2023-04-07 18:21:24',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(2165,'1000','31680892831','2023-04-07 21:40:32',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2166,'4000','31680892831','2023-04-07 21:40:32',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(2167,'1000','31680892872','2023-04-07 21:41:14',600.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2168,'4000','31680892872','2023-04-07 21:41:14',NULL,600.00,'','3','1','Good sold','1','','sales','40','','No',NULL,NULL,''),(2169,'1000','41680894565','2023-04-07 22:09:27',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2170,'4000','41680894565','2023-04-07 22:09:27',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(2171,'1000','41680895162','2023-04-07 22:19:24',330.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2172,'4000','41680895162','2023-04-07 22:19:24',NULL,330.00,'','4','1','Good sold','1','','sales','30','','No',NULL,NULL,''),(2173,'1000','41680940042','2023-04-08 10:47:23',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2174,'4000','41680940042','2023-04-08 10:47:23',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(2175,'1000','41680940069','2023-04-08 10:47:51',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2176,'4000','41680940069','2023-04-08 10:47:51',NULL,300.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(2177,'1000','41680945732','2023-04-08 12:22:14',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2178,'4000','41680945732','2023-04-08 12:22:14',NULL,250.00,'','4','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(2179,'1000','41680949648','2023-04-08 13:27:29',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2180,'4000','41680949648','2023-04-08 13:27:29',NULL,200.00,'','4','1','Good sold','1','','sales','18','','No',NULL,NULL,''),(2181,'1000','41680950101','2023-04-08 13:35:03',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2182,'4000','41680950101','2023-04-08 13:35:03',NULL,250.00,'','4','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(2183,'1000','41680951842','2023-04-08 14:04:04',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2184,'4000','41680951842','2023-04-08 14:04:04',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(2185,'1000','41680951854','2023-04-08 14:04:15',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2186,'4000','41680951854','2023-04-08 14:04:15',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(2187,'1000','41680953715','2023-04-08 14:35:17',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2188,'4000','41680953715','2023-04-08 14:35:17',NULL,250.00,'','4','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(2189,'1000','41680956955','2023-04-08 15:29:16',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2190,'4000','41680956955','2023-04-08 15:29:16',NULL,150.00,'','4','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(2191,'1000','31680957583','2023-04-08 15:39:44',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2192,'4000','31680957583','2023-04-08 15:39:44',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(2193,'1000','31680957598','2023-04-08 15:39:59',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2194,'4000','31680957598','2023-04-08 15:39:59',NULL,200.00,'','3','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(2195,'1000','31680958110','2023-04-08 15:48:31',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2196,'4000','31680958110','2023-04-08 15:48:31',NULL,280.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(2197,'1000','31680960037','2023-04-08 16:21:04',550.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2198,'4000','31680960037','2023-04-08 16:21:04',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(2199,'4000','31680960037','2023-04-08 16:20:37',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2200,'1000','41680960818','2023-04-08 16:33:39',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2201,'4000','41680960818','2023-04-08 16:33:39',NULL,150.00,'','4','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(2202,'1000','41680964934','2023-04-08 17:42:15',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2203,'4000','41680964934','2023-04-08 17:42:15',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2204,'1000','31680968342','2023-04-08 18:43:08',1300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2205,'4000','31680968342','2023-04-08 18:43:08',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2206,'4000','31680968342','2023-04-08 18:39:02',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2207,'4000','31680968342','2023-04-08 18:39:06',NULL,200.00,'','3','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(2208,'4000','31680968342','2023-04-08 18:42:51',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(2209,'4000','31680968342','2023-04-08 18:42:56',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(2210,'1000','31680973470','2023-04-08 20:04:31',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2211,'4000','31680973470','2023-04-08 20:04:31',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(2212,'1000','31680976998','2023-04-08 21:03:20',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2213,'4000','31680976998','2023-04-08 21:03:20',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(2214,'1000','31680980047','2023-04-08 21:54:17',700.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2215,'4000','31680980047','2023-04-08 21:54:17',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2216,'4000','31680980047','2023-04-08 21:54:07',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2217,'1000','31680980305','2023-04-08 21:58:26',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2218,'4000','31680980305','2023-04-08 21:58:26',NULL,300.00,'','3','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(2219,'1000','31680980353','2023-04-08 21:59:15',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2220,'4000','31680980353','2023-04-08 21:59:15',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(2221,'1000','31680980454','2023-04-08 22:00:55',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2222,'4000','31680980454','2023-04-08 22:00:55',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(2223,'1000','31681034107','2023-04-09 12:55:08',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2224,'4000','31681034107','2023-04-09 12:55:08',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(2225,'1000','31681034124','2023-04-09 12:55:25',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2226,'4000','31681034124','2023-04-09 12:55:25',NULL,300.00,'','3','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(2227,'1000','31681037830','2023-04-09 13:57:12',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2228,'4000','31681037830','2023-04-09 13:57:12',NULL,150.00,'','3','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(2229,'1000','31681037889','2023-04-09 13:58:11',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2230,'4000','31681037889','2023-04-09 13:58:11',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2231,'1000','41681039363','2023-04-09 14:22:44',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2232,'4000','41681039363','2023-04-09 14:22:44',NULL,150.00,'','4','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(2233,'1000','41681041825','2023-04-09 15:03:46',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2234,'4000','41681041825','2023-04-09 15:03:46',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(2235,'1000','41681043951','2023-04-09 15:39:13',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2236,'4000','41681043951','2023-04-09 15:39:13',NULL,300.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(2237,'1000','41681049719','2023-04-09 17:15:21',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2238,'4000','41681049719','2023-04-09 17:15:21',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(2239,'1000','41681050679','2023-04-09 17:31:27',90.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2240,'4000','41681050679','2023-04-09 17:31:27',NULL,30.00,'','4','1','Good sold','1','','sales','58','','No',NULL,NULL,''),(2241,'4000','41681050679','2023-04-09 17:31:19',NULL,30.00,'','4','1','Good sold','1','','sales','58','','No',NULL,NULL,''),(2242,'4000','41681050679','2023-04-09 17:31:23',NULL,30.00,'','4','1','Good sold','1','','sales','58','','No',NULL,NULL,''),(2243,'1000','31681051996','2023-04-09 17:53:17',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2244,'4000','31681051996','2023-04-09 17:53:17',NULL,250.00,'','3','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(2245,'1000','41681052448','2023-04-09 18:00:49',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2246,'4000','41681052448','2023-04-09 18:00:49',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2247,'1000','41681062354','2023-04-09 20:46:33',480.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2248,'4000','41681062354','2023-04-09 20:46:33',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(2249,'4000','41681062354','2023-04-09 20:45:54',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(2250,'1000','41681062783','2023-04-09 20:53:04',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2251,'4000','41681062783','2023-04-09 20:53:04',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(2252,'1000','41681108415','2023-04-10 09:33:37',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2253,'4000','41681108415','2023-04-10 09:33:37',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(2254,'1000','41681108893','2023-04-10 09:41:34',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2255,'4000','41681108893','2023-04-10 09:41:34',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(2256,'1000','41681113163','2023-04-10 10:52:55',600.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2257,'4000','41681113163','2023-04-10 10:52:55',NULL,300.00,'','4','1','Good sold','1','','sales','33','','No',NULL,NULL,''),(2258,'4000','41681113163','2023-04-10 10:52:43',NULL,300.00,'','4','1','Good sold','1','','sales','29','','No',NULL,NULL,''),(2259,'1000','41681125583','2023-04-10 14:19:45',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2260,'4000','41681125583','2023-04-10 14:19:45',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(2261,'1000','41681134047','2023-04-10 16:40:48',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2262,'4000','41681134047','2023-04-10 16:40:48',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(2263,'1000','41681134730','2023-04-10 16:52:11',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2264,'4000','41681134730','2023-04-10 16:52:11',NULL,150.00,'','4','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(2265,'1000','41681137451','2023-04-10 17:37:40',600.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2266,'4000','41681137451','2023-04-10 17:37:40',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(2267,'4000','41681137451','2023-04-10 17:37:31',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(2268,'4000','41681137451','2023-04-10 17:37:35',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(2269,'1000','41681138613','2023-04-10 17:57:06',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2270,'4000','41681138613','2023-04-10 17:57:06',NULL,250.00,'','4','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(2271,'4000','41681138613','2023-04-10 17:56:53',NULL,100.00,'','4','1','Good sold','1','','sales','26','','No',NULL,NULL,''),(2272,'1000','41681139719','2023-04-10 18:15:20',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2273,'4000','41681139719','2023-04-10 18:15:20',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(2274,'1000','41681142647','2023-04-10 19:04:09',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2275,'4000','41681142647','2023-04-10 19:04:09',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(2276,'1000','41681201479','2023-04-11 11:24:57',880.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2277,'4000','41681201479','2023-04-11 11:24:57',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(2278,'4000','41681201479','2023-04-11 11:24:39',NULL,330.00,'','4','1','Good sold','1','','sales','30','','No',NULL,NULL,''),(2279,'4000','41681201479','2023-04-11 11:24:48',NULL,350.00,'','4','1','Good sold','1','','sales','57','','No',NULL,NULL,''),(2280,'1000','41681201933','2023-04-11 11:32:14',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2281,'4000','41681201933','2023-04-11 11:32:14',NULL,350.00,'','4','1','Good sold','1','','sales','57','','No',NULL,NULL,''),(2282,'1000','41681206681','2023-04-11 12:51:22',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2283,'4000','41681206681','2023-04-11 12:51:22',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(2284,'1000','41681216819','2023-04-11 15:40:21',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2285,'4000','41681216819','2023-04-11 15:40:21',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(2286,'1000','41681216958','2023-04-11 15:42:39',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2287,'4000','41681216958','2023-04-11 15:42:39',NULL,250.00,'','4','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(2288,'1000','41681217308','2023-04-11 15:48:31',580.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2289,'4000','41681217308','2023-04-11 15:48:31',NULL,300.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(2290,'4000','41681217308','2023-04-11 15:48:28',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(2291,'1000','41681219251','2023-04-11 16:20:53',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2292,'4000','41681219251','2023-04-11 16:20:53',NULL,300.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(2293,'1000','41681220014','2023-04-11 16:33:35',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2294,'4000','41681220014','2023-04-11 16:33:35',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(2295,'1000','31681221974','2023-04-11 17:06:16',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2296,'4000','31681221974','2023-04-11 17:06:16',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(2297,'1000','31681223952','2023-04-11 17:39:13',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2298,'4000','31681223952','2023-04-11 17:39:13',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(2299,'1000','41681226774','2023-04-11 18:26:16',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2300,'4000','41681226774','2023-04-11 18:26:16',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(2301,'1000','31681226814','2023-04-11 18:26:55',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2302,'4000','31681226814','2023-04-11 18:26:55',NULL,300.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(2303,'1000','31681230817','2023-04-11 19:33:39',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2304,'4000','31681230817','2023-04-11 19:33:39',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2305,'1000','31681233588','2023-04-11 20:19:49',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2306,'4000','31681233588','2023-04-11 20:19:49',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(2307,'1000','31681233653','2023-04-11 20:20:54',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2308,'4000','31681233653','2023-04-11 20:20:54',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(2309,'1000','31681235430','2023-04-11 20:50:31',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2310,'4000','31681235430','2023-04-11 20:50:31',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(2311,'1000','31681240071','2023-04-11 22:08:01',400.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2312,'4000','31681240071','2023-04-11 22:08:01',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(2313,'4000','31681240071','2023-04-11 22:07:51',NULL,200.00,'','3','1','Good sold','1','','sales','15','','No',NULL,NULL,''),(2314,'1000','31681241187','2023-04-11 22:26:32',600.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2315,'4000','31681241187','2023-04-11 22:26:32',NULL,300.00,'','3','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(2316,'4000','31681241187','2023-04-11 22:26:27',NULL,300.00,'','3','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(2317,'1000','31681241722','2023-04-11 22:35:23',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2318,'4000','31681241722','2023-04-11 22:35:23',NULL,300.00,'','3','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(2319,'1000','31681241759','2023-04-11 22:36:00',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2320,'4000','31681241759','2023-04-11 22:36:00',NULL,300.00,'','3','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(2321,'1000','31681241788','2023-04-11 22:36:41',500.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2322,'4000','31681241788','2023-04-11 22:36:41',NULL,300.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(2323,'4000','31681241788','2023-04-11 22:36:29',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(2324,'1000','31681293934','2023-04-12 13:05:39',400.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2325,'4000','31681293934','2023-04-12 13:05:39',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(2326,'4000','31681293934','2023-04-12 13:05:34',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(2327,'1000','31681294157','2023-04-12 13:09:18',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2328,'4000','31681294157','2023-04-12 13:09:18',NULL,300.00,'','3','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(2329,'1000','31681295372','2023-04-12 13:29:33',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2330,'4000','31681295372','2023-04-12 13:29:33',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(2331,'1000','31681296535','2023-04-12 13:48:57',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2332,'4000','31681296535','2023-04-12 13:48:57',NULL,250.00,'','3','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(2333,'1000','31681310302','2023-04-12 17:38:24',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2334,'4000','31681310302','2023-04-12 17:38:24',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(2335,'1000','31681310347','2023-04-12 17:39:09',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2336,'4000','31681310347','2023-04-12 17:39:09',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(2337,'1000','31681311388','2023-04-12 17:56:30',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2338,'4000','31681311388','2023-04-12 17:56:30',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(2339,'1000','31681311696','2023-04-12 18:01:38',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2340,'4000','31681311696','2023-04-12 18:01:38',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(2341,'1000','31681314209','2023-04-12 18:43:31',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2342,'4000','31681314209','2023-04-12 18:43:31',NULL,250.00,'','3','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(2343,'1000','31681315195','2023-04-12 19:00:26',550.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2344,'4000','31681315195','2023-04-12 19:00:26',NULL,350.00,'','3','1','Good sold','1','','sales','35','','No',NULL,NULL,''),(2345,'4000','31681315195','2023-04-12 18:59:55',NULL,200.00,'','3','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(2346,'1000','31681318079','2023-04-12 19:48:00',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2347,'4000','31681318079','2023-04-12 19:48:00',NULL,250.00,'','3','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(2348,'1000','31681319110','2023-04-12 20:05:12',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2349,'4000','31681319110','2023-04-12 20:05:12',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(2350,'1000','31681319122','2023-04-12 20:05:23',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2351,'4000','31681319122','2023-04-12 20:05:23',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2352,'1000','31681320064','2023-04-12 20:21:05',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2353,'4000','31681320064','2023-04-12 20:21:05',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(2354,'1000','31681324427','2023-04-12 21:33:48',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2355,'4000','31681324427','2023-04-12 21:33:48',NULL,250.00,'','3','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(2356,'1000','31681326603','2023-04-12 22:10:04',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2357,'4000','31681326603','2023-04-12 22:10:04',NULL,300.00,'','3','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(2358,'1000','31681376505','2023-04-13 12:01:47',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2359,'4000','31681376505','2023-04-13 12:01:47',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(2360,'1000','31681378784','2023-04-13 12:39:58',1050.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2361,'4000','31681378784','2023-04-13 12:39:58',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2362,'4000','31681378784','2023-04-13 12:39:44',NULL,350.00,'','3','1','Good sold','1','','sales','54','','No',NULL,NULL,''),(2363,'4000','31681378784','2023-04-13 12:39:52',NULL,350.00,'','3','1','Good sold','1','','sales','54','','No',NULL,NULL,''),(2364,'1000','31681378853','2023-04-13 12:40:54',400.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2365,'4000','31681378853','2023-04-13 12:40:54',NULL,400.00,'','3','1','Good sold','1','','sales','36','','No',NULL,NULL,''),(2366,'1000','31681385182','2023-04-13 14:26:23',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2367,'4000','31681385182','2023-04-13 14:26:23',NULL,300.00,'','3','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(2368,'1000','31681389277','2023-04-13 15:34:38',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2369,'4000','31681389277','2023-04-13 15:34:38',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(2370,'1000','41681393102','2023-04-13 16:38:23',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2371,'4000','41681393102','2023-04-13 16:38:23',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2372,'1000','41681396311','2023-04-13 17:31:53',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2373,'4000','41681396311','2023-04-13 17:31:53',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(2374,'1000','41681399036','2023-04-13 18:17:17',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2375,'4000','41681399036','2023-04-13 18:17:17',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2376,'1000','41681402127','2023-04-13 19:08:49',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2377,'4000','41681402127','2023-04-13 19:08:49',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2378,'1000','41681404408','2023-04-13 19:46:49',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2379,'4000','41681404408','2023-04-13 19:46:49',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(2380,'1000','41681408919','2023-04-13 21:02:00',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2381,'4000','41681408919','2023-04-13 21:02:00',NULL,150.00,'','4','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(2382,'1000','41681412225','2023-04-13 21:57:06',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2383,'4000','41681412225','2023-04-13 21:57:06',NULL,150.00,'','4','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(2384,'1000','41681412314','2023-04-13 21:58:36',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2385,'4000','41681412314','2023-04-13 21:58:36',NULL,250.00,'','4','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(2386,'1000','41681413041','2023-04-13 22:10:42',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2387,'4000','41681413041','2023-04-13 22:10:42',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(2388,'1000','41681454375','2023-04-14 09:39:36',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2389,'4000','41681454375','2023-04-14 09:39:36',NULL,150.00,'','4','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(2390,'1000','41681456492','2023-04-14 10:14:53',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2391,'4000','41681456492','2023-04-14 10:14:53',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(2392,'1000','41681457286','2023-04-14 10:28:08',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2393,'4000','41681457286','2023-04-14 10:28:08',NULL,150.00,'','4','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(2394,'1000','41681471046','2023-04-14 14:17:28',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2395,'4000','41681471046','2023-04-14 14:17:28',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2396,'1000','31681479950','2023-04-14 16:45:56',600.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2397,'4000','31681479950','2023-04-14 16:45:56',NULL,300.00,'','3','1','Good sold','1','','sales','32','','No',NULL,NULL,''),(2398,'4000','31681479950','2023-04-14 16:45:50',NULL,300.00,'','3','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(2399,'1000','31681480039','2023-04-14 16:47:24',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2400,'4000','31681480039','2023-04-14 16:47:24',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(2401,'4000','31681480039','2023-04-14 16:47:20',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(2402,'1000','31681482410','2023-04-14 17:26:51',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2403,'4000','31681482410','2023-04-14 17:26:51',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(2404,'1000','31681482464','2023-04-14 17:27:46',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2405,'4000','31681482464','2023-04-14 17:27:46',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(2406,'1000','31681483063','2023-04-14 17:37:45',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2407,'4000','31681483063','2023-04-14 17:37:45',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(2408,'1000','41681484607','2023-04-14 18:03:29',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2409,'4000','41681484607','2023-04-14 18:03:29',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(2410,'1000','41681485122','2023-04-14 18:12:04',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2411,'4000','41681485122','2023-04-14 18:12:04',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(2412,'1000','41681486215','2023-04-14 18:30:17',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2413,'4000','41681486215','2023-04-14 18:30:17',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2414,'1000','41681487228','2023-04-14 18:47:09',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2415,'4000','41681487228','2023-04-14 18:47:09',NULL,200.00,'','4','1','Good sold','1','','sales','9','','No',NULL,NULL,''),(2416,'1000','41681488215','2023-04-14 19:03:36',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2417,'4000','41681488215','2023-04-14 19:03:36',NULL,150.00,'','4','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(2418,'1000','41681488235','2023-04-14 19:03:56',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2419,'4000','41681488235','2023-04-14 19:03:56',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(2420,'1000','41681488497','2023-04-14 19:08:18',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2421,'4000','41681488497','2023-04-14 19:08:18',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(2422,'1000','31681489889','2023-04-14 19:31:31',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2423,'4000','31681489889','2023-04-14 19:31:31',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(2424,'1000','31681489921','2023-04-14 19:32:03',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2425,'4000','31681489921','2023-04-14 19:32:03',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(2426,'1000','31681490464','2023-04-14 19:41:05',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2427,'4000','31681490464','2023-04-14 19:41:05',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(2428,'1000','41681490528','2023-04-14 19:42:12',700.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2429,'4000','41681490528','2023-04-14 19:42:12',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2430,'4000','41681490528','2023-04-14 19:42:08',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2431,'1000','31681497866','2023-04-14 21:44:28',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2432,'4000','31681497866','2023-04-14 21:44:28',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2433,'1000','31681498469','2023-04-14 21:54:31',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2434,'4000','31681498469','2023-04-14 21:54:31',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(2435,'1000','31681500297','2023-04-14 22:24:58',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2436,'4000','31681500297','2023-04-14 22:24:58',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2437,'1000','31681501080','2023-04-14 22:38:05',560.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2438,'4000','31681501080','2023-04-14 22:38:05',NULL,280.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(2439,'4000','31681501080','2023-04-14 22:38:01',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(2440,'1000','41681537605','2023-04-15 08:46:47',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2441,'4000','41681537605','2023-04-15 08:46:47',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(2442,'1000','41681537619','2023-04-15 08:47:01',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2443,'4000','41681537619','2023-04-15 08:47:01',NULL,150.00,'','4','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(2444,'1000','41681540077','2023-04-15 09:27:58',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2445,'4000','41681540077','2023-04-15 09:27:58',NULL,150.00,'','4','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(2446,'1000','41681543775','2023-04-15 10:29:36',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2447,'4000','41681543775','2023-04-15 10:29:36',NULL,150.00,'','4','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(2448,'1000','41681545777','2023-04-15 11:02:58',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2449,'4000','41681545777','2023-04-15 11:02:58',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(2450,'1000','41681545794','2023-04-15 11:03:15',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2451,'4000','41681545794','2023-04-15 11:03:15',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(2452,'1000','41681545806','2023-04-15 11:03:27',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2453,'4000','41681545806','2023-04-15 11:03:27',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(2454,'1000','41681545984','2023-04-15 11:06:25',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2455,'4000','41681545984','2023-04-15 11:06:25',NULL,150.00,'','4','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(2456,'1000','41681552186','2023-04-15 12:49:47',600.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2457,'4000','41681552186','2023-04-15 12:49:47',NULL,600.00,'','4','1','Good sold','1','','sales','40','','No',NULL,NULL,''),(2458,'1000','41681552210','2023-04-15 12:50:11',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2459,'4000','41681552210','2023-04-15 12:50:11',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(2460,'1000','41681554899','2023-04-15 13:35:00',600.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2461,'4000','41681554899','2023-04-15 13:35:00',NULL,600.00,'','4','1','Good sold','1','','sales','66','','No',NULL,NULL,''),(2462,'1000','31681560915','2023-04-15 15:15:17',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2463,'4000','31681560915','2023-04-15 15:15:17',NULL,200.00,'','3','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(2464,'1000','31681567304','2023-04-15 17:01:55',700.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2465,'4000','31681567304','2023-04-15 17:01:55',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2466,'4000','31681567304','2023-04-15 17:01:45',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2467,'1000','41681570122','2023-04-15 17:48:44',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2468,'4000','41681570122','2023-04-15 17:48:44',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2469,'1000','41681570671','2023-04-15 17:57:53',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2470,'4000','41681570671','2023-04-15 17:57:53',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(2471,'1000','41681571562','2023-04-15 18:12:50',500.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2472,'4000','41681571562','2023-04-15 18:12:50',NULL,250.00,'','4','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(2473,'4000','41681571562','2023-04-15 18:12:43',NULL,250.00,'','4','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(2474,'1000','31681572073','2023-04-15 18:21:15',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2476,'1000','31681572073','2023-04-15 18:21:15',430.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2477,'4000','31681572073','2023-04-15 18:21:15',NULL,150.00,'','3','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(2478,'4000','31681572073','2023-04-15 18:21:13',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(2479,'1000','31681574175','2023-04-15 18:56:16',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2480,'4000','31681574175','2023-04-15 18:56:16',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(2481,'1000','31681574260','2023-04-15 18:57:41',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2482,'4000','31681574260','2023-04-15 18:57:41',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(2483,'1000','31681575983','2023-04-15 19:26:24',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2484,'4000','31681575983','2023-04-15 19:26:24',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2485,'1000','31681577485','2023-04-15 19:51:27',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2486,'4000','31681577485','2023-04-15 19:51:27',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2487,'1000','31681580466','2023-04-15 20:41:07',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2488,'4000','31681580466','2023-04-15 20:41:07',NULL,250.00,'','3','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(2489,'1000','31681581154','2023-04-15 20:52:35',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2490,'4000','31681581154','2023-04-15 20:52:35',NULL,300.00,'','3','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(2491,'1000','31681581205','2023-04-15 20:53:27',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2492,'4000','31681581205','2023-04-15 20:53:27',NULL,250.00,'','3','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(2493,'1000','31681581335','2023-04-15 20:55:36',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2494,'4000','31681581335','2023-04-15 20:55:36',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(2495,'1000','31681584350','2023-04-15 21:45:55',700.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2496,'4000','31681584350','2023-04-15 21:45:55',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2497,'4000','31681584350','2023-04-15 21:45:50',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2498,'1000','31681639726','2023-04-16 13:08:48',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2499,'4000','31681639726','2023-04-16 13:08:48',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2500,'1000','31681647762','2023-04-16 15:22:44',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2501,'4000','31681647762','2023-04-16 15:22:44',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(2502,'1000','31681647809','2023-04-16 15:23:30',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2503,'4000','31681647809','2023-04-16 15:23:30',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(2504,'1000','31681649618','2023-04-16 15:53:47',500.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2505,'4000','31681649618','2023-04-16 15:53:47',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(2506,'4000','31681649618','2023-04-16 15:53:38',NULL,300.00,'','3','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(2507,'1000','41681656536','2023-04-16 17:48:58',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2508,'4000','41681656536','2023-04-16 17:48:58',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(2509,'1000','41681661115','2023-04-16 19:05:16',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2510,'4000','41681661115','2023-04-16 19:05:16',NULL,150.00,'','4','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(2511,'1000','41681664243','2023-04-16 19:57:25',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2512,'4000','41681664243','2023-04-16 19:57:25',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2513,'1000','41681664267','2023-04-16 19:57:48',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2514,'4000','41681664267','2023-04-16 19:57:48',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(2515,'1000','41681665450','2023-04-16 20:17:31',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2516,'4000','41681665450','2023-04-16 20:17:31',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(2517,'1000','41681667634','2023-04-16 20:53:56',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2518,'4000','41681667634','2023-04-16 20:53:56',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(2519,'1000','41681667649','2023-04-16 20:54:11',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2520,'4000','41681667649','2023-04-16 20:54:11',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(2521,'1110','41681667826','2023-04-16 20:57:07',NULL,70.00,'','4','1','Inventory sold','1','','sales','60','','No',NULL,NULL,''),(2522,'5500','41681667826','2023-04-16 20:57:06',70.00,NULL,'','4','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2523,'1000','41681667826','2023-04-16 20:57:07',100.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2524,'4000','41681667826','2023-04-16 20:57:07',NULL,100.00,'','4','1','Good sold','1','','sales','60','','No',NULL,NULL,''),(2525,'1000','41681671136','2023-04-16 21:52:44',1030.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2526,'4000','41681671136','2023-04-16 21:52:44',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(2527,'4000','41681671136','2023-04-16 21:52:16',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(2528,'4000','41681671136','2023-04-16 21:52:23',NULL,250.00,'','4','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(2529,'4000','41681671136','2023-04-16 21:52:31',NULL,200.00,'','4','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(2530,'1000','41681715289','2023-04-17 10:08:11',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2531,'4000','41681715289','2023-04-17 10:08:11',NULL,280.00,'','4','1','Good sold','1','','sales','6','','No',NULL,NULL,''),(2532,'1000','41681715306','2023-04-17 10:08:27',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2533,'4000','41681715306','2023-04-17 10:08:27',NULL,350.00,'','4','1','Good sold','1','','sales','54','','No',NULL,NULL,''),(2534,'1000','41681718437','2023-04-17 11:00:38',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2535,'4000','41681718437','2023-04-17 11:00:38',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2536,'1000','41681723626','2023-04-17 12:27:08',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2537,'4000','41681723626','2023-04-17 12:27:08',NULL,150.00,'','4','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(2538,'1000','41681723647','2023-04-17 12:27:29',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2539,'4000','41681723647','2023-04-17 12:27:29',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(2540,'1000','41681723672','2023-04-17 12:27:53',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2541,'4000','41681723672','2023-04-17 12:27:53',NULL,250.00,'','4','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(2542,'1000','41681723701','2023-04-17 12:28:22',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2543,'4000','41681723701','2023-04-17 12:28:22',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(2544,'1000','41681724376','2023-04-17 12:39:50',450.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2545,'4000','41681724376','2023-04-17 12:39:50',NULL,150.00,'','4','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(2546,'4000','41681724376','2023-04-17 12:39:36',NULL,150.00,'','4','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(2547,'4000','41681724376','2023-04-17 12:39:40',NULL,150.00,'','4','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(2548,'1000','41681732783','2023-04-17 14:59:45',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2549,'4000','41681732783','2023-04-17 14:59:45',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(2550,'1000','41681739687','2023-04-17 16:54:49',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2551,'4000','41681739687','2023-04-17 16:54:49',NULL,250.00,'','4','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(2552,'1000','41681741341','2023-04-17 17:22:23',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2553,'4000','41681741341','2023-04-17 17:22:23',NULL,300.00,'','4','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(2554,'1000','41681743739','2023-04-17 18:02:26',530.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2555,'4000','41681743739','2023-04-17 18:02:26',NULL,250.00,'','4','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(2556,'4000','41681743739','2023-04-17 18:02:19',NULL,280.00,'','4','1','Good sold','1','','sales','6','','No',NULL,NULL,''),(2557,'1000','41681745748','2023-04-17 18:35:50',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2558,'4000','41681745748','2023-04-17 18:35:50',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(2559,'1000','41681746974','2023-04-17 18:56:15',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2560,'4000','41681746974','2023-04-17 18:56:15',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(2561,'1000','41681746987','2023-04-17 18:56:29',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2562,'4000','41681746987','2023-04-17 18:56:29',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2563,'1000','41681748236','2023-04-17 19:17:17',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2564,'4000','41681748236','2023-04-17 19:17:17',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2565,'1000','41681748259','2023-04-17 19:17:41',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2566,'4000','41681748259','2023-04-17 19:17:41',NULL,250.00,'','4','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(2567,'1000','41681805416','2023-04-18 11:10:17',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2568,'4000','41681805416','2023-04-18 11:10:17',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2569,'1000','41681805433','2023-04-18 11:10:34',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2570,'4000','41681805433','2023-04-18 11:10:34',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(2571,'1000','41681805538','2023-04-18 11:12:19',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2572,'4000','41681805538','2023-04-18 11:12:19',NULL,150.00,'','4','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(2573,'1000','41681806991','2023-04-18 11:36:32',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2574,'4000','41681806991','2023-04-18 11:36:32',NULL,300.00,'','4','1','Good sold','1','','sales','29','','No',NULL,NULL,''),(2575,'1000','41681807767','2023-04-18 11:49:28',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2576,'4000','41681807767','2023-04-18 11:49:28',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(2577,'1000','41681811503','2023-04-18 12:51:44',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2578,'4000','41681811503','2023-04-18 12:51:44',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(2579,'1000','41681816109','2023-04-18 14:08:30',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2580,'4000','41681816109','2023-04-18 14:08:30',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2581,'1000','31681822226','2023-04-18 15:50:27',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2582,'4000','31681822226','2023-04-18 15:50:27',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2583,'1000','41681825928','2023-04-18 16:52:09',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2584,'4000','41681825928','2023-04-18 16:52:09',NULL,400.00,'','4','1','Good sold','1','','sales','36','','No',NULL,NULL,''),(2585,'1000','41681825950','2023-04-18 16:52:31',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2586,'4000','41681825950','2023-04-18 16:52:31',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2587,'1000','31681828580','2023-04-18 17:36:22',400.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2588,'4000','31681828580','2023-04-18 17:36:22',NULL,400.00,'','3','1','Good sold','1','','sales','36','','No',NULL,NULL,''),(2589,'1000','31681829989','2023-04-18 18:00:46',730.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2590,'4000','31681829989','2023-04-18 18:00:46',NULL,280.00,'','3','1','Good sold','1','','sales','13','','No',NULL,NULL,''),(2591,'4000','31681829989','2023-04-18 17:59:49',NULL,100.00,'','3','1','Good sold','1','','sales','24','','No',NULL,NULL,''),(2592,'4000','31681829989','2023-04-18 18:00:00',NULL,350.00,'','3','1','Good sold','1','','sales','57','','No',NULL,NULL,''),(2593,'1000','41681830736','2023-04-18 18:12:18',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2594,'4000','41681830736','2023-04-18 18:12:18',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(2595,'1000','41681830951','2023-04-18 18:15:52',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2596,'4000','41681830951','2023-04-18 18:15:52',NULL,250.00,'','4','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(2597,'1000','31681833144','2023-04-18 18:52:51',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2598,'4000','31681833144','2023-04-18 18:52:51',NULL,250.00,'','3','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(2599,'4000','31681833144','2023-04-18 18:52:24',NULL,100.00,'','3','1','Good sold','1','','sales','27','','No',NULL,NULL,''),(2600,'1000','31681836008','2023-04-18 19:40:10',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2601,'4000','31681836008','2023-04-18 19:40:10',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2602,'1000','31681836028','2023-04-18 19:40:36',700.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2603,'4000','31681836028','2023-04-18 19:40:36',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2604,'4000','31681836028','2023-04-18 19:40:28',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2605,'1000','31681836648','2023-04-18 19:50:50',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2606,'4000','31681836648','2023-04-18 19:50:50',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(2607,'1000','31681837627','2023-04-18 20:07:09',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2608,'4000','31681837627','2023-04-18 20:07:09',NULL,300.00,'','3','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(2609,'1000','31681838270','2023-04-18 20:17:52',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2610,'4000','31681838270','2023-04-18 20:17:52',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(2611,'1000','31681842415','2023-04-18 21:26:57',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2612,'4000','31681842415','2023-04-18 21:26:57',NULL,300.00,'','3','1','Good sold','1','','sales','39','','No',NULL,NULL,''),(2613,'1110','31681842436','2023-04-18 21:27:18',NULL,150.00,'','3','1','Inventory sold','1','','sales','53','','No',NULL,NULL,''),(2614,'5500','31681842436','2023-04-18 21:27:16',150.00,NULL,'','3','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2615,'1000','31681842436','2023-04-18 21:27:18',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2616,'4000','31681842436','2023-04-18 21:27:18',NULL,200.00,'','3','1','Good sold','1','','sales','53','','No',NULL,NULL,''),(2617,'1000','31681844526','2023-04-18 22:02:08',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2618,'4000','31681844526','2023-04-18 22:02:08',NULL,250.00,'','3','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(2619,'1000','31681890449','2023-04-19 10:47:31',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2620,'4000','31681890449','2023-04-19 10:47:31',NULL,300.00,'','3','1','Good sold','1','','sales','39','','No',NULL,NULL,''),(2621,'1000','31681890467','2023-04-19 10:47:48',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2622,'4000','31681890467','2023-04-19 10:47:48',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(2623,'1000','31681890483','2023-04-19 10:48:05',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2624,'4000','31681890483','2023-04-19 10:48:05',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(2625,'1000','31681914374','2023-04-19 17:26:15',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2626,'4000','31681914374','2023-04-19 17:26:15',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(2627,'1000','31681914630','2023-04-19 17:30:32',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2628,'4000','31681914630','2023-04-19 17:30:32',NULL,250.00,'','3','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(2629,'1000','31681916872','2023-04-19 18:07:53',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2630,'4000','31681916872','2023-04-19 18:07:53',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(2631,'1000','31681916886','2023-04-19 18:08:07',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2632,'4000','31681916886','2023-04-19 18:08:07',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2633,'1000','31681918532','2023-04-19 18:35:34',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2634,'4000','31681918532','2023-04-19 18:35:34',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(2635,'1000','31681918564','2023-04-19 18:36:05',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2636,'4000','31681918564','2023-04-19 18:36:05',NULL,250.00,'','3','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(2637,'1000','31681919213','2023-04-19 18:46:55',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2639,'1000','31681919781','2023-04-19 18:56:22',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2640,'4000','31681919781','2023-04-19 18:56:22',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(2641,'1000','31681919820','2023-04-19 18:57:02',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2642,'4000','31681919820','2023-04-19 18:57:02',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2643,'1000','31681919213','2023-04-19 18:46:55',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2644,'4000','31681919213','2023-04-19 18:46:55',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(2645,'4000','31681919213','2023-04-19 18:46:53',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(2646,'1000','31681922215','2023-04-19 19:36:56',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2647,'4000','31681922215','2023-04-19 19:36:56',NULL,250.00,'','3','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(2648,'1000','31681923753','2023-04-19 20:02:34',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2649,'4000','31681923753','2023-04-19 20:02:34',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(2650,'1000','31681926602','2023-04-19 20:50:04',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2651,'4000','31681926602','2023-04-19 20:50:04',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(2652,'1000','31681930247','2023-04-19 21:50:48',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2653,'4000','31681930247','2023-04-19 21:50:48',NULL,250.00,'','3','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(2654,'1000','31681974890','2023-04-20 10:14:51',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2655,'4000','31681974890','2023-04-20 10:14:51',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(2656,'1000','31681982844','2023-04-20 12:27:25',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2657,'4000','31681982844','2023-04-20 12:27:25',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(2658,'1000','31681982859','2023-04-20 12:27:40',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2659,'4000','31681982859','2023-04-20 12:27:40',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(2660,'1000','41681998135','2023-04-20 16:42:17',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2661,'4000','41681998135','2023-04-20 16:42:17',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(2662,'1000','41681998164','2023-04-20 16:42:45',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2663,'4000','41681998164','2023-04-20 16:42:45',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2664,'1000','41682000583','2023-04-20 17:23:04',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2665,'4000','41682000583','2023-04-20 17:23:04',NULL,350.00,'','4','1','Good sold','1','','sales','54','','No',NULL,NULL,''),(2666,'1000','41682000602','2023-04-20 17:23:23',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2667,'4000','41682000602','2023-04-20 17:23:23',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(2668,'1000','31682002075','2023-04-20 17:48:11',1000.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2669,'4000','31682002075','2023-04-20 17:48:11',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2670,'4000','31682002075','2023-04-20 17:47:55',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2671,'4000','31682002075','2023-04-20 17:47:59',NULL,300.00,'','3','1','Good sold','1','','sales','32','','No',NULL,NULL,''),(2672,'1000','41682004183','2023-04-20 18:23:04',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2673,'4000','41682004183','2023-04-20 18:23:04',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(2674,'1000','41682008357','2023-04-20 19:32:39',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2675,'4000','41682008357','2023-04-20 19:32:39',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(2676,'1000','41682009604','2023-04-20 19:53:25',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2677,'4000','41682009604','2023-04-20 19:53:25',NULL,250.00,'','4','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(2678,'1000','41682010592','2023-04-20 20:09:53',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2679,'4000','41682010592','2023-04-20 20:09:53',NULL,280.00,'','4','1','Good sold','1','','sales','6','','No',NULL,NULL,''),(2680,'1000','41682011048','2023-04-20 20:17:29',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2681,'4000','41682011048','2023-04-20 20:17:29',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(2682,'1000','41682014890','2023-04-20 21:21:31',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2683,'4000','41682014890','2023-04-20 21:21:31',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(2684,'1110','41682068217','2023-04-21 12:10:37',NULL,600.00,'','4','1','Inventory sold','1','','sales','67','','No',NULL,NULL,''),(2685,'5500','41682068217','2023-04-21 12:10:17',600.00,NULL,'','4','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(2686,'1000','41682068217','2023-04-21 12:10:37',800.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2687,'4000','41682068217','2023-04-21 12:10:37',NULL,800.00,'','4','1','Good sold','1','','sales','67','','No',NULL,NULL,''),(2688,'1000','41682068250','2023-04-21 12:10:51',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2689,'4000','41682068250','2023-04-21 12:10:51',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2690,'1000','41682068274','2023-04-21 12:11:15',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2691,'4000','41682068274','2023-04-21 12:11:15',NULL,350.00,'','4','1','Good sold','1','','sales','54','','No',NULL,NULL,''),(2692,'1000','31682068625','2023-04-21 12:17:07',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2693,'4000','31682068625','2023-04-21 12:17:07',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(2694,'1000','31682076615','2023-04-21 14:30:16',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2695,'4000','31682076615','2023-04-21 14:30:16',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(2696,'1000','41682076748','2023-04-21 14:32:30',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2697,'4000','41682076748','2023-04-21 14:32:30',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2698,'1000','31682077535','2023-04-21 14:45:36',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2699,'4000','31682077535','2023-04-21 14:45:36',NULL,200.00,'','3','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(2700,'1000','41682077742','2023-04-21 14:49:03',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2701,'4000','41682077742','2023-04-21 14:49:03',NULL,300.00,'','4','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(2702,'1000','41682079669','2023-04-21 15:21:10',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2703,'4000','41682079669','2023-04-21 15:21:10',NULL,300.00,'','4','1','Good sold','1','','sales','33','','No',NULL,NULL,''),(2704,'1000','31682082351','2023-04-21 16:05:53',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2705,'4000','31682082351','2023-04-21 16:05:53',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2706,'1000','31682082389','2023-04-21 16:06:31',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2707,'4000','31682082389','2023-04-21 16:06:31',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(2708,'1000','41682088560','2023-04-21 17:49:22',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2709,'4000','41682088560','2023-04-21 17:49:22',NULL,250.00,'','4','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(2710,'1000','41682089597','2023-04-21 18:06:38',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2711,'4000','41682089597','2023-04-21 18:06:38',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(2712,'1000','31682092283','2023-04-21 18:51:33',180.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2715,'1000','31682092283','2023-04-21 18:51:33',380.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2716,'4000','31682092283','2023-04-21 18:51:33',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(2717,'4000','31682092283','2023-04-21 18:51:23',NULL,30.00,'','3','1','Good sold','1','','sales','58','','No',NULL,NULL,''),(2718,'4000','31682092283','2023-04-21 18:51:31',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(2719,'1000','41682094617','2023-04-21 19:30:19',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2720,'4000','41682094617','2023-04-21 19:30:19',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(2721,'1000','41682095707','2023-04-21 19:48:29',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2722,'4000','41682095707','2023-04-21 19:48:29',NULL,150.00,'','4','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(2723,'1000','41682097174','2023-04-21 20:12:56',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2724,'4000','41682097174','2023-04-21 20:12:56',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(2725,'1000','31682102011','2023-04-21 21:33:32',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2726,'4000','31682102011','2023-04-21 21:33:32',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(2727,'1000','31682106244','2023-04-21 22:44:05',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2728,'4000','31682106244','2023-04-21 22:44:05',NULL,150.00,'','3','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(2729,'1000','31682106920','2023-04-21 22:55:22',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2730,'4000','31682106920','2023-04-21 22:55:22',NULL,300.00,'','3','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(2731,'1000','31682106984','2023-04-21 22:56:25',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2732,'4000','31682106984','2023-04-21 22:56:25',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(2733,'1000','31682107008','2023-04-21 22:56:49',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2734,'4000','31682107008','2023-04-21 22:56:49',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(2735,'1000','31682107028','2023-04-21 22:57:09',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2736,'4000','31682107028','2023-04-21 22:57:09',NULL,300.00,'','3','1','Good sold','1','','sales','39','','No',NULL,NULL,''),(2737,'1000','41682146729','2023-04-22 09:58:50',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2738,'4000','41682146729','2023-04-22 09:58:50',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(2739,'1000','41682153239','2023-04-22 11:47:21',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2740,'4000','41682153239','2023-04-22 11:47:21',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(2741,'1000','41682156248','2023-04-22 12:37:40',700.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2742,'4000','41682156248','2023-04-22 12:37:40',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2743,'4000','41682156248','2023-04-22 12:37:28',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2744,'1000','41682156273','2023-04-22 12:37:58',700.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2745,'4000','41682156273','2023-04-22 12:37:58',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2746,'4000','41682156273','2023-04-22 12:37:53',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2747,'1000','41682156890','2023-04-22 12:48:12',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2748,'4000','41682156890','2023-04-22 12:48:12',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(2749,'1000','41682157547','2023-04-22 12:59:17',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2750,'4000','41682157547','2023-04-22 12:59:17',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(2751,'1000','41682157584','2023-04-22 12:59:46',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2752,'4000','41682157584','2023-04-22 12:59:46',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(2753,'1000','41682162335','2023-04-22 14:18:56',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2754,'4000','41682162335','2023-04-22 14:18:56',NULL,250.00,'','4','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(2755,'1000','41682163134','2023-04-22 14:32:15',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2756,'4000','41682163134','2023-04-22 14:32:15',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2757,'1000','41682164808','2023-04-22 15:00:10',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2758,'4000','41682164808','2023-04-22 15:00:10',NULL,250.00,'','4','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(2759,'1000','41682164836','2023-04-22 15:00:38',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2760,'4000','41682164836','2023-04-22 15:00:38',NULL,250.00,'','4','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(2761,'1000','41682166944','2023-04-22 15:35:46',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2762,'4000','41682166944','2023-04-22 15:35:46',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(2763,'1000','31682167469','2023-04-22 15:44:30',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2764,'4000','31682167469','2023-04-22 15:44:30',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(2765,'1000','31682169113','2023-04-22 16:11:55',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2766,'4000','31682169113','2023-04-22 16:11:55',NULL,300.00,'','3','1','Good sold','1','','sales','33','','No',NULL,NULL,''),(2767,'1000','41682169327','2023-04-22 16:15:28',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2768,'4000','41682169327','2023-04-22 16:15:28',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(2769,'1000','31682169379','2023-04-22 16:16:21',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2770,'4000','31682169379','2023-04-22 16:16:21',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(2771,'1000','31682169963','2023-04-22 16:26:05',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2772,'4000','31682169963','2023-04-22 16:26:05',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(2773,'1000','41682170421','2023-04-22 16:33:43',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2774,'4000','41682170421','2023-04-22 16:33:43',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(2775,'1000','31682171183','2023-04-22 16:46:25',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2776,'4000','31682171183','2023-04-22 16:46:25',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2777,'1000','41682171374','2023-04-22 16:49:36',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2778,'4000','41682171374','2023-04-22 16:49:36',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(2779,'1000','41682171393','2023-04-22 16:49:54',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2780,'4000','41682171393','2023-04-22 16:49:54',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(2781,'1000','41682174020','2023-04-22 17:33:41',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2782,'4000','41682174020','2023-04-22 17:33:41',NULL,150.00,'','4','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(2783,'1000','31682174103','2023-04-22 17:35:04',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2784,'4000','31682174103','2023-04-22 17:35:04',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(2785,'1000','41682174884','2023-04-22 17:48:05',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2786,'4000','41682174884','2023-04-22 17:48:05',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(2787,'1000','41682176017','2023-04-22 18:06:58',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2788,'4000','41682176017','2023-04-22 18:06:58',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(2789,'1000','31682179291','2023-04-22 19:01:41',450.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2790,'4000','31682179291','2023-04-22 19:01:41',NULL,150.00,'','3','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(2791,'4000','31682179291','2023-04-22 19:01:31',NULL,150.00,'','3','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(2792,'4000','31682179291','2023-04-22 19:01:36',NULL,150.00,'','3','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(2793,'1000','31682179499','2023-04-22 19:05:13',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2794,'4000','31682179499','2023-04-22 19:05:13',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(2795,'1000','31682179529','2023-04-22 19:05:31',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2796,'4000','31682179529','2023-04-22 19:05:31',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(2797,'1000','31682180426','2023-04-22 19:20:27',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2798,'4000','31682180426','2023-04-22 19:20:27',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(2799,'1000','31682180879','2023-04-22 19:28:00',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2800,'4000','31682180879','2023-04-22 19:28:00',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(2801,'1000','31682182197','2023-04-22 19:49:58',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2802,'4000','31682182197','2023-04-22 19:49:58',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2803,'1000','31682192080','2023-04-22 22:34:41',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2804,'4000','31682192080','2023-04-22 22:34:41',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(2805,'1000','31682192091','2023-04-22 22:34:52',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2806,'4000','31682192091','2023-04-22 22:34:52',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2807,'1000','31682192347','2023-04-22 22:39:09',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2808,'4000','31682192347','2023-04-22 22:39:09',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(2809,'1000','31682194654','2023-04-22 23:17:35',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2810,'4000','31682194654','2023-04-22 23:17:35',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2811,'1000','31682196465','2023-04-22 23:47:47',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2812,'4000','31682196465','2023-04-22 23:47:47',NULL,250.00,'','3','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(2813,'1000','31682196482','2023-04-22 23:48:03',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2814,'4000','31682196482','2023-04-22 23:48:03',NULL,300.00,'','3','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(2815,'1000','31682238328','2023-04-23 11:40:21',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2816,'4000','31682238328','2023-04-23 11:40:21',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(2817,'1000','31682239303','2023-04-23 11:41:56',180.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2818,'4000','31682239303','2023-04-23 11:41:56',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(2819,'4000','31682239303','2023-04-23 11:41:43',NULL,30.00,'','3','1','Good sold','1','','sales','58','','No',NULL,NULL,''),(2820,'1000','31682243457','2023-04-23 12:51:04',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2821,'4000','31682243457','2023-04-23 12:51:04',NULL,150.00,'','3','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(2822,'4000','31682243457','2023-04-23 12:50:57',NULL,150.00,'','3','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(2823,'1000','31682247768','2023-04-23 14:02:50',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2824,'4000','31682247768','2023-04-23 14:02:50',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(2825,'1000','41682263032','2023-04-23 18:17:14',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2826,'4000','41682263032','2023-04-23 18:17:14',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(2827,'1000','41682263050','2023-04-23 18:17:31',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2828,'4000','41682263050','2023-04-23 18:17:31',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(2829,'1000','41682267825','2023-04-23 19:37:09',580.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2830,'4000','41682267825','2023-04-23 19:37:09',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(2831,'4000','41682267825','2023-04-23 19:37:05',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(2832,'1000','31682268921','2023-04-23 19:55:22',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2833,'4000','31682268921','2023-04-23 19:55:22',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(2834,'1000','41682269299','2023-04-23 20:01:40',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2835,'4000','41682269299','2023-04-23 20:01:40',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2836,'1000','41682269327','2023-04-23 20:02:09',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2837,'4000','41682269327','2023-04-23 20:02:09',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2838,'1000','41682269343','2023-04-23 20:02:24',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2839,'4000','41682269343','2023-04-23 20:02:24',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(2840,'1000','41682269814','2023-04-23 20:10:15',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2841,'4000','41682269814','2023-04-23 20:10:15',NULL,150.00,'','4','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(2842,'1000','41682276752','2023-04-23 22:06:00',990.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2843,'4000','41682276752','2023-04-23 22:06:00',NULL,330.00,'','4','1','Good sold','1','','sales','30','','No',NULL,NULL,''),(2844,'4000','41682276752','2023-04-23 22:05:52',NULL,330.00,'','4','1','Good sold','1','','sales','30','','No',NULL,NULL,''),(2845,'4000','41682276752','2023-04-23 22:05:55',NULL,330.00,'','4','1','Good sold','1','','sales','30','','No',NULL,NULL,''),(2846,'1000','41682276772','2023-04-23 22:06:13',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2847,'4000','41682276772','2023-04-23 22:06:13',NULL,250.00,'','4','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(2848,'1000','41682322032','2023-04-24 10:40:34',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2849,'4000','41682322032','2023-04-24 10:40:34',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(2850,'1000','41682322584','2023-04-24 10:50:01',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2851,'4000','41682322584','2023-04-24 10:50:01',NULL,250.00,'','4','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(2852,'4000','41682322584','2023-04-24 10:49:44',NULL,100.00,'','4','1','Good sold','1','','sales','26','','No',NULL,NULL,''),(2853,'1000','41682340146','2023-04-24 15:42:27',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2854,'4000','41682340146','2023-04-24 15:42:27',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2855,'1000','41682340156','2023-04-24 15:42:38',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2856,'4000','41682340156','2023-04-24 15:42:38',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(2857,'1000','41682342959','2023-04-24 16:30:13',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2858,'4000','41682342959','2023-04-24 16:30:13',NULL,400.00,'','4','1','Good sold','1','','sales','56','','No',NULL,NULL,''),(2859,'1000','41682344662','2023-04-24 16:57:43',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2860,'4000','41682344662','2023-04-24 16:57:43',NULL,150.00,'','4','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(2861,'1000','41682347602','2023-04-24 17:46:43',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2862,'4000','41682347602','2023-04-24 17:46:43',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(2863,'1000','41682347651','2023-04-24 17:47:32',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2864,'4000','41682347651','2023-04-24 17:47:32',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(2865,'1000','41682348716','2023-04-24 18:05:17',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2866,'4000','41682348716','2023-04-24 18:05:17',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2867,'1000','41682349158','2023-04-24 18:12:40',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2868,'4000','41682349158','2023-04-24 18:12:40',NULL,150.00,'','4','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(2869,'1000','41682349914','2023-04-24 18:25:15',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2870,'4000','41682349914','2023-04-24 18:25:15',NULL,150.00,'','4','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(2871,'1000','41682350524','2023-04-24 18:35:26',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2872,'4000','41682350524','2023-04-24 18:35:26',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(2873,'1000','41682353583','2023-04-24 19:26:24',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2874,'4000','41682353583','2023-04-24 19:26:24',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2875,'1000','41682354176','2023-04-24 19:36:18',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2876,'4000','41682354176','2023-04-24 19:36:18',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(2877,'1000','41682354954','2023-04-24 19:49:22',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2878,'4000','41682354954','2023-04-24 19:49:22',NULL,250.00,'','4','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(2879,'4000','41682354954','2023-04-24 19:49:14',NULL,100.00,'','4','1','Good sold','1','','sales','26','','No',NULL,NULL,''),(2880,'1000','41682361395','2023-04-24 21:36:37',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2881,'4000','41682361395','2023-04-24 21:36:37',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2882,'1000','41682426253','2023-04-25 15:37:38',1200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2883,'4000','41682426253','2023-04-25 15:37:38',NULL,600.00,'','4','1','Good sold','1','','sales','40','','No',NULL,NULL,''),(2884,'4000','41682426253','2023-04-25 15:37:33',NULL,600.00,'','4','1','Good sold','1','','sales','40','','No',NULL,NULL,''),(2885,'1000','41682426796','2023-04-25 15:46:37',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2886,'4000','41682426796','2023-04-25 15:46:37',NULL,150.00,'','4','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(2887,'1000','41682430726','2023-04-25 16:52:08',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2888,'4000','41682430726','2023-04-25 16:52:08',NULL,400.00,'','4','1','Good sold','1','','sales','36','','No',NULL,NULL,''),(2889,'1000','41682431955','2023-04-25 17:12:37',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2890,'4000','41682431955','2023-04-25 17:12:37',NULL,150.00,'','4','1','Good sold','1','','sales','64','','No',NULL,NULL,''),(2891,'1000','41682434001','2023-04-25 17:47:04',600.00,NULL,'','4','1','Good sold','1','','sales','','','No',NULL,NULL,''),(2892,'4000','41682434001','2023-04-25 17:47:04',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(2893,'4000','41682434001','2023-04-25 17:46:41',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(2894,'4000','41682434001','2023-04-25 17:46:47',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(2895,'1000','31682437070','2023-04-25 18:37:52',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2896,'4000','31682437070','2023-04-25 18:37:52',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2897,'1000','31682437747','2023-04-25 18:49:18',180.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2900,'1000','31682442885','2023-04-25 20:14:47',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2901,'4000','31682442885','2023-04-25 20:14:47',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(2902,'1000','31682437747','2023-04-25 18:49:18',210.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2903,'4000','31682437747','2023-04-25 18:49:18',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(2904,'4000','31682437747','2023-04-25 18:49:07',NULL,30.00,'','3','1','Good sold','1','','sales','58','','No',NULL,NULL,''),(2905,'4000','31682437747','2023-04-25 18:49:16',NULL,30.00,'','3','1','Good sold','1','','sales','58','','No',NULL,NULL,''),(2906,'1000','31682443825','2023-04-25 20:30:29',400.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2907,'4000','31682443825','2023-04-25 20:30:29',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(2908,'4000','31682443825','2023-04-25 20:30:25',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(2909,'1000','31682444881','2023-04-25 20:48:03',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2910,'4000','31682444881','2023-04-25 20:48:03',NULL,350.00,'','3','1','Good sold','1','','sales','54','','No',NULL,NULL,''),(2911,'1000','31682447028','2023-04-25 21:23:49',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2912,'4000','31682447028','2023-04-25 21:23:49',NULL,300.00,'','3','1','Good sold','1','','sales','32','','No',NULL,NULL,''),(2913,'1000','31682447042','2023-04-25 21:24:03',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2914,'4000','31682447042','2023-04-25 21:24:03',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2915,'1000','31682447794','2023-04-25 21:36:36',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2916,'4000','31682447794','2023-04-25 21:36:36',NULL,250.00,'','3','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(2917,'1000','31682447816','2023-04-25 21:36:58',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2918,'4000','31682447816','2023-04-25 21:36:58',NULL,250.00,'','3','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(2919,'1000','31682447892','2023-04-25 21:38:27',400.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2920,'4000','31682447892','2023-04-25 21:38:27',NULL,200.00,'','3','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(2921,'4000','31682447892','2023-04-25 21:38:12',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(2922,'1000','31682447971','2023-04-25 21:39:33',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2923,'4000','31682447971','2023-04-25 21:39:33',NULL,300.00,'','3','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(2924,'1000','31682497784','2023-04-26 11:29:45',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2925,'4000','31682497784','2023-04-26 11:29:45',NULL,250.00,'','3','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(2926,'1000','31682499445','2023-04-26 11:57:26',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2927,'4000','31682499445','2023-04-26 11:57:26',NULL,200.00,'','3','1','Good sold','1','','sales','31','','No',NULL,NULL,''),(2928,'1000','31682501998','2023-04-26 12:39:59',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2929,'4000','31682501998','2023-04-26 12:39:59',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(2930,'1000','31682507242','2023-04-26 14:07:23',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2931,'4000','31682507242','2023-04-26 14:07:23',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(2932,'1000','31682519091','2023-04-26 17:24:52',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2933,'4000','31682519091','2023-04-26 17:24:52',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(2934,'1000','31682521852','2023-04-26 18:10:53',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2935,'4000','31682521852','2023-04-26 18:10:53',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(2936,'1000','31682524897','2023-04-26 19:01:39',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2937,'4000','31682524897','2023-04-26 19:01:39',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(2938,'1000','31682529525','2023-04-26 20:18:50',500.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2939,'4000','31682529525','2023-04-26 20:18:50',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(2940,'4000','31682529525','2023-04-26 20:18:45',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(2941,'1000','31682529865','2023-04-26 20:24:27',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2942,'4000','31682529865','2023-04-26 20:24:27',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(2943,'1000','31682531118','2023-04-26 20:45:20',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2944,'4000','31682531118','2023-04-26 20:45:20',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(2945,'1000','31682531300','2023-04-26 20:48:21',200.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'mzae'),(2946,'4000','31682531300','2023-04-26 20:48:21',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(2947,'1000','31682531384','2023-04-26 20:49:46',280.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,''),(2948,'4000','31682531384','2023-04-26 20:49:46',NULL,280.00,'','3','1','Good sold','1','','sales','6','','No',NULL,NULL,''),(2949,'1000','31682531452','2023-04-26 20:50:54',30.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2950,'4000','31682531452','2023-04-26 20:50:54',NULL,30.00,'','3','1','Good sold','1','','sales','58','','No',NULL,NULL,''),(2951,'1000','31682534438','2023-04-26 21:40:40',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2952,'4000','31682534438','2023-04-26 21:40:40',NULL,250.00,'','3','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(2953,'1000','31682535193','2023-04-26 21:53:18',400.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2954,'4000','31682535193','2023-04-26 21:53:18',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(2955,'4000','31682535193','2023-04-26 21:53:13',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(2956,'1000','31682577105','2023-04-27 09:31:55',380.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2957,'4000','31682577105','2023-04-27 09:31:55',NULL,280.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(2958,'4000','31682577105','2023-04-27 09:31:45',NULL,100.00,'','3','1','Good sold','1','','sales','24','','No',NULL,NULL,''),(2959,'1000','31682581762','2023-04-27 10:49:23',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2960,'4000','31682581762','2023-04-27 10:49:23',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(2961,'1000','31682585903','2023-04-27 11:58:24',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2963,'1000','31682585903','2023-04-27 11:58:24',400.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2964,'4000','31682585903','2023-04-27 11:58:24',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(2965,'4000','31682585903','2023-04-27 11:58:23',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(2966,'1000','31682587320','2023-04-27 12:22:01',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2967,'4000','31682587320','2023-04-27 12:22:01',NULL,300.00,'','3','1','Good sold','1','','sales','39','','No',NULL,NULL,''),(2968,'1000','31682590962','2023-04-27 13:22:44',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2970,'1000','31682590962','2023-04-27 13:22:44',450.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2971,'4000','31682590962','2023-04-27 13:22:44',NULL,250.00,'','3','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(2972,'4000','31682590962','2023-04-27 13:22:42',NULL,200.00,'','3','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(2973,'1000','31682595819','2023-04-27 14:43:41',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2974,'4000','31682595819','2023-04-27 14:43:41',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(2975,'1000','41682601722','2023-04-27 16:22:03',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2976,'4000','41682601722','2023-04-27 16:22:03',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(2977,'1000','41682601737','2023-04-27 16:22:18',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2978,'4000','41682601737','2023-04-27 16:22:18',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(2979,'1000','31682607333','2023-04-27 17:55:34',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2980,'4000','31682607333','2023-04-27 17:55:34',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(2981,'1000','31682607540','2023-04-27 17:59:01',30.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2982,'4000','31682607540','2023-04-27 17:59:01',NULL,30.00,'','3','1','Good sold','1','','sales','58','','No',NULL,NULL,''),(2983,'1000','41682610528','2023-04-27 18:48:52',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2984,'4000','41682610528','2023-04-27 18:48:52',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(2985,'4000','41682610528','2023-04-27 18:48:48',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(2986,'1000','41682614236','2023-04-27 19:50:37',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2987,'4000','41682614236','2023-04-27 19:50:37',NULL,150.00,'','4','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(2988,'1000','41682615809','2023-04-27 20:16:58',180.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2989,'4000','41682615809','2023-04-27 20:16:58',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(2990,'4000','41682615809','2023-04-27 20:16:49',NULL,30.00,'','4','1','Good sold','1','','sales','58','','No',NULL,NULL,''),(2991,'1000','41682620165','2023-04-27 21:29:26',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2992,'4000','41682620165','2023-04-27 21:29:26',NULL,150.00,'','4','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(2993,'1000','41682620242','2023-04-27 21:30:51',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2994,'4000','41682620242','2023-04-27 21:30:51',NULL,250.00,'','4','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(2995,'1000','31682670763','2023-04-28 11:32:44',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2996,'4000','31682670763','2023-04-28 11:32:44',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(2997,'1000','41682670876','2023-04-28 11:34:38',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(2998,'4000','41682670876','2023-04-28 11:34:38',NULL,250.00,'','4','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(2999,'1000','41682670897','2023-04-28 11:34:59',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3000,'4000','41682670897','2023-04-28 11:34:59',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(3001,'1000','41682670917','2023-04-28 11:35:18',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3002,'4000','41682670917','2023-04-28 11:35:18',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(3003,'1000','41682670930','2023-04-28 11:35:32',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3004,'4000','41682670930','2023-04-28 11:35:32',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(3005,'1000','31682671969','2023-04-28 11:52:50',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3006,'4000','31682671969','2023-04-28 11:52:50',NULL,200.00,'','3','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(3007,'1000','41682674909','2023-04-28 12:41:50',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3008,'4000','41682674909','2023-04-28 12:41:50',NULL,200.00,'','4','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(3009,'1000','41682674922','2023-04-28 12:42:03',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3010,'4000','41682674922','2023-04-28 12:42:03',NULL,200.00,'','4','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(3011,'1000','41682674934','2023-04-28 12:42:15',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3012,'4000','41682674934','2023-04-28 12:42:15',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(3013,'1000','41682674945','2023-04-28 12:42:26',30.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3014,'4000','41682674945','2023-04-28 12:42:26',NULL,30.00,'','4','1','Good sold','1','','sales','58','','No',NULL,NULL,''),(3015,'1000','41682676809','2023-04-28 13:13:30',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3016,'4000','41682676809','2023-04-28 13:13:30',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(3017,'1000','41682676821','2023-04-28 13:13:42',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3018,'4000','41682676821','2023-04-28 13:13:42',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(3019,'1000','41682681639','2023-04-28 14:34:01',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3020,'4000','41682681639','2023-04-28 14:34:01',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(3021,'1000','41682681651','2023-04-28 14:34:12',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3022,'4000','41682681651','2023-04-28 14:34:12',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(3023,'1000','41682681670','2023-04-28 14:34:31',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3024,'4000','41682681670','2023-04-28 14:34:31',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(3025,'1000','31682685681','2023-04-28 15:41:22',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3026,'4000','31682685681','2023-04-28 15:41:22',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(3027,'1000','31682685694','2023-04-28 15:41:35',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3028,'4000','31682685694','2023-04-28 15:41:35',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(3029,'1000','31682687486','2023-04-28 16:11:27',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3030,'4000','31682687486','2023-04-28 16:11:27',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(3031,'1000','41682689637','2023-04-28 16:47:19',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3032,'4000','41682689637','2023-04-28 16:47:19',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(3033,'1000','31682689806','2023-04-28 16:50:08',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3034,'4000','31682689806','2023-04-28 16:50:08',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(3035,'1000','41682691359','2023-04-28 17:16:01',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3036,'4000','41682691359','2023-04-28 17:16:01',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(3037,'1000','31682692192','2023-04-28 17:29:53',600.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3039,'1000','31682694934','2023-04-28 18:15:36',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3040,'4000','31682694934','2023-04-28 18:15:36',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(3041,'1000','31682692192','2023-04-28 17:29:53',900.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3042,'4000','31682692192','2023-04-28 17:29:53',NULL,600.00,'','3','1','Good sold','1','','sales','40','','No',NULL,NULL,''),(3043,'4000','31682692192','2023-04-28 17:29:52',NULL,300.00,'','3','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(3044,'1000','41682697511','2023-04-28 18:58:33',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3045,'4000','41682697511','2023-04-28 18:58:33',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(3046,'1000','31682698722','2023-04-28 19:18:44',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3047,'4000','31682698722','2023-04-28 19:18:44',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(3048,'1000','31682707273','2023-04-28 21:41:15',600.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3049,'4000','31682707273','2023-04-28 21:41:15',NULL,600.00,'','3','1','Good sold','1','','sales','40','','No',NULL,NULL,''),(3050,'1000','31682710052','2023-04-28 22:27:33',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3051,'4000','31682710052','2023-04-28 22:27:33',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(3052,'1000','31682710567','2023-04-28 22:36:08',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3053,'4000','31682710567','2023-04-28 22:36:08',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(3054,'1000','31682711362','2023-04-28 22:49:23',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3055,'4000','31682711362','2023-04-28 22:49:23',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(3056,'1000','31682711513','2023-04-28 22:51:54',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3057,'4000','31682711513','2023-04-28 22:51:54',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(3058,'1000','41682757313','2023-04-29 11:35:15',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3059,'4000','41682757313','2023-04-29 11:35:15',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(3060,'1000','41682757327','2023-04-29 11:35:29',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3061,'4000','41682757327','2023-04-29 11:35:29',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(3062,'1000','41682757340','2023-04-29 11:35:42',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3063,'4000','41682757340','2023-04-29 11:35:42',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(3064,'1000','41682757353','2023-04-29 11:35:54',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3065,'4000','41682757353','2023-04-29 11:35:54',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(3066,'1000','41682764170','2023-04-29 13:29:31',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3067,'4000','41682764170','2023-04-29 13:29:31',NULL,150.00,'','4','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(3068,'1000','41682768832','2023-04-29 14:47:13',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3069,'4000','41682768832','2023-04-29 14:47:13',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(3070,'1000','41682771040','2023-04-29 15:24:01',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3071,'4000','41682771040','2023-04-29 15:24:01',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(3072,'1000','41682776564','2023-04-29 16:56:05',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3073,'4000','41682776564','2023-04-29 16:56:05',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(3074,'1000','31682778161','2023-04-29 17:22:42',330.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3075,'4000','31682778161','2023-04-29 17:22:42',NULL,330.00,'','3','1','Good sold','1','','sales','30','','No',NULL,NULL,''),(3076,'1000','31682779992','2023-04-29 17:53:14',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3078,'1000','41682780655','2023-04-29 18:04:16',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3079,'4000','41682780655','2023-04-29 18:04:16',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(3080,'1000','31682784262','2023-04-29 19:04:24',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3081,'4000','31682784262','2023-04-29 19:04:24',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(3082,'1000','31682784581','2023-04-29 19:09:42',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3083,'4000','31682784581','2023-04-29 19:09:42',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(3084,'1000','31682786575','2023-04-29 19:42:56',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3085,'4000','31682786575','2023-04-29 19:42:56',NULL,200.00,'','3','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(3086,'1000','31682790661','2023-04-29 20:52:05',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3087,'4000','31682790661','2023-04-29 20:52:05',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(3088,'4000','31682790661','2023-04-29 20:51:01',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(3089,'1000','31682790790','2023-04-29 20:53:11',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3090,'4000','31682790790','2023-04-29 20:53:11',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(3091,'1000','31682792107','2023-04-29 21:15:09',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3092,'4000','31682792107','2023-04-29 21:15:09',NULL,200.00,'','3','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(3093,'1000','31682779992','2023-04-29 17:53:14',400.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3094,'4000','31682779992','2023-04-29 17:53:14',NULL,200.00,'','3','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(3095,'4000','31682779992','2023-04-29 17:53:13',NULL,200.00,'','3','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(3096,'1110','31682793973','2023-04-29 21:46:14',NULL,70.00,'','3','1','Inventory sold','1','','sales','60','','No',NULL,NULL,''),(3097,'5500','31682793973','2023-04-29 21:46:13',70.00,NULL,'','3','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3098,'1000','31682793973','2023-04-29 21:46:14',100.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3099,'4000','31682793973','2023-04-29 21:46:14',NULL,100.00,'','3','1','Good sold','1','','sales','60','','No',NULL,NULL,''),(3100,'1000','31682798555','2023-04-29 23:02:36',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3101,'4000','31682798555','2023-04-29 23:02:36',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(3102,'1000','31682846282','2023-04-30 12:18:04',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3103,'4000','31682846282','2023-04-30 12:18:04',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(3104,'1000','31682848666','2023-04-30 12:58:04',450.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3105,'4000','31682848666','2023-04-30 12:58:04',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(3106,'4000','31682848666','2023-04-30 12:57:46',NULL,250.00,'','3','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(3107,'1000','31682861756','2023-04-30 16:35:58',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3109,'1000','31682861974','2023-04-30 16:39:36',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3110,'4000','31682861974','2023-04-30 16:39:36',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(3111,'1000','41682863656','2023-04-30 17:07:38',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3112,'4000','41682863656','2023-04-30 17:07:38',NULL,150.00,'','4','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(3113,'1000','31682861756','2023-04-30 16:35:58',780.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3117,'1000','41682868095','2023-04-30 18:21:36',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3118,'4000','41682868095','2023-04-30 18:21:36',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(3119,'1000','31682861756','2023-04-30 16:35:58',980.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3120,'4000','31682861756','2023-04-30 16:35:58',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(3121,'4000','31682861756','2023-04-30 16:35:56',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(3122,'4000','31682861756','2023-04-30 17:20:48',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(3123,'4000','31682861756','2023-04-30 17:20:59',NULL,200.00,'','3','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(3124,'1000','41682869150','2023-04-30 18:39:11',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3125,'4000','41682869150','2023-04-30 18:39:11',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(3126,'1000','31682869554','2023-04-30 18:45:55',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3127,'4000','31682869554','2023-04-30 18:45:55',NULL,200.00,'','3','1','Good sold','1','','sales','19','','No',NULL,NULL,''),(3128,'1000','31682870476','2023-04-30 19:01:17',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3129,'4000','31682870476','2023-04-30 19:01:17',NULL,300.00,'','3','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(3130,'1000','31682871065','2023-04-30 19:11:06',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3131,'4000','31682871065','2023-04-30 19:11:06',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(3132,'1000','41682925579','2023-05-01 10:19:41',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3133,'4000','41682925579','2023-05-01 10:19:41',NULL,150.00,'','4','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(3134,'1000','41682925671','2023-05-01 10:21:13',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3135,'4000','41682925671','2023-05-01 10:21:13',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(3136,'1000','41682935300','2023-05-01 13:01:42',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3137,'4000','41682935300','2023-05-01 13:01:42',NULL,150.00,'','4','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(3138,'1000','41682939775','2023-05-01 14:16:16',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3139,'4000','41682939775','2023-05-01 14:16:16',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(3140,'1000','41682940232','2023-05-01 14:23:53',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3141,'4000','41682940232','2023-05-01 14:23:53',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(3142,'1000','41682940846','2023-05-01 14:34:08',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3143,'4000','41682940846','2023-05-01 14:34:08',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(3144,'1000','41682941354','2023-05-01 14:42:36',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3145,'4000','41682941354','2023-05-01 14:42:36',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(3146,'1000','41682941379','2023-05-01 14:43:00',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3147,'4000','41682941379','2023-05-01 14:43:00',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(3148,'1000','41682947763','2023-05-01 16:29:42',480.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3149,'4000','41682947763','2023-05-01 16:29:42',NULL,250.00,'','4','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(3150,'4000','41682947763','2023-05-01 16:29:23',NULL,200.00,'','4','1','Good sold','1','','sales','15','','No',NULL,NULL,''),(3151,'4000','41682947763','2023-05-01 16:29:29',NULL,30.00,'','4','1','Good sold','1','','sales','58','','No',NULL,NULL,''),(3152,'1000','41682950057','2023-05-01 17:07:39',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3153,'4000','41682950057','2023-05-01 17:07:39',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(3154,'1000','41682951321','2023-05-01 17:28:43',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3155,'4000','41682951321','2023-05-01 17:28:43',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(3156,'1000','41682955002','2023-05-01 18:30:12',450.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3157,'4000','41682955002','2023-05-01 18:30:12',NULL,250.00,'','4','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(3158,'4000','41682955002','2023-05-01 18:30:02',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(3159,'1000','41682956641','2023-05-01 18:57:22',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3160,'4000','41682956641','2023-05-01 18:57:22',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(3161,'1000','41682958030','2023-05-01 19:20:32',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3162,'4000','41682958030','2023-05-01 19:20:32',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(3163,'1000','41682961223','2023-05-01 20:13:44',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3164,'4000','41682961223','2023-05-01 20:13:44',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(3165,'1000','41682964230','2023-05-01 21:03:52',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3166,'4000','41682964230','2023-05-01 21:03:52',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(3167,'1000','41682964288','2023-05-01 21:04:49',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3168,'4000','41682964288','2023-05-01 21:04:49',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(3169,'1000','41683015521','2023-05-02 11:18:43',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3170,'4000','41683015521','2023-05-02 11:18:43',NULL,150.00,'','4','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(3171,'1000','41683015541','2023-05-02 11:19:08',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3172,'4000','41683015541','2023-05-02 11:19:08',NULL,150.00,'','4','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(3173,'4000','41683015541','2023-05-02 11:19:01',NULL,150.00,'','4','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(3174,'1000','41683018954','2023-05-02 12:15:56',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3175,'4000','41683018954','2023-05-02 12:15:56',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(3176,'1000','41683024325','2023-05-02 13:45:26',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3177,'4000','41683024325','2023-05-02 13:45:26',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(3178,'1000','41683026772','2023-05-02 14:30:16',630.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3179,'4000','41683026772','2023-05-02 14:30:16',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(3180,'4000','41683026772','2023-05-02 14:26:12',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(3181,'1000','41683027052','2023-05-02 14:30:54',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3182,'4000','41683027052','2023-05-02 14:30:54',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(3183,'1000','41683038313','2023-05-02 17:38:34',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3184,'4000','41683038313','2023-05-02 17:38:34',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(3185,'1000','41683041548','2023-05-02 18:32:30',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3186,'4000','41683041548','2023-05-02 18:32:30',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(3187,'1000','31683044055','2023-05-02 19:14:17',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3188,'4000','31683044055','2023-05-02 19:14:17',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(3189,'1000','31683044113','2023-05-02 19:15:20',550.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3190,'4000','31683044113','2023-05-02 19:15:20',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(3191,'4000','31683044113','2023-05-02 19:15:13',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(3192,'1000','31683044301','2023-05-02 19:18:22',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3193,'4000','31683044301','2023-05-02 19:18:22',NULL,150.00,'','3','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(3194,'1000','31683049249','2023-05-02 20:40:51',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3195,'4000','31683049249','2023-05-02 20:40:51',NULL,150.00,'','3','1','Good sold','1','','sales','61','','No',NULL,NULL,''),(3196,'1000','31683053980','2023-05-02 21:59:52',680.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3197,'4000','31683053980','2023-05-02 21:59:52',NULL,280.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(3198,'4000','31683053980','2023-05-02 21:59:40',NULL,400.00,'','3','1','Good sold','1','','sales','56','','No',NULL,NULL,''),(3199,'1000','31683055885','2023-05-02 22:31:26',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3200,'4000','31683055885','2023-05-02 22:31:26',NULL,300.00,'','3','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(3201,'1000','31683104657','2023-05-03 12:04:18',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3202,'4000','31683104657','2023-05-03 12:04:18',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(3203,'1000','31683104686','2023-05-03 12:04:48',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3204,'4000','31683104686','2023-05-03 12:04:48',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(3205,'1000','31683104732','2023-05-03 12:05:33',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3206,'4000','31683104732','2023-05-03 12:05:33',NULL,300.00,'','3','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(3207,'1000','31683104759','2023-05-03 12:06:01',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3208,'4000','31683104759','2023-05-03 12:06:01',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(3209,'1000','31683109110','2023-05-03 13:18:32',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3210,'4000','31683109110','2023-05-03 13:18:32',NULL,150.00,'','3','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(3211,'1000','31683112881','2023-05-03 14:21:22',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3212,'4000','31683112881','2023-05-03 14:21:22',NULL,280.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(3213,'1000','31683113162','2023-05-03 14:26:04',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3214,'4000','31683113162','2023-05-03 14:26:04',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(3215,'1000','31683129138','2023-05-03 18:52:34',850.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3216,'4000','31683129138','2023-05-03 18:52:34',NULL,600.00,'','3','1','Good sold','1','','sales','66','','No',NULL,NULL,''),(3217,'4000','31683129138','2023-05-03 18:52:18',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(3218,'1000','31683129512','2023-05-03 18:58:33',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3219,'4000','31683129512','2023-05-03 18:58:33',NULL,350.00,'','3','1','Good sold','1','','sales','54','','No',NULL,NULL,''),(3220,'1000','31683132242','2023-05-03 19:44:04',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3221,'4000','31683132242','2023-05-03 19:44:04',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(3222,'1000','31683132492','2023-05-03 19:48:13',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3223,'4000','31683132492','2023-05-03 19:48:13',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(3224,'1000','31683133238','2023-05-03 20:01:02',550.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3225,'4000','31683133238','2023-05-03 20:01:02',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(3226,'4000','31683133238','2023-05-03 20:00:38',NULL,200.00,'','3','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(3227,'1000','31683134913','2023-05-03 20:28:42',500.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3228,'4000','31683134913','2023-05-03 20:28:42',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(3229,'4000','31683134913','2023-05-03 20:28:33',NULL,300.00,'','3','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(3230,'1000','31683136167','2023-05-03 20:49:28',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3231,'4000','31683136167','2023-05-03 20:49:28',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(3232,'1000','31683137834','2023-05-03 21:17:15',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3233,'4000','31683137834','2023-05-03 21:17:15',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(3234,'1000','31683137860','2023-05-03 21:17:41',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3235,'4000','31683137860','2023-05-03 21:17:41',NULL,250.00,'','3','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(3236,'1000','31683191188','2023-05-04 12:06:33',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3237,'4000','31683191188','2023-05-04 12:06:33',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(3238,'4000','31683191188','2023-05-04 12:06:28',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(3239,'1000','41683212220','2023-05-04 17:57:01',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3240,'4000','41683212220','2023-05-04 17:57:01',NULL,150.00,'','4','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(3241,'1000','41683212281','2023-05-04 17:58:02',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3242,'4000','41683212281','2023-05-04 17:58:02',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(3243,'1000','41683214175','2023-05-04 18:29:36',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3244,'4000','41683214175','2023-05-04 18:29:36',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(3245,'1000','41683215284','2023-05-04 18:48:09',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3246,'4000','41683215284','2023-05-04 18:48:09',NULL,150.00,'','4','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(3247,'4000','41683215284','2023-05-04 18:48:04',NULL,150.00,'','4','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(3248,'1000','41683216120','2023-05-04 19:02:02',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3249,'4000','41683216120','2023-05-04 19:02:02',NULL,150.00,'','4','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(3250,'1000','41683219224','2023-05-04 19:53:46',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3251,'4000','41683219224','2023-05-04 19:53:46',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(3252,'1000','41683219683','2023-05-04 20:01:25',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3253,'4000','41683219683','2023-05-04 20:01:25',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(3254,'1000','41683221492','2023-05-04 20:31:33',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3255,'4000','41683221492','2023-05-04 20:31:33',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(3256,'1000','41683222016','2023-05-04 20:40:17',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3257,'4000','41683222016','2023-05-04 20:40:17',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(3258,'1000','41683224715','2023-05-04 21:25:17',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3259,'4000','41683224715','2023-05-04 21:25:17',NULL,150.00,'','4','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(3260,'1000','41683224867','2023-05-04 21:27:48',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3261,'4000','41683224867','2023-05-04 21:27:48',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(3262,'1000','41683227748','2023-05-04 22:15:49',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3263,'4000','41683227748','2023-05-04 22:15:49',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(3264,'1000','41683228550','2023-05-04 22:29:12',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3265,'4000','41683228550','2023-05-04 22:29:12',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(3266,'1000','41683269357','2023-05-05 09:49:34',380.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3267,'4000','41683269357','2023-05-05 09:49:34',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(3268,'4000','41683269357','2023-05-05 09:49:17',NULL,100.00,'','4','1','Good sold','1','','sales','24','','No',NULL,NULL,''),(3269,'1000','41683270611','2023-05-05 10:10:13',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3270,'4000','41683270611','2023-05-05 10:10:13',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(3271,'1000','41683271290','2023-05-05 10:21:31',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3272,'4000','41683271290','2023-05-05 10:21:31',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(3273,'1000','41683273319','2023-05-05 10:55:34',450.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3274,'4000','41683273319','2023-05-05 10:55:34',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(3275,'4000','41683273319','2023-05-05 10:55:19',NULL,200.00,'','4','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(3276,'1000','41683274320','2023-05-05 11:12:02',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3277,'4000','41683274320','2023-05-05 11:12:02',NULL,150.00,'','4','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(3278,'1000','41683278768','2023-05-05 12:26:09',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3279,'4000','41683278768','2023-05-05 12:26:09',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(3280,'1000','41683282444','2023-05-05 13:27:26',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3281,'4000','41683282444','2023-05-05 13:27:26',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(3282,'1000','41683283910','2023-05-05 13:52:00',450.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3283,'4000','41683283910','2023-05-05 13:52:00',NULL,250.00,'','4','1','Good sold','1','','sales','14','','No',NULL,NULL,''),(3284,'4000','41683283910','2023-05-05 13:51:50',NULL,200.00,'','4','1','Good sold','1','','sales','63','','No',NULL,NULL,''),(3285,'1000','41683284473','2023-05-05 14:01:14',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3286,'4000','41683284473','2023-05-05 14:01:14',NULL,200.00,'','4','1','Good sold','1','','sales','63','','No',NULL,NULL,''),(3287,'1000','41683285420','2023-05-05 14:17:01',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3288,'4000','41683285420','2023-05-05 14:17:01',NULL,350.00,'','4','1','Good sold','1','','sales','54','','No',NULL,NULL,''),(3289,'1110','41683294531','2023-05-05 16:48:53',NULL,70.00,'','4','1','Inventory sold','1','','sales','60','','No',NULL,NULL,''),(3290,'5500','41683294531','2023-05-05 16:48:51',70.00,NULL,'','4','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3291,'1000','41683294531','2023-05-05 16:48:53',100.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3292,'4000','41683294531','2023-05-05 16:48:53',NULL,100.00,'','4','1','Good sold','1','','sales','60','','No',NULL,NULL,''),(3293,'1000','41683294949','2023-05-05 16:55:51',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3294,'4000','41683294949','2023-05-05 16:55:51',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(3295,'1000','31683299160','2023-05-05 18:06:02',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3296,'4000','31683299160','2023-05-05 18:06:02',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(3297,'1000','31683301409','2023-05-05 18:43:30',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3298,'4000','31683301409','2023-05-05 18:43:30',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(3299,'1000','31683305620','2023-05-05 19:53:42',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3301,'1000','31683307922','2023-05-05 20:32:08',500.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3302,'4000','31683307922','2023-05-05 20:32:08',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(3303,'4000','31683307922','2023-05-05 20:32:02',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(3304,'1000','31683305620','2023-05-05 19:53:42',700.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3305,'4000','31683305620','2023-05-05 19:53:42',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(3306,'4000','31683305620','2023-05-05 19:53:41',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(3307,'1000','31683312106','2023-05-05 21:41:47',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3308,'4000','31683312106','2023-05-05 21:41:47',NULL,200.00,'','3','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(3309,'1000','31683312407','2023-05-05 21:46:48',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3311,'1000','31683312407','2023-05-05 21:46:48',400.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3312,'4000','31683312407','2023-05-05 21:46:48',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(3313,'4000','31683312407','2023-05-05 21:46:47',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(3314,'1000','31683319134','2023-05-05 23:38:55',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3315,'4000','31683319134','2023-05-05 23:38:55',NULL,150.00,'','3','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(3316,'1000','31683319201','2023-05-05 23:40:04',400.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3317,'4000','31683319201','2023-05-05 23:40:04',NULL,200.00,'','3','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(3318,'4000','31683319201','2023-05-05 23:40:01',NULL,200.00,'','3','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(3319,'1000','31683319231','2023-05-05 23:40:33',330.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3320,'4000','31683319231','2023-05-05 23:40:33',NULL,330.00,'','3','1','Good sold','1','','sales','30','','No',NULL,NULL,''),(3321,'1000','31683319345','2023-05-05 23:42:27',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3322,'4000','31683319345','2023-05-05 23:42:27',NULL,300.00,'','3','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(3323,'1000','31683319444','2023-05-05 23:44:06',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3324,'4000','31683319444','2023-05-05 23:44:06',NULL,250.00,'','3','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(3325,'1000','31683319461','2023-05-05 23:44:23',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3326,'4000','31683319461','2023-05-05 23:44:23',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(3327,'1000','41683359641','2023-05-06 10:54:03',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3328,'4000','41683359641','2023-05-06 10:54:03',NULL,150.00,'','4','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(3329,'1000','41683366339','2023-05-06 12:45:40',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3330,'4000','41683366339','2023-05-06 12:45:40',NULL,250.00,'','4','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(3331,'1000','41683366357','2023-05-06 12:45:58',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3332,'4000','41683366357','2023-05-06 12:45:58',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(3333,'1000','41683367024','2023-05-06 12:57:05',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3334,'4000','41683367024','2023-05-06 12:57:05',NULL,150.00,'','4','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(3335,'1000','41683371714','2023-05-06 14:15:16',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3336,'4000','41683371714','2023-05-06 14:15:16',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(3337,'1000','31683376001','2023-05-06 15:26:45',700.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3338,'4000','31683376001','2023-05-06 15:26:45',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(3339,'4000','31683376001','2023-05-06 15:26:41',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(3340,'1000','41683376263','2023-05-06 15:31:05',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3341,'4000','41683376263','2023-05-06 15:31:05',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(3342,'1000','31683379998','2023-05-06 16:33:20',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3343,'4000','31683379998','2023-05-06 16:33:20',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(3344,'1000','41683383826','2023-05-06 17:37:08',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3345,'4000','41683383826','2023-05-06 17:37:08',NULL,200.00,'','4','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(3346,'1000','41683384968','2023-05-06 17:56:09',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3347,'4000','41683384968','2023-05-06 17:56:09',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(3348,'1000','31683385639','2023-05-06 18:07:21',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3349,'4000','31683385639','2023-05-06 18:07:21',NULL,150.00,'','3','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(3350,'1000','31683387689','2023-05-06 18:41:30',600.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3351,'4000','31683387689','2023-05-06 18:41:30',NULL,600.00,'','3','1','Good sold','1','','sales','42','','No',NULL,NULL,''),(3352,'1000','31683392623','2023-05-06 20:03:45',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3353,'4000','31683392623','2023-05-06 20:03:45',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(3354,'1000','31683393810','2023-05-06 20:23:36',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3355,'4000','31683393810','2023-05-06 20:23:36',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(3356,'4000','31683393810','2023-05-06 20:23:30',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(3357,'1000','31683396722','2023-05-06 21:12:03',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3358,'4000','31683396722','2023-05-06 21:12:03',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(3359,'1000','31683401060','2023-05-06 22:24:22',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3360,'4000','31683401060','2023-05-06 22:24:22',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(3361,'1000','31683401086','2023-05-06 22:24:47',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3362,'4000','31683401086','2023-05-06 22:24:47',NULL,300.00,'','3','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(3363,'1000','31683401101','2023-05-06 22:25:15',500.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3364,'4000','31683401101','2023-05-06 22:25:15',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(3365,'4000','31683401101','2023-05-06 22:25:01',NULL,300.00,'','3','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(3366,'1000','31683457464','2023-05-07 14:04:26',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3367,'4000','31683457464','2023-05-07 14:04:26',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(3368,'1000','31683457533','2023-05-07 14:05:34',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3369,'4000','31683457533','2023-05-07 14:05:34',NULL,250.00,'','3','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(3370,'1000','31683459299','2023-05-07 14:43:36',480.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3371,'4000','31683459299','2023-05-07 14:43:36',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(3372,'4000','31683459299','2023-05-07 14:34:59',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(3373,'1000','41683465207','2023-05-07 16:13:29',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3374,'4000','41683465207','2023-05-07 16:13:29',NULL,250.00,'','4','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(3375,'1000','31683468134','2023-05-07 17:02:24',450.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3376,'4000','31683468134','2023-05-07 17:02:24',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(3377,'4000','31683468134','2023-05-07 17:02:14',NULL,300.00,'','3','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(3378,'1000','41683468197','2023-05-07 17:03:22',600.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3379,'4000','41683468197','2023-05-07 17:03:22',NULL,300.00,'','4','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(3380,'4000','41683468197','2023-05-07 17:03:17',NULL,300.00,'','4','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(3381,'1000','31683471090','2023-05-07 17:51:34',500.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3382,'4000','31683471090','2023-05-07 17:51:34',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(3383,'4000','31683471090','2023-05-07 17:51:30',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(3384,'1000','41683471156','2023-05-07 17:52:37',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3385,'4000','41683471156','2023-05-07 17:52:37',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(3386,'1000','31683474477','2023-05-07 18:47:59',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3387,'4000','31683474477','2023-05-07 18:47:59',NULL,300.00,'','3','1','Good sold','1','','sales','39','','No',NULL,NULL,''),(3388,'1000','41683474947','2023-05-07 18:55:48',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3389,'4000','41683474947','2023-05-07 18:55:48',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(3390,'1000','41683474962','2023-05-07 18:56:03',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3391,'4000','41683474962','2023-05-07 18:56:03',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(3392,'1000','41683476504','2023-05-07 19:21:45',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3393,'4000','41683476504','2023-05-07 19:21:45',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(3394,'1000','41683479660','2023-05-07 20:14:22',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3395,'4000','41683479660','2023-05-07 20:14:22',NULL,200.00,'','4','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(3396,'1000','41683482710','2023-05-07 21:05:11',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3397,'4000','41683482710','2023-05-07 21:05:11',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(3398,'1000','41683486899','2023-05-07 22:15:00',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3399,'4000','41683486899','2023-05-07 22:15:00',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(3400,'1000','41683487267','2023-05-07 22:21:09',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3401,'4000','41683487267','2023-05-07 22:21:09',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(3402,'1000','41683530424','2023-05-08 10:20:25',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3403,'4000','41683530424','2023-05-08 10:20:25',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(3404,'1000','41683530440','2023-05-08 10:20:41',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3405,'4000','41683530440','2023-05-08 10:20:41',NULL,250.00,'','4','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(3406,'1000','41683530458','2023-05-08 10:20:59',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3407,'4000','41683530458','2023-05-08 10:20:59',NULL,250.00,'','4','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(3408,'1000','41683532741','2023-05-08 10:59:09',480.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3409,'4000','41683532741','2023-05-08 10:59:09',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(3410,'4000','41683532741','2023-05-08 10:59:01',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(3411,'1000','41683546369','2023-05-08 14:46:11',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3412,'4000','41683546369','2023-05-08 14:46:11',NULL,200.00,'','4','1','Good sold','1','','sales','31','','No',NULL,NULL,''),(3413,'1000','41683554574','2023-05-08 17:02:55',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3414,'4000','41683554574','2023-05-08 17:02:55',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(3415,'1000','41683557631','2023-05-08 17:54:01',450.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3416,'4000','41683557631','2023-05-08 17:54:01',NULL,250.00,'','4','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(3417,'4000','41683557631','2023-05-08 17:53:51',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(3418,'1000','41683558843','2023-05-08 18:14:05',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3419,'4000','41683558843','2023-05-08 18:14:05',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(3420,'1000','41683567911','2023-05-08 20:45:13',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3421,'4000','41683567911','2023-05-08 20:45:13',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(3422,'1000','41683571057','2023-05-08 21:37:38',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3423,'4000','41683571057','2023-05-08 21:37:38',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(3424,'1000','41683571076','2023-05-08 21:37:58',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3425,'4000','41683571076','2023-05-08 21:37:58',NULL,300.00,'','4','1','Good sold','1','','sales','28','','No',NULL,NULL,''),(3426,'1000','41683615610','2023-05-09 10:00:22',380.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3427,'4000','41683615610','2023-05-09 10:00:22',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(3428,'4000','41683615610','2023-05-09 10:00:10',NULL,100.00,'','4','1','Good sold','1','','sales','24','','No',NULL,NULL,''),(3429,'1000','41683622341','2023-05-09 11:52:29',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3430,'4000','41683622341','2023-05-09 11:52:29',NULL,150.00,'','4','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(3431,'1000','31683636322','2023-05-09 15:45:42',880.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3432,'4000','31683636322','2023-05-09 15:45:42',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(3433,'4000','31683636322','2023-05-09 15:45:22',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(3434,'4000','31683636322','2023-05-09 15:45:25',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(3435,'4000','31683636322','2023-05-09 15:45:30',NULL,280.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(3436,'1000','31683639247','2023-05-09 16:34:08',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3437,'4000','31683639247','2023-05-09 16:34:08',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(3438,'1000','31683639324','2023-05-09 16:35:26',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3439,'4000','31683639324','2023-05-09 16:35:26',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(3440,'1000','41683645353','2023-05-09 18:15:55',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3441,'4000','41683645353','2023-05-09 18:15:55',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(3442,'1000','41683645422','2023-05-09 18:17:03',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3443,'4000','41683645422','2023-05-09 18:17:03',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(3444,'1000','31683649383','2023-05-09 19:23:23',760.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3445,'4000','31683649383','2023-05-09 19:23:23',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(3446,'4000','31683649383','2023-05-09 19:23:03',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(3447,'4000','31683649383','2023-05-09 19:23:06',NULL,100.00,'','3','1','Good sold','1','','sales','26','','No',NULL,NULL,''),(3448,'4000','31683649383','2023-05-09 19:23:18',NULL,100.00,'','3','1','Good sold','1','','sales','26','','No',NULL,NULL,''),(3449,'1000','31683650239','2023-05-09 19:37:24',400.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3450,'4000','31683650239','2023-05-09 19:37:24',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(3451,'4000','31683650239','2023-05-09 19:37:19',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(3452,'1000','31683651333','2023-05-09 19:55:34',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3453,'4000','31683651333','2023-05-09 19:55:34',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(3454,'1000','31683652084','2023-05-09 20:08:05',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3455,'4000','31683652084','2023-05-09 20:08:05',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(3456,'1000','31683652755','2023-05-09 20:19:16',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3457,'4000','31683652755','2023-05-09 20:19:16',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(3458,'1000','31683659745','2023-05-09 22:15:53',1050.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3459,'4000','31683659745','2023-05-09 22:15:53',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(3460,'4000','31683659745','2023-05-09 22:15:45',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(3461,'4000','31683659745','2023-05-09 22:15:48',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(3462,'1000','31683664810','2023-05-09 23:40:12',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3463,'4000','31683664810','2023-05-09 23:40:12',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(3464,'1000','31683715853','2023-05-10 13:50:55',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3465,'4000','31683715853','2023-05-10 13:50:55',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(3466,'1000','31683715885','2023-05-10 13:51:27',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3468,'1000','31683727507','2023-05-10 17:05:09',280.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'manager'),(3469,'4000','31683727507','2023-05-10 17:05:09',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(3470,'1000','31683727736','2023-05-10 17:09:20',630.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3471,'4000','31683727736','2023-05-10 17:09:20',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(3472,'4000','31683727736','2023-05-10 17:08:56',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(3473,'4000','31683727736','2023-05-10 17:09:16',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(3474,'1000','31683727790','2023-05-10 17:09:52',200.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'mzae'),(3475,'4000','31683727790','2023-05-10 17:09:52',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(3476,'1000','31683727845','2023-05-10 17:10:47',200.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'cedrick'),(3477,'4000','31683727845','2023-05-10 17:10:47',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(3478,'1000','31683732713','2023-05-10 18:32:01',400.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3479,'4000','31683732713','2023-05-10 18:32:01',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(3480,'4000','31683732713','2023-05-10 18:31:53',NULL,200.00,'','3','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(3481,'1000','31683732844','2023-05-10 18:34:06',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3482,'4000','31683732844','2023-05-10 18:34:06',NULL,250.00,'','3','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(3483,'1000','31683732867','2023-05-10 18:34:28',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3485,'1000','31683732867','2023-05-10 18:34:28',500.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3486,'4000','31683732867','2023-05-10 18:34:28',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(3487,'4000','31683732867','2023-05-10 18:34:27',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(3488,'1000','31683742598','2023-05-10 21:16:40',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3489,'4000','31683742598','2023-05-10 21:16:40',NULL,150.00,'','3','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(3490,'1000','31683742734','2023-05-10 21:18:55',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3491,'4000','31683742734','2023-05-10 21:18:55',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(3492,'1000','31683744000','2023-05-10 21:40:01',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3493,'4000','31683744000','2023-05-10 21:40:01',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(3494,'1000','31683715885','2023-05-10 13:51:27',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3495,'4000','31683715885','2023-05-10 13:51:27',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(3496,'4000','31683715885','2023-05-10 13:51:25',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(3497,'1000','31683744941','2023-05-10 21:55:43',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3498,'4000','31683744941','2023-05-10 21:55:43',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(3499,'1000','31683750714','2023-05-10 23:33:03',500.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'martin'),(3500,'4000','31683750714','2023-05-10 23:33:03',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(3501,'4000','31683750714','2023-05-10 23:31:54',NULL,250.00,'','3','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(3502,'1000','31683812102','2023-05-11 16:35:04',200.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'cedrick'),(3503,'4000','31683812102','2023-05-11 16:35:04',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(3504,'1000','31683812127','2023-05-11 16:35:29',150.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'george'),(3505,'4000','31683812127','2023-05-11 16:35:29',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(3506,'1000','31683812162','2023-05-11 16:36:04',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3507,'4000','31683812162','2023-05-11 16:36:04',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(3508,'1000','41683818427','2023-05-11 18:20:47',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3509,'4000','41683818427','2023-05-11 18:20:47',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(3510,'4000','41683818427','2023-05-11 18:20:27',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(3511,'1000','31683822033','2023-05-11 19:20:34',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3512,'4000','31683822033','2023-05-11 19:20:34',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(3513,'1000','41683825603','2023-05-11 20:20:05',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3514,'4000','41683825603','2023-05-11 20:20:05',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(3515,'1000','41683831303','2023-05-11 21:55:05',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3516,'4000','41683831303','2023-05-11 21:55:05',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(3517,'1000','41683831358','2023-05-11 21:55:59',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3518,'4000','41683831358','2023-05-11 21:55:59',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(3519,'1000','41683832017','2023-05-11 22:06:59',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3520,'4000','41683832017','2023-05-11 22:06:59',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(3521,'1000','41683874424','2023-05-12 09:53:46',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3522,'4000','41683874424','2023-05-12 09:53:46',NULL,150.00,'','4','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(3523,'1000','41683874456','2023-05-12 09:54:17',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3524,'4000','41683874456','2023-05-12 09:54:17',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(3525,'1000','31683889634','2023-05-12 14:07:16',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3526,'4000','31683889634','2023-05-12 14:07:16',NULL,300.00,'','3','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(3527,'1000','41683889808','2023-05-12 14:10:10',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3528,'4000','41683889808','2023-05-12 14:10:10',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(3529,'1000','31683894602','2023-05-12 15:30:04',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3530,'4000','31683894602','2023-05-12 15:30:04',NULL,250.00,'','3','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(3531,'1000','41683895388','2023-05-12 15:43:09',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3532,'4000','41683895388','2023-05-12 15:43:09',NULL,250.00,'','4','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(3533,'1000','31683897314','2023-05-12 16:15:16',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3534,'4000','31683897314','2023-05-12 16:15:16',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(3535,'1000','41683898806','2023-05-12 16:40:08',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3536,'4000','41683898806','2023-05-12 16:40:08',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(3537,'1000','41683901579','2023-05-12 17:26:21',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3538,'4000','41683901579','2023-05-12 17:26:21',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(3539,'1000','31683902467','2023-05-12 17:41:11',1200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3540,'4000','31683902467','2023-05-12 17:41:11',NULL,600.00,'','3','1','Good sold','1','','sales','40','','No',NULL,NULL,''),(3541,'4000','31683902467','2023-05-12 17:41:07',NULL,600.00,'','3','1','Good sold','1','','sales','40','','No',NULL,NULL,''),(3542,'1000','41683903412','2023-05-12 17:56:57',700.00,NULL,'','4','1','Good sold','1','','sales','','','No',NULL,NULL,''),(3543,'4000','41683903412','2023-05-12 17:56:57',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(3544,'4000','41683903412','2023-05-12 17:56:52',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(3545,'1000','41683903465','2023-05-12 17:57:46',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3546,'4000','41683903465','2023-05-12 17:57:46',NULL,250.00,'','4','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(3547,'1000','31683904155','2023-05-12 18:09:16',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3548,'4000','31683904155','2023-05-12 18:09:16',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(3549,'1000','31683904184','2023-05-12 18:09:45',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3550,'4000','31683904184','2023-05-12 18:09:45',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(3551,'1000','31683904248','2023-05-12 18:10:49',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3552,'4000','31683904248','2023-05-12 18:10:49',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(3553,'1000','31683906039','2023-05-12 18:40:40',200.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'george'),(3554,'4000','31683906039','2023-05-12 18:40:40',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(3555,'1000','41683912465','2023-05-12 20:27:47',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3556,'4000','41683912465','2023-05-12 20:27:47',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(3557,'1000','31683916107','2023-05-12 21:28:28',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3558,'4000','31683916107','2023-05-12 21:28:28',NULL,200.00,'','3','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(3559,'1000','31683916222','2023-05-12 21:30:24',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3560,'4000','31683916222','2023-05-12 21:30:24',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(3561,'1000','41683917234','2023-05-12 21:47:16',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3562,'4000','41683917234','2023-05-12 21:47:16',NULL,150.00,'','4','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(3563,'1000','31683920886','2023-05-12 22:48:07',250.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'martin'),(3564,'4000','31683920886','2023-05-12 22:48:07',NULL,250.00,'','3','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(3565,'1000','31683920909','2023-05-12 22:48:30',200.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'cedrick'),(3566,'4000','31683920909','2023-05-12 22:48:30',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(3567,'1000','41683960591','2023-05-13 09:49:52',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3568,'4000','41683960591','2023-05-13 09:49:52',NULL,150.00,'','4','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(3569,'1000','41683964804','2023-05-13 11:00:05',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3570,'4000','41683964804','2023-05-13 11:00:05',NULL,200.00,'','4','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(3571,'1000','41683972773','2023-05-13 13:13:00',550.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3572,'4000','41683972773','2023-05-13 13:13:00',NULL,200.00,'','4','1','Good sold','1','','sales','19','','No',NULL,NULL,''),(3573,'4000','41683972773','2023-05-13 13:12:53',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(3574,'1000','41683973106','2023-05-13 13:18:28',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3575,'4000','41683973106','2023-05-13 13:18:28',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(3576,'1000','41683973124','2023-05-13 13:18:46',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3577,'4000','41683973124','2023-05-13 13:18:46',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(3578,'1000','41683976312','2023-05-13 14:11:54',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3579,'4000','41683976312','2023-05-13 14:11:54',NULL,200.00,'','4','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(3580,'1000','41683976464','2023-05-13 14:14:25',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3581,'4000','41683976464','2023-05-13 14:14:25',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(3582,'1000','41683976503','2023-05-13 14:15:05',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3583,'4000','41683976503','2023-05-13 14:15:05',NULL,150.00,'','4','1','Good sold','1','','sales','61','','No',NULL,NULL,''),(3584,'1000','31683981912','2023-05-13 15:45:13',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3585,'4000','31683981912','2023-05-13 15:45:13',NULL,300.00,'','3','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(3586,'1000','31683984896','2023-05-13 16:34:58',350.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'manager'),(3587,'4000','31683984896','2023-05-13 16:34:58',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(3588,'1000','31683984957','2023-05-13 16:35:58',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3589,'4000','31683984957','2023-05-13 16:35:58',NULL,250.00,'','3','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(3590,'1000','41683991115','2023-05-13 18:18:47',1400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3591,'4000','41683991115','2023-05-13 18:18:47',NULL,300.00,'','4','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(3592,'4000','41683991115','2023-05-13 18:18:35',NULL,300.00,'','4','1','Good sold','1','','sales','33','','No',NULL,NULL,''),(3593,'4000','41683991115','2023-05-13 18:18:40',NULL,400.00,'','4','1','Good sold','1','','sales','56','','No',NULL,NULL,''),(3594,'4000','41683991115','2023-05-13 18:18:44',NULL,400.00,'','4','1','Good sold','1','','sales','56','','No',NULL,NULL,''),(3595,'1000','31683991188','2023-05-13 18:19:53',600.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3596,'4000','31683991188','2023-05-13 18:19:53',NULL,300.00,'','3','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(3597,'4000','31683991188','2023-05-13 18:19:48',NULL,300.00,'','3','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(3598,'1000','31683991537','2023-05-13 18:25:38',400.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3599,'4000','31683991537','2023-05-13 18:25:38',NULL,400.00,'','3','1','Good sold','1','','sales','56','','No',NULL,NULL,''),(3600,'1000','31683995856','2023-05-13 19:37:38',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3601,'4000','31683995856','2023-05-13 19:37:38',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(3602,'1000','31683995977','2023-05-13 19:39:39',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3603,'4000','31683995977','2023-05-13 19:39:39',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(3604,'1000','31683996331','2023-05-13 19:45:32',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3605,'4000','31683996331','2023-05-13 19:45:32',NULL,250.00,'','3','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(3606,'1000','31683996512','2023-05-13 19:48:33',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3607,'4000','31683996512','2023-05-13 19:48:33',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(3608,'1000','31683997779','2023-05-13 20:09:40',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3609,'4000','31683997779','2023-05-13 20:09:40',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(3610,'1000','31683998918','2023-05-13 20:28:39',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3611,'4000','31683998918','2023-05-13 20:28:39',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(3612,'1000','31684002753','2023-05-13 21:32:35',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3613,'4000','31684002753','2023-05-13 21:32:35',NULL,250.00,'','3','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(3614,'1000','31684002778','2023-05-13 21:32:59',200.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'george'),(3615,'4000','31684002778','2023-05-13 21:32:59',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(3616,'1000','31684002915','2023-05-13 21:35:16',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3617,'4000','31684002915','2023-05-13 21:35:16',NULL,150.00,'','3','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(3618,'1000','31684003185','2023-05-13 21:39:47',300.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'cedrick'),(3619,'4000','31684003185','2023-05-13 21:39:47',NULL,300.00,'','3','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(3620,'1000','31684003212','2023-05-13 21:40:13',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3621,'4000','31684003212','2023-05-13 21:40:13',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(3622,'1000','31684004548','2023-05-13 22:02:29',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3623,'4000','31684004548','2023-05-13 22:02:29',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(3624,'1000','31684063383','2023-05-14 14:23:05',280.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'manager'),(3625,'4000','31684063383','2023-05-14 14:23:05',NULL,280.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(3626,'1000','31684065483','2023-05-14 14:58:04',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3627,'4000','31684065483','2023-05-14 14:58:04',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(3628,'1000','31684065561','2023-05-14 14:59:22',200.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'cedrick'),(3629,'4000','31684065561','2023-05-14 14:59:22',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(3630,'1000','41684077092','2023-05-14 18:11:34',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3631,'4000','41684077092','2023-05-14 18:11:34',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(3632,'1000','31684081799','2023-05-14 19:30:00',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3633,'4000','31684081799','2023-05-14 19:30:00',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(3634,'1000','31684086262','2023-05-14 20:44:23',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3635,'4000','31684086262','2023-05-14 20:44:23',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(3636,'1000','41684129504','2023-05-15 08:45:24',580.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3637,'4000','41684129504','2023-05-15 08:45:24',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(3638,'4000','41684129504','2023-05-15 08:45:04',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(3639,'4000','41684129504','2023-05-15 08:45:10',NULL,100.00,'','4','1','Good sold','1','','sales','24','','No',NULL,NULL,''),(3640,'1000','41684140194','2023-05-15 11:43:16',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3641,'4000','41684140194','2023-05-15 11:43:16',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(3642,'1000','41684147538','2023-05-15 13:45:39',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3643,'4000','41684147538','2023-05-15 13:45:39',NULL,150.00,'','4','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(3644,'1000','41684151702','2023-05-15 14:55:03',600.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3645,'4000','41684151702','2023-05-15 14:55:03',NULL,600.00,'','4','1','Good sold','1','','sales','40','','No',NULL,NULL,''),(3646,'1000','41684156669','2023-05-15 16:17:51',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3647,'4000','41684156669','2023-05-15 16:17:51',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(3648,'1000','41684158268','2023-05-15 16:44:29',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3649,'4000','41684158268','2023-05-15 16:44:29',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(3650,'1000','41684160706','2023-05-15 17:25:08',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3651,'4000','41684160706','2023-05-15 17:25:08',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(3652,'1000','41684162470','2023-05-15 17:54:31',600.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3653,'4000','41684162470','2023-05-15 17:54:31',NULL,600.00,'','4','1','Good sold','1','','sales','40','','No',NULL,NULL,''),(3654,'1000','41684165238','2023-05-15 18:40:44',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3655,'4000','41684165238','2023-05-15 18:40:44',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(3656,'4000','41684165238','2023-05-15 18:40:38',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(3657,'1000','41684166400','2023-05-15 19:00:01',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3658,'4000','41684166400','2023-05-15 19:00:01',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(3659,'1000','41684167975','2023-05-15 19:26:16',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3660,'4000','41684167975','2023-05-15 19:26:16',NULL,150.00,'','4','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(3661,'1000','41684168734','2023-05-15 19:38:55',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3662,'4000','41684168734','2023-05-15 19:38:55',NULL,150.00,'','4','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(3663,'1000','41684169402','2023-05-15 19:50:03',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3664,'4000','41684169402','2023-05-15 19:50:03',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(3665,'1000','41684171835','2023-05-15 20:30:36',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3666,'4000','41684171835','2023-05-15 20:30:36',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(3667,'1000','41684174392','2023-05-15 21:13:17',700.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3668,'4000','41684174392','2023-05-15 21:13:17',NULL,400.00,'','4','1','Good sold','1','','sales','56','','No',NULL,NULL,''),(3669,'4000','41684174392','2023-05-15 21:13:12',NULL,300.00,'','4','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(3670,'1000','41684175391','2023-05-15 21:29:53',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3671,'4000','41684175391','2023-05-15 21:29:53',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(3672,'1000','41684216300','2023-05-16 08:52:05',380.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3673,'4000','41684216300','2023-05-16 08:52:05',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(3674,'4000','41684216300','2023-05-16 08:51:40',NULL,100.00,'','4','1','Good sold','1','','sales','24','','No',NULL,NULL,''),(3675,'1000','41684224306','2023-05-16 11:05:24',680.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3676,'4000','41684224306','2023-05-16 11:05:24',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(3677,'4000','41684224306','2023-05-16 11:05:06',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(3678,'4000','41684224306','2023-05-16 11:05:13',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(3679,'1000','41684225085','2023-05-16 11:18:06',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3680,'4000','41684225085','2023-05-16 11:18:06',NULL,150.00,'','4','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(3681,'1000','41684226189','2023-05-16 11:36:31',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3682,'4000','41684226189','2023-05-16 11:36:31',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(3683,'1000','41684230794','2023-05-16 12:53:16',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3684,'4000','41684230794','2023-05-16 12:53:16',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(3685,'1000','41684234903','2023-05-16 14:01:49',700.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3686,'4000','41684234903','2023-05-16 14:01:49',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(3687,'4000','41684234903','2023-05-16 14:01:43',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(3688,'1000','41684243434','2023-05-16 16:24:12',680.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3689,'4000','41684243434','2023-05-16 16:24:12',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(3690,'4000','41684243434','2023-05-16 16:23:54',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(3691,'4000','41684243434','2023-05-16 16:24:03',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(3692,'1000','41684250984','2023-05-16 18:29:45',280.00,NULL,'','4','1','Good sold','1','','sales','','','No',NULL,NULL,''),(3693,'4000','41684250984','2023-05-16 18:29:45',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(3694,'1110','31684254380','2023-05-16 19:26:36',NULL,0.00,'','3','1','Inventory sold','1','','sales','6','','No',NULL,NULL,''),(3695,'1110','31684254380','2023-05-16 19:26:20',NULL,600.00,'','3','1','Inventory sold','1','','sales','67','','No',NULL,NULL,''),(3696,'5500','31684254380','2023-05-16 19:26:34',600.00,NULL,'','3','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3697,'1000','31684254380','2023-05-16 19:26:36',1080.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3698,'4000','31684254380','2023-05-16 19:26:36',NULL,280.00,'','3','1','Good sold','1','','sales','6','','No',NULL,NULL,''),(3699,'4000','31684254380','2023-05-16 19:26:20',NULL,800.00,'','3','1','Good sold','1','','sales','67','','No',NULL,NULL,''),(3700,'1000','31684254571','2023-05-16 19:29:33',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3701,'4000','31684254571','2023-05-16 19:29:33',NULL,150.00,'','3','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(3702,'1000','31684257521','2023-05-16 20:18:42',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3703,'4000','31684257521','2023-05-16 20:18:42',NULL,150.00,'','3','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(3704,'1000','31684259946','2023-05-16 20:59:17',600.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3705,'4000','31684259946','2023-05-16 20:59:17',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(3706,'4000','31684259946','2023-05-16 20:59:06',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(3707,'4000','31684259946','2023-05-16 20:59:11',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(3708,'1000','31684261562','2023-05-16 21:26:03',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3709,'4000','31684261562','2023-05-16 21:26:03',NULL,280.00,'','3','1','Good sold','1','','sales','6','','No',NULL,NULL,''),(3710,'1000','31684261793','2023-05-16 21:29:54',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3711,'4000','31684261793','2023-05-16 21:29:54',NULL,250.00,'','3','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(3712,'1000','31684269278','2023-05-16 23:34:39',280.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'martin'),(3713,'4000','31684269278','2023-05-16 23:34:39',NULL,280.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(3714,'1000','31684269318','2023-05-16 23:35:19',200.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'martin'),(3715,'4000','31684269318','2023-05-16 23:35:19',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(3716,'1000','31684315657','2023-05-17 12:27:38',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3717,'4000','31684315657','2023-05-17 12:27:38',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(3718,'1000','31684315905','2023-05-17 12:31:47',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3719,'4000','31684315905','2023-05-17 12:31:47',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(3720,'1000','31684315922','2023-05-17 12:32:07',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3721,'4000','31684315922','2023-05-17 12:32:07',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(3722,'4000','31684315922','2023-05-17 12:32:02',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(3723,'1000','31684315947','2023-05-17 12:32:29',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3724,'4000','31684315947','2023-05-17 12:32:29',NULL,280.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(3725,'1000','31684322245','2023-05-17 14:17:38',500.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3726,'4000','31684322245','2023-05-17 14:17:38',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(3727,'4000','31684322245','2023-05-17 14:17:25',NULL,150.00,'','3','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(3728,'1000','31684331343','2023-05-17 16:49:05',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3729,'4000','31684331343','2023-05-17 16:49:05',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(3730,'1000','31684333855','2023-05-17 17:30:56',250.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'cedrick'),(3731,'4000','31684333855','2023-05-17 17:30:56',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(3732,'1000','31684333939','2023-05-17 17:32:20',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3733,'4000','31684333939','2023-05-17 17:32:20',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(3734,'1000','31684334195','2023-05-17 17:36:37',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3735,'4000','31684334195','2023-05-17 17:36:37',NULL,250.00,'','3','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(3736,'1000','31684345384','2023-05-17 20:43:09',700.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3737,'4000','31684345384','2023-05-17 20:43:09',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(3738,'4000','31684345384','2023-05-17 20:43:04',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(3739,'1000','31684345940','2023-05-17 20:52:21',200.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'martin'),(3740,'4000','31684345940','2023-05-17 20:52:21',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(3741,'1000','31684345966','2023-05-17 20:52:47',280.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'manager'),(3742,'4000','31684345966','2023-05-17 20:52:47',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(3743,'1000','31684345997','2023-05-17 20:54:37',380.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3744,'4000','31684345997','2023-05-17 20:54:37',NULL,280.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(3745,'4000','31684345997','2023-05-17 20:53:17',NULL,100.00,'','3','1','Good sold','1','','sales','26','','No',NULL,NULL,''),(3746,'1000','31684400170','2023-05-18 11:56:12',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3748,'1000','31684400170','2023-05-18 11:56:12',550.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3749,'4000','31684400170','2023-05-18 11:56:12',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(3750,'4000','31684400170','2023-05-18 11:56:10',NULL,200.00,'','3','1','Good sold','1','','sales','15','','No',NULL,NULL,''),(3751,'1000','31684406140','2023-05-18 13:35:41',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3752,'4000','31684406140','2023-05-18 13:35:41',NULL,300.00,'','3','1','Good sold','1','','sales','29','','No',NULL,NULL,''),(3753,'1000','31684407900','2023-05-18 14:05:01',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3754,'4000','31684407900','2023-05-18 14:05:01',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(3755,'1000','41684412588','2023-05-18 15:23:21',480.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3756,'4000','41684412588','2023-05-18 15:23:21',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(3757,'4000','41684412588','2023-05-18 15:23:08',NULL,200.00,'','4','1','Good sold','1','','sales','19','','No',NULL,NULL,''),(3758,'1000','31684408025','2023-05-18 15:24:01',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3759,'4000','31684408025','2023-05-18 15:24:01',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(3760,'1000','41684413102','2023-05-18 15:31:43',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3761,'4000','41684413102','2023-05-18 15:31:43',NULL,150.00,'','4','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(3762,'1000','41684414243','2023-05-18 15:50:48',500.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3763,'4000','41684414243','2023-05-18 15:50:48',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(3764,'4000','41684414243','2023-05-18 15:50:43',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(3765,'1000','41684416571','2023-05-18 16:29:32',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3766,'4000','41684416571','2023-05-18 16:29:32',NULL,200.00,'','4','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(3767,'1000','41684419421','2023-05-18 17:17:02',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3768,'4000','41684419421','2023-05-18 17:17:02',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(3769,'1000','31684419728','2023-05-18 17:22:19',600.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3770,'4000','31684419728','2023-05-18 17:22:19',NULL,600.00,'','3','1','Good sold','1','','sales','40','','No',NULL,NULL,''),(3771,'1000','41684419969','2023-05-18 17:26:11',600.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3772,'4000','41684419969','2023-05-18 17:26:11',NULL,600.00,'','4','1','Good sold','1','','sales','40','','No',NULL,NULL,''),(3773,'1000','41684421067','2023-05-18 17:44:29',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3774,'4000','41684421067','2023-05-18 17:44:29',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(3775,'1000','31684422038','2023-05-18 18:00:40',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3776,'4000','31684422038','2023-05-18 18:00:40',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(3777,'1110','31684423029','2023-05-18 18:17:11',NULL,70.00,'','3','1','Inventory sold','1','','sales','60','','No',NULL,NULL,''),(3778,'5500','31684423029','2023-05-18 18:17:09',70.00,NULL,'','3','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3779,'1000','31684423029','2023-05-18 18:17:11',100.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3780,'4000','31684423029','2023-05-18 18:17:11',NULL,100.00,'','3','1','Good sold','1','','sales','60','','No',NULL,NULL,''),(3781,'1000','41684423103','2023-05-18 18:18:29',500.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3782,'4000','41684423103','2023-05-18 18:18:29',NULL,250.00,'','4','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(3783,'4000','41684423103','2023-05-18 18:18:23',NULL,250.00,'','4','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(3784,'1000','31684424073','2023-05-18 18:34:35',300.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'cedrick'),(3785,'4000','31684424073','2023-05-18 18:34:35',NULL,300.00,'','3','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(3786,'1000','31684429642','2023-05-18 20:07:23',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3787,'4000','31684429642','2023-05-18 20:07:23',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(3788,'1000','41684429930','2023-05-18 20:12:11',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3789,'4000','41684429930','2023-05-18 20:12:11',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(3790,'1000','41684431534','2023-05-18 20:38:55',200.00,NULL,'','4','1','Good sold','1','','sales','','','No',NULL,NULL,'mzae'),(3791,'4000','41684431534','2023-05-18 20:38:55',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(3792,'1000','41684437015','2023-05-18 22:10:17',350.00,NULL,'','4','1','Good sold','1','','sales','','','No',NULL,NULL,''),(3793,'4000','41684437015','2023-05-18 22:10:17',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(3794,'1000','41684477480','2023-05-19 09:24:51',480.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3795,'4000','41684477480','2023-05-19 09:24:51',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(3796,'4000','41684477480','2023-05-19 09:24:40',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(3797,'1000','41684477552','2023-05-19 09:25:54',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3798,'4000','41684477552','2023-05-19 09:25:54',NULL,250.00,'','4','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(3799,'1000','41684478322','2023-05-19 09:38:55',380.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3800,'4000','41684478322','2023-05-19 09:38:55',NULL,100.00,'','4','1','Good sold','1','','sales','26','','No',NULL,NULL,''),(3801,'4000','41684478322','2023-05-19 09:38:42',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(3802,'1000','41684482078','2023-05-19 10:41:38',780.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3803,'4000','41684482078','2023-05-19 10:41:38',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(3804,'4000','41684482078','2023-05-19 10:41:18',NULL,300.00,'','4','1','Good sold','1','','sales','39','','No',NULL,NULL,''),(3805,'4000','41684482078','2023-05-19 10:41:30',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(3806,'1000','41684489870','2023-05-19 12:51:12',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3807,'4000','41684489870','2023-05-19 12:51:12',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(3808,'1000','31684493108','2023-05-19 13:45:10',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3809,'4000','31684493108','2023-05-19 13:45:10',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(3810,'1000','31684502433','2023-05-19 16:20:35',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3811,'4000','31684502433','2023-05-19 16:20:35',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(3812,'1000','31684502587','2023-05-19 16:23:08',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3813,'4000','31684502587','2023-05-19 16:23:08',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(3814,'1000','31684504113','2023-05-19 16:48:34',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3815,'4000','31684504113','2023-05-19 16:48:34',NULL,250.00,'','3','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(3816,'1000','31684506115','2023-05-19 17:21:57',350.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'uncle kamande'),(3817,'4000','31684506115','2023-05-19 17:21:57',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(3818,'1000','31684519139','2023-05-19 20:59:05',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3819,'4000','31684519139','2023-05-19 20:59:05',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(3820,'1000','31684522400','2023-05-19 21:53:54',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3821,'4000','31684522400','2023-05-19 21:53:54',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(3822,'1000','31684524853','2023-05-19 22:34:15',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3823,'4000','31684524853','2023-05-19 22:34:15',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(3824,'1000','31684526622','2023-05-19 23:03:44',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3825,'4000','31684526622','2023-05-19 23:03:44',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(3826,'1000','31684528224','2023-05-19 23:30:26',200.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'george'),(3827,'4000','31684528224','2023-05-19 23:30:26',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(3828,'1000','31684528260','2023-05-19 23:31:05',400.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'martin'),(3829,'4000','31684528260','2023-05-19 23:31:05',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(3830,'4000','31684528260','2023-05-19 23:31:00',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(3831,'1000','31684528334','2023-05-19 23:32:16',200.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'purity'),(3832,'4000','31684528334','2023-05-19 23:32:16',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(3833,'1000','41684573314','2023-05-20 12:01:56',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3834,'4000','41684573314','2023-05-20 12:01:56',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(3835,'1000','41684591949','2023-05-20 17:12:30',280.00,NULL,'','4','1','Good sold','1','','sales','','','No',NULL,NULL,''),(3836,'4000','41684591949','2023-05-20 17:12:30',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(3837,'1000','31684595262','2023-05-20 18:07:44',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3838,'4000','31684595262','2023-05-20 18:07:44',NULL,150.00,'','3','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(3839,'1000','41684595425','2023-05-20 18:10:26',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3840,'4000','41684595425','2023-05-20 18:10:26',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(3841,'1000','31684597873','2023-05-20 18:51:17',430.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3842,'4000','31684597873','2023-05-20 18:51:17',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(3843,'4000','31684597873','2023-05-20 18:51:13',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(3844,'1000','41684604449','2023-05-20 20:40:50',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3845,'4000','41684604449','2023-05-20 20:40:50',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(3846,'1000','41684604536','2023-05-20 20:42:17',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3847,'4000','41684604536','2023-05-20 20:42:17',NULL,200.00,'','4','1','Good sold','1','','sales','9','','No',NULL,NULL,''),(3848,'1000','31684604672','2023-05-20 20:44:33',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3849,'4000','31684604672','2023-05-20 20:44:33',NULL,150.00,'','3','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(3850,'1000','31684604689','2023-05-20 20:44:51',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3851,'4000','31684604689','2023-05-20 20:44:51',NULL,200.00,'','3','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(3852,'1000','31684605086','2023-05-20 20:51:27',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3853,'4000','31684605086','2023-05-20 20:51:27',NULL,200.00,'','3','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(3854,'1000','41684607630','2023-05-20 21:33:51',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3855,'4000','41684607630','2023-05-20 21:33:51',NULL,200.00,'','4','1','Good sold','1','','sales','31','','No',NULL,NULL,''),(3856,'1000','31684608976','2023-05-20 21:56:18',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3857,'4000','31684608976','2023-05-20 21:56:18',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(3858,'1000','31684610744','2023-05-20 22:25:45',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3859,'4000','31684610744','2023-05-20 22:25:45',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(3860,'1000','41684612424','2023-05-20 22:53:45',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3861,'4000','41684612424','2023-05-20 22:53:45',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(3862,'1000','31684656804','2023-05-21 11:13:25',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3863,'4000','31684656804','2023-05-21 11:13:25',NULL,200.00,'','3','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(3864,'1000','31684666703','2023-05-21 13:58:25',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3865,'4000','31684666703','2023-05-21 13:58:25',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(3866,'1000','41684682133','2023-05-21 18:15:38',500.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3867,'4000','41684682133','2023-05-21 18:15:38',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(3868,'4000','41684682133','2023-05-21 18:15:33',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(3869,'1000','31684687481','2023-05-21 19:44:43',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3870,'4000','31684687481','2023-05-21 19:44:43',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(3871,'1000','41684688337','2023-05-21 19:58:58',280.00,NULL,'','4','1','Good sold','1','','sales','','','No',NULL,NULL,''),(3872,'4000','41684688337','2023-05-21 19:58:58',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(3873,'1000','31684695908','2023-05-21 22:05:09',200.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,''),(3874,'4000','31684695908','2023-05-21 22:05:09',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(3875,'1000','41684745048','2023-05-22 11:44:09',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3876,'4000','41684745048','2023-05-22 11:44:09',NULL,150.00,'','4','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(3877,'1000','41684755101','2023-05-22 14:31:43',200.00,NULL,'','4','1','Good sold','1','','sales','','','No',NULL,NULL,''),(3878,'4000','41684755101','2023-05-22 14:31:43',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(3879,'1000','41684769775','2023-05-22 18:36:16',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3880,'4000','41684769775','2023-05-22 18:36:16',NULL,150.00,'','4','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(3881,'1000','41684771193','2023-05-22 18:59:54',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3882,'4000','41684771193','2023-05-22 18:59:54',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(3883,'1000','41684773722','2023-05-22 19:42:07',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3884,'4000','41684773722','2023-05-22 19:42:07',NULL,200.00,'','4','1','Good sold','1','','sales','18','','No',NULL,NULL,''),(3885,'4000','41684773722','2023-05-22 19:42:02',NULL,200.00,'','4','1','Good sold','1','','sales','16','','No',NULL,NULL,''),(3886,'1000','41684780466','2023-05-22 21:34:28',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3887,'4000','41684780466','2023-05-22 21:34:28',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(3888,'1110','41684836767','2023-05-23 13:12:49',NULL,150.00,'','4','1','Inventory sold','1','','sales','55','','No',NULL,NULL,''),(3889,'5500','41684836767','2023-05-23 13:12:47',150.00,NULL,'','4','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(3890,'1000','41684836767','2023-05-23 13:12:49',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3891,'4000','41684836767','2023-05-23 13:12:49',NULL,200.00,'','4','1','Good sold','1','','sales','55','','No',NULL,NULL,''),(3892,'1000','41684836809','2023-05-23 13:13:31',200.00,NULL,'','4','1','Good sold','1','','sales','','','No',NULL,NULL,''),(3893,'4000','41684836809','2023-05-23 13:13:31',NULL,200.00,'','4','1','Good sold','1','','sales','16','','No',NULL,NULL,''),(3894,'1000','41684844697','2023-05-23 15:24:58',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3895,'4000','41684844697','2023-05-23 15:24:58',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(3896,'1000','41684845275','2023-05-23 15:34:36',200.00,NULL,'','4','1','Good sold','1','','sales','','','No',NULL,NULL,''),(3897,'4000','41684845275','2023-05-23 15:34:36',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(3898,'1000','31684854489','2023-05-23 18:08:11',280.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'manager'),(3899,'4000','31684854489','2023-05-23 18:08:11',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(3900,'1000','31684854536','2023-05-23 18:08:57',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3901,'4000','31684854536','2023-05-23 18:08:57',NULL,200.00,'','3','1','Good sold','1','','sales','16','','No',NULL,NULL,''),(3902,'1000','31684856830','2023-05-23 18:47:12',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3903,'4000','31684856830','2023-05-23 18:47:12',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(3904,'1000','41684856876','2023-05-23 18:47:58',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3905,'4000','41684856876','2023-05-23 18:47:58',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(3906,'1000','31684857048','2023-05-23 18:50:50',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3907,'4000','31684857048','2023-05-23 18:50:50',NULL,200.00,'','3','1','Good sold','1','','sales','15','','No',NULL,NULL,''),(3908,'1000','31684860694','2023-05-23 19:51:35',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3909,'4000','31684860694','2023-05-23 19:51:35',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(3910,'1000','31684860708','2023-05-23 19:51:50',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3911,'4000','31684860708','2023-05-23 19:51:50',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(3912,'1000','31684860891','2023-05-23 19:54:52',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3913,'4000','31684860891','2023-05-23 19:54:52',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(3914,'1000','31684866014','2023-05-23 21:20:20',450.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3915,'4000','31684866014','2023-05-23 21:20:20',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(3916,'4000','31684866014','2023-05-23 21:20:14',NULL,250.00,'','3','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(3917,'1000','31684869620','2023-05-23 22:20:22',200.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'mzae'),(3918,'4000','31684869620','2023-05-23 22:20:22',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(3919,'1000','31684869665','2023-05-23 22:21:06',300.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'cedrick'),(3920,'4000','31684869665','2023-05-23 22:21:06',NULL,300.00,'','3','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(3921,'1000','31684870210','2023-05-23 22:30:12',280.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'purity'),(3922,'4000','31684870210','2023-05-23 22:30:12',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(3923,'1000','31684922291','2023-05-24 12:58:12',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3924,'4000','31684922291','2023-05-24 12:58:12',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(3925,'1000','31684932481','2023-05-24 15:48:02',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3926,'4000','31684932481','2023-05-24 15:48:02',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(3927,'1000','31684932566','2023-05-24 15:49:28',200.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'george'),(3928,'4000','31684932566','2023-05-24 15:49:28',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(3929,'1000','31684932595','2023-05-24 15:49:57',250.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'cedrick'),(3930,'4000','31684932595','2023-05-24 15:49:57',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(3931,'1000','31684933379','2023-05-24 16:03:10',400.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3932,'4000','31684933379','2023-05-24 16:03:10',NULL,200.00,'','3','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(3933,'4000','31684933379','2023-05-24 16:02:59',NULL,200.00,'','3','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(3934,'1000','31684936508','2023-05-24 16:55:10',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3935,'4000','31684936508','2023-05-24 16:55:10',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(3936,'1000','31684938379','2023-05-24 17:26:20',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3938,'1000','31684938432','2023-05-24 17:28:41',400.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3939,'4000','31684938432','2023-05-24 17:28:41',NULL,200.00,'','3','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(3940,'4000','31684938432','2023-05-24 17:27:12',NULL,200.00,'','3','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(3941,'1000','31684938544','2023-05-24 17:29:06',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3942,'4000','31684938544','2023-05-24 17:29:06',NULL,280.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(3943,'1000','31684938379','2023-05-24 17:26:20',400.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3944,'4000','31684938379','2023-05-24 17:26:20',NULL,200.00,'','3','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(3945,'4000','31684938379','2023-05-24 17:26:19',NULL,200.00,'','3','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(3946,'1000','31684942835','2023-05-24 18:40:36',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3947,'4000','31684942835','2023-05-24 18:40:36',NULL,200.00,'','3','1','Good sold','1','','sales','18','','No',NULL,NULL,''),(3948,'1000','31684943896','2023-05-24 18:58:17',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3949,'4000','31684943896','2023-05-24 18:58:17',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(3950,'1000','31684944691','2023-05-24 19:11:33',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3951,'4000','31684944691','2023-05-24 19:11:33',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(3952,'1000','31684948171','2023-05-24 20:09:32',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3953,'4000','31684948171','2023-05-24 20:09:32',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(3954,'1000','31684949740','2023-05-24 20:35:41',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3955,'4000','31684949740','2023-05-24 20:35:41',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(3956,'1000','31684951353','2023-05-24 21:02:35',280.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'manager'),(3957,'4000','31684951353','2023-05-24 21:02:35',NULL,280.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(3958,'1000','31684955452','2023-05-24 22:10:53',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3959,'4000','31684955452','2023-05-24 22:10:53',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(3960,'1000','31684956757','2023-05-24 22:32:39',200.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'george'),(3961,'4000','31684956757','2023-05-24 22:32:39',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(3962,'1000','31684956892','2023-05-24 22:34:53',250.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'cedrick'),(3963,'4000','31684956892','2023-05-24 22:34:53',NULL,250.00,'','3','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(3964,'1000','41685028008','2023-05-25 18:20:10',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3965,'4000','41685028008','2023-05-25 18:20:10',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(3966,'1000','41685029542','2023-05-25 18:45:43',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3967,'4000','41685029542','2023-05-25 18:45:43',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(3968,'1000','41685029613','2023-05-25 18:46:55',280.00,NULL,'','4','1','Good sold','1','','sales','','','No',NULL,NULL,'ny9x'),(3969,'4000','41685029613','2023-05-25 18:46:55',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(3970,'1000','31685029838','2023-05-25 18:50:39',280.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'cedrick'),(3971,'4000','31685029838','2023-05-25 18:50:39',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(3972,'1000','31685029931','2023-05-25 18:52:13',280.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'ny9x'),(3973,'4000','31685029931','2023-05-25 18:52:13',NULL,280.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(3974,'1000','31685030086','2023-05-25 18:54:47',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3975,'4000','31685030086','2023-05-25 18:54:47',NULL,200.00,'','3','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(3976,'1000','31685031799','2023-05-25 19:23:20',250.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'cedrick'),(3977,'4000','31685031799','2023-05-25 19:23:20',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(3978,'1000','41685032309','2023-05-25 19:31:51',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3979,'4000','41685032309','2023-05-25 19:31:51',NULL,250.00,'','4','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(3980,'1000','41685034465','2023-05-25 20:07:59',380.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3981,'4000','41685034465','2023-05-25 20:07:59',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(3982,'4000','41685034465','2023-05-25 20:07:45',NULL,100.00,'','4','1','Good sold','1','','sales','26','','No',NULL,NULL,''),(3983,'1000','41685037804','2023-05-25 21:03:25',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3984,'4000','41685037804','2023-05-25 21:03:25',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(3985,'1000','31685037867','2023-05-25 21:04:29',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3986,'4000','31685037867','2023-05-25 21:04:29',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(3987,'1000','41685039885','2023-05-25 21:38:06',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3988,'4000','41685039885','2023-05-25 21:38:06',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(3989,'1000','41685039915','2023-05-25 21:38:37',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3990,'4000','41685039915','2023-05-25 21:38:37',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(3991,'1000','41685091440','2023-05-26 11:57:21',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3992,'4000','41685091440','2023-05-26 11:57:21',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(3993,'1000','41685091633','2023-05-26 12:00:34',280.00,NULL,'','4','1','Good sold','1','','sales','','','No',NULL,NULL,'purity'),(3994,'4000','41685091633','2023-05-26 12:00:34',NULL,280.00,'','4','1','Good sold','1','','sales','6','','No',NULL,NULL,''),(3995,'1000','41685093014','2023-05-26 12:23:36',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3996,'4000','41685093014','2023-05-26 12:23:36',NULL,150.00,'','4','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(3997,'1000','31685095305','2023-05-26 13:01:47',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(3998,'4000','31685095305','2023-05-26 13:01:47',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(3999,'1000','31685098448','2023-05-26 13:54:10',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4000,'4000','31685098448','2023-05-26 13:54:10',NULL,150.00,'','3','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(4001,'1000','31685102836','2023-05-26 15:07:18',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4002,'4000','31685102836','2023-05-26 15:07:18',NULL,200.00,'','3','1','Good sold','1','','sales','16','','No',NULL,NULL,''),(4003,'1110','41685105538','2023-05-26 15:52:20',NULL,150.00,'','4','1','Inventory sold','1','','sales','55','','No',NULL,NULL,''),(4004,'5500','41685105538','2023-05-26 15:52:18',150.00,NULL,'','4','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4005,'1000','41685105538','2023-05-26 15:52:20',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4006,'4000','41685105538','2023-05-26 15:52:20',NULL,200.00,'','4','1','Good sold','1','','sales','55','','No',NULL,NULL,''),(4007,'1000','41685105581','2023-05-26 15:53:03',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4008,'4000','41685105581','2023-05-26 15:53:03',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(4009,'1000','31685107197','2023-05-26 16:20:14',480.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4010,'4000','31685107197','2023-05-26 16:20:14',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(4011,'4000','31685107197','2023-05-26 16:19:57',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(4012,'1000','41685113999','2023-05-26 18:13:20',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4013,'4000','41685113999','2023-05-26 18:13:20',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(4014,'1000','31685115153','2023-05-26 18:32:35',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4015,'4000','31685115153','2023-05-26 18:32:35',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(4016,'1000','41685115757','2023-05-26 18:42:38',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4017,'4000','41685115757','2023-05-26 18:42:38',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(4018,'1000','31685122354','2023-05-26 20:32:39',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4019,'4000','31685122354','2023-05-26 20:32:39',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(4020,'4000','31685122354','2023-05-26 20:32:34',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(4021,'1000','31685123228','2023-05-26 20:47:09',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4022,'4000','31685123228','2023-05-26 20:47:09',NULL,280.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(4023,'1000','41685126895','2023-05-26 21:48:16',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4024,'4000','41685126895','2023-05-26 21:48:16',NULL,150.00,'','4','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(4025,'1000','31685126935','2023-05-26 21:48:57',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4026,'4000','31685126935','2023-05-26 21:48:57',NULL,200.00,'','3','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(4027,'1000','31685127912','2023-05-26 22:05:13',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4028,'4000','31685127912','2023-05-26 22:05:13',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(4029,'1000','31685130536','2023-05-26 22:48:57',280.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'rogers'),(4030,'4000','31685130536','2023-05-26 22:48:57',NULL,280.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(4031,'1000','31685130997','2023-05-26 22:56:38',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4032,'4000','31685130997','2023-05-26 22:56:38',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(4033,'1000','41685171101','2023-05-27 10:05:03',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4034,'4000','41685171101','2023-05-27 10:05:03',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(4035,'1000','41685173941','2023-05-27 10:52:22',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4036,'4000','41685173941','2023-05-27 10:52:22',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(4037,'1000','41685180040','2023-05-27 12:34:01',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4038,'4000','41685180040','2023-05-27 12:34:01',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(4039,'1000','41685186734','2023-05-27 14:25:35',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4040,'4000','41685186734','2023-05-27 14:25:35',NULL,150.00,'','4','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(4041,'1000','41685188062','2023-05-27 14:47:47',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4042,'4000','41685188062','2023-05-27 14:47:47',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(4043,'4000','41685188062','2023-05-27 14:47:42',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(4044,'1000','41685190301','2023-05-27 15:25:03',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4045,'4000','41685190301','2023-05-27 15:25:03',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(4046,'1000','41685191400','2023-05-27 15:43:22',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4047,'4000','41685191400','2023-05-27 15:43:22',NULL,150.00,'','4','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(4048,'1000','41685192785','2023-05-27 16:06:30',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4049,'4000','41685192785','2023-05-27 16:06:30',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(4050,'4000','41685192785','2023-05-27 16:06:25',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(4051,'1000','41685196050','2023-05-27 17:01:09',750.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4052,'4000','41685196050','2023-05-27 17:01:09',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(4053,'4000','41685196050','2023-05-27 17:00:50',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(4054,'4000','41685196050','2023-05-27 17:01:01',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(4055,'1000','31685200435','2023-05-27 18:13:56',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4056,'4000','31685200435','2023-05-27 18:13:56',NULL,200.00,'','3','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(4057,'1000','31685200455','2023-05-27 18:14:17',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4058,'4000','31685200455','2023-05-27 18:14:17',NULL,280.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(4059,'1000','31685200610','2023-05-27 18:16:51',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4060,'4000','31685200610','2023-05-27 18:16:51',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(4061,'1000','41685202610','2023-05-27 18:50:39',700.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4062,'4000','41685202610','2023-05-27 18:50:39',NULL,250.00,'','4','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(4063,'4000','41685202610','2023-05-27 18:50:10',NULL,250.00,'','4','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(4064,'4000','41685202610','2023-05-27 18:50:19',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(4065,'1000','31685203412','2023-05-27 19:03:34',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4067,'1000','31685203412','2023-05-27 19:03:34',700.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4068,'4000','31685203412','2023-05-27 19:03:34',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(4069,'4000','31685203412','2023-05-27 19:03:32',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(4070,'1000','31685206675','2023-05-27 19:57:56',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4071,'4000','31685206675','2023-05-27 19:57:56',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(4072,'1000','31685208198','2023-05-27 20:23:20',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4073,'4000','31685208198','2023-05-27 20:23:20',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(4074,'1000','31685208237','2023-05-27 20:23:58',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4075,'4000','31685208237','2023-05-27 20:23:58',NULL,200.00,'','3','1','Good sold','1','','sales','15','','No',NULL,NULL,''),(4076,'1000','31685208309','2023-05-27 20:25:11',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4077,'4000','31685208309','2023-05-27 20:25:11',NULL,200.00,'','3','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(4078,'1000','31685217037','2023-05-27 22:50:39',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4079,'4000','31685217037','2023-05-27 22:50:39',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(4080,'1000','31685217609','2023-05-27 23:00:16',700.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4083,'1000','41685217708','2023-05-27 23:01:52',600.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4084,'4000','41685217708','2023-05-27 23:01:52',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(4085,'4000','41685217708','2023-05-27 23:01:48',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(4086,'1000','41685217927','2023-05-27 23:05:29',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4087,'4000','41685217927','2023-05-27 23:05:29',NULL,200.00,'','4','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(4088,'1000','31685217609','2023-05-27 23:00:16',1050.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4089,'4000','31685217609','2023-05-27 23:00:16',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(4090,'4000','31685217609','2023-05-27 23:00:09',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(4091,'4000','31685217609','2023-05-27 23:00:14',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(4092,'1000','31685220499','2023-05-27 23:48:30',550.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'marion'),(4093,'4000','31685220499','2023-05-27 23:48:30',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(4094,'4000','31685220499','2023-05-27 23:48:19',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(4095,'1000','31685220543','2023-05-27 23:49:09',400.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'martin'),(4096,'4000','31685220543','2023-05-27 23:49:09',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(4097,'4000','31685220543','2023-05-27 23:49:03',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(4098,'1000','31685220579','2023-05-27 23:49:41',280.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'manager'),(4099,'4000','31685220579','2023-05-27 23:49:41',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(4100,'1000','31685220614','2023-05-27 23:50:25',550.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'cedrick'),(4101,'4000','31685220614','2023-05-27 23:50:25',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(4102,'4000','31685220614','2023-05-27 23:50:14',NULL,300.00,'','3','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(4103,'1000','41685220708','2023-05-27 23:51:52',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4104,'4000','41685220708','2023-05-27 23:51:52',NULL,150.00,'','4','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(4105,'4000','41685220708','2023-05-27 23:51:48',NULL,150.00,'','4','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(4106,'1110','31685221113','2023-05-27 23:58:35',NULL,70.00,'','3','1','Inventory sold','1','','sales','60','','No',NULL,NULL,''),(4107,'5500','31685221113','2023-05-27 23:58:33',70.00,NULL,'','3','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4108,'1000','31685221113','2023-05-27 23:58:35',100.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4109,'4000','31685221113','2023-05-27 23:58:35',NULL,100.00,'','3','1','Good sold','1','','sales','60','','No',NULL,NULL,''),(4110,'1000','31685273878','2023-05-28 14:38:00',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4111,'4000','31685273878','2023-05-28 14:38:00',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(4112,'1000','31685274151','2023-05-28 14:42:33',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4113,'4000','31685274151','2023-05-28 14:42:33',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(4114,'1110','31685274854','2023-05-28 14:54:16',NULL,70.00,'','3','1','Inventory sold','1','','sales','60','','No',NULL,NULL,''),(4115,'5500','31685274854','2023-05-28 14:54:14',70.00,NULL,'','3','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4116,'1000','31685274854','2023-05-28 14:54:16',100.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4117,'4000','31685274854','2023-05-28 14:54:16',NULL,100.00,'','3','1','Good sold','1','','sales','60','','No',NULL,NULL,''),(4118,'1000','31685276616','2023-05-28 15:25:20',700.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4119,'4000','31685276616','2023-05-28 15:25:20',NULL,200.00,'','3','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(4120,'4000','31685276616','2023-05-28 15:23:36',NULL,300.00,'','3','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(4121,'4000','31685276616','2023-05-28 15:25:06',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(4122,'1000','41685283032','2023-05-28 17:10:37',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4123,'4000','41685283032','2023-05-28 17:10:37',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(4124,'4000','41685283032','2023-05-28 17:10:32',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(4125,'1000','41685283561','2023-05-28 17:19:23',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4126,'4000','41685283561','2023-05-28 17:19:23',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(4127,'1000','41685283616','2023-05-28 17:20:17',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4128,'4000','41685283616','2023-05-28 17:20:17',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(4129,'1000','41685284755','2023-05-28 17:39:20',450.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4130,'4000','41685284755','2023-05-28 17:39:20',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(4131,'4000','41685284755','2023-05-28 17:39:15',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(4132,'1000','41685288215','2023-05-28 18:36:57',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4133,'4000','41685288215','2023-05-28 18:36:57',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(4134,'1000','31685290601','2023-05-28 19:16:43',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4135,'4000','31685290601','2023-05-28 19:16:43',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(4136,'1000','31685290638','2023-05-28 19:17:19',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4137,'4000','31685290638','2023-05-28 19:17:19',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(4138,'1000','31685291824','2023-05-28 19:37:06',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4139,'4000','31685291824','2023-05-28 19:37:06',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(4140,'1000','31685293283','2023-05-28 20:01:24',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4141,'4000','31685293283','2023-05-28 20:01:24',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(4142,'1000','31685293303','2023-05-28 20:01:45',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4143,'4000','31685293303','2023-05-28 20:01:45',NULL,150.00,'','3','1','Good sold','1','','sales','61','','No',NULL,NULL,''),(4144,'1000','41685296610','2023-05-28 20:56:52',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4145,'4000','41685296610','2023-05-28 20:56:52',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(4146,'1000','41685296622','2023-05-28 20:57:03',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4147,'4000','41685296622','2023-05-28 20:57:03',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(4148,'1000','41685297916','2023-05-28 21:18:38',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4149,'4000','41685297916','2023-05-28 21:18:38',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(4150,'1000','41685357757','2023-05-29 13:56:04',480.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4151,'4000','41685357757','2023-05-29 13:56:04',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(4152,'4000','41685357757','2023-05-29 13:55:57',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(4153,'1000','41685372635','2023-05-29 18:03:57',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4154,'4000','41685372635','2023-05-29 18:03:57',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(4155,'1000','41685372652','2023-05-29 18:04:13',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4156,'4000','41685372652','2023-05-29 18:04:13',NULL,200.00,'','4','1','Good sold','1','','sales','19','','No',NULL,NULL,''),(4157,'1000','41685373717','2023-05-29 18:21:59',30.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4158,'4000','41685373717','2023-05-29 18:21:59',NULL,30.00,'','4','1','Good sold','1','','sales','58','','No',NULL,NULL,''),(4159,'1000','41685373743','2023-05-29 18:22:35',500.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4160,'4000','41685373743','2023-05-29 18:22:35',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(4161,'4000','41685373743','2023-05-29 18:22:23',NULL,250.00,'','4','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(4162,'1000','41685374594','2023-05-29 18:36:35',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4163,'4000','41685374594','2023-05-29 18:36:35',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(4164,'1000','41685375447','2023-05-29 18:50:49',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4165,'4000','41685375447','2023-05-29 18:50:49',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(4166,'1000','41685376679','2023-05-29 19:11:21',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4167,'4000','41685376679','2023-05-29 19:11:21',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(4168,'1000','41685381178','2023-05-29 20:26:24',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4169,'4000','41685381178','2023-05-29 20:26:24',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(4170,'4000','41685381178','2023-05-29 20:26:18',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(4171,'1000','41685384110','2023-05-29 21:15:11',200.00,NULL,'','4','1','Good sold','1','','sales','','','No',NULL,NULL,''),(4172,'4000','41685384110','2023-05-29 21:15:11',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(4173,'1000','41685429212','2023-05-30 09:47:01',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4174,'4000','41685429212','2023-05-30 09:47:01',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(4175,'1000','41685431732','2023-05-30 10:28:53',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4176,'4000','41685431732','2023-05-30 10:28:53',NULL,150.00,'','4','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(4177,'1000','41685438899','2023-05-30 12:28:20',200.00,NULL,'','4','1','Good sold','1','','sales','','','No',NULL,NULL,''),(4178,'4000','41685438899','2023-05-30 12:28:20',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(4179,'1000','41685441246','2023-05-30 13:07:28',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4180,'4000','41685441246','2023-05-30 13:07:28',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(4181,'1000','41685449752','2023-05-30 15:29:14',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4182,'4000','41685449752','2023-05-30 15:29:14',NULL,150.00,'','4','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(4183,'1000','31685452035','2023-05-30 16:07:16',400.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4184,'4000','31685452035','2023-05-30 16:07:16',NULL,400.00,'','3','1','Good sold','1','','sales','56','','No',NULL,NULL,''),(4185,'1000','41685455493','2023-05-30 17:04:54',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4186,'4000','41685455493','2023-05-30 17:04:54',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(4187,'1000','41685459249','2023-05-30 18:08:15',450.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4188,'4000','41685459249','2023-05-30 18:08:15',NULL,200.00,'','4','1','Good sold','1','','sales','16','','No',NULL,NULL,''),(4189,'4000','41685459249','2023-05-30 18:07:29',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(4190,'1000','31685459970','2023-05-30 18:19:31',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4191,'4000','31685459970','2023-05-30 18:19:31',NULL,280.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(4192,'1000','31685460565','2023-05-30 18:29:27',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4193,'4000','31685460565','2023-05-30 18:29:27',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(4194,'1000','31685461665','2023-05-30 18:47:47',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4195,'4000','31685461665','2023-05-30 18:47:47',NULL,250.00,'','3','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(4196,'1000','31685468939','2023-05-30 20:49:01',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4197,'4000','31685468939','2023-05-30 20:49:01',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(4198,'1000','31685474022','2023-05-30 22:13:44',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4199,'4000','31685474022','2023-05-30 22:13:44',NULL,250.00,'','3','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(4200,'1000','31685475882','2023-05-30 22:44:49',350.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'martin'),(4201,'4000','31685475882','2023-05-30 22:44:49',NULL,150.00,'','3','1','Good sold','1','','sales','61','','No',NULL,NULL,''),(4202,'4000','31685475882','2023-05-30 22:44:42',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(4203,'1000','31685475934','2023-05-30 22:45:35',300.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'cedrick'),(4204,'4000','31685475934','2023-05-30 22:45:35',NULL,300.00,'','3','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(4205,'1000','31685475957','2023-05-30 22:45:58',200.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'purity'),(4206,'4000','31685475957','2023-05-30 22:45:58',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(4207,'1000','31685540803','2023-05-31 16:46:44',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4208,'4000','31685540803','2023-05-31 16:46:44',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(4209,'1000','31685543045','2023-05-31 17:24:06',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4210,'4000','31685543045','2023-05-31 17:24:06',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(4211,'1000','31685543092','2023-05-31 17:24:54',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4212,'4000','31685543092','2023-05-31 17:24:54',NULL,150.00,'','3','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(4213,'1000','31685546835','2023-05-31 18:27:16',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4214,'4000','31685546835','2023-05-31 18:27:16',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(4215,'1000','31685546861','2023-05-31 18:27:42',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4216,'4000','31685546861','2023-05-31 18:27:42',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(4217,'1000','31685546893','2023-05-31 18:28:15',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4218,'4000','31685546893','2023-05-31 18:28:15',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(4219,'1000','31685547128','2023-05-31 18:32:10',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4220,'4000','31685547128','2023-05-31 18:32:10',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(4221,'1000','31685550164','2023-05-31 19:22:46',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4222,'4000','31685550164','2023-05-31 19:22:46',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(4223,'1000','31685552174','2023-05-31 19:56:15',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4224,'4000','31685552174','2023-05-31 19:56:15',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(4225,'1000','31685558817','2023-05-31 21:47:45',1040.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4226,'4000','31685558817','2023-05-31 21:47:45',NULL,280.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(4227,'4000','31685558817','2023-05-31 21:46:57',NULL,280.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(4228,'4000','31685558817','2023-05-31 21:47:02',NULL,100.00,'','3','1','Good sold','1','','sales','26','','No',NULL,NULL,''),(4229,'4000','31685558817','2023-05-31 21:47:09',NULL,100.00,'','3','1','Good sold','1','','sales','26','','No',NULL,NULL,''),(4230,'4000','31685558817','2023-05-31 21:47:17',NULL,280.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(4231,'1000','31685560011','2023-05-31 22:06:53',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4232,'4000','31685560011','2023-05-31 22:06:53',NULL,150.00,'','3','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(4233,'1000','31685562066','2023-05-31 22:41:07',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4234,'4000','31685562066','2023-05-31 22:41:07',NULL,280.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(4235,'1000','31685562684','2023-05-31 22:51:25',280.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'manager'),(4236,'4000','31685562684','2023-05-31 22:51:25',NULL,280.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(4237,'1000','31685562701','2023-05-31 22:51:42',350.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'dad'),(4238,'4000','31685562701','2023-05-31 22:51:42',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(4239,'1000','31685563421','2023-05-31 23:03:42',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4240,'4000','31685563421','2023-05-31 23:03:42',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(4241,'1000','31685563942','2023-05-31 23:12:24',350.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'manager'),(4242,'4000','31685563942','2023-05-31 23:12:24',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(4243,'1000','31685564028','2023-05-31 23:13:49',200.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'manager'),(4244,'4000','31685564028','2023-05-31 23:13:49',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(4245,'1000','31685564069','2023-05-31 23:14:30',200.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'cedrick'),(4246,'4000','31685564069','2023-05-31 23:14:30',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(4247,'1000','31685564444','2023-05-31 23:20:46',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4248,'4000','31685564444','2023-05-31 23:20:46',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(4249,'1000','31685606549','2023-06-01 11:02:31',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4250,'4000','31685606549','2023-06-01 11:02:31',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(4251,'1000','31685617594','2023-06-01 14:06:36',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4252,'4000','31685617594','2023-06-01 14:06:36',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(4253,'1000','31685617659','2023-06-01 14:07:40',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4254,'4000','31685617659','2023-06-01 14:07:40',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(4255,'1000','31685618010','2023-06-01 14:13:32',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4256,'4000','31685618010','2023-06-01 14:13:32',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(4257,'1000','31685619226','2023-06-01 14:33:47',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4258,'4000','31685619226','2023-06-01 14:33:47',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(4259,'1000','31685619257','2023-06-01 14:34:18',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4260,'4000','31685619257','2023-06-01 14:34:18',NULL,300.00,'','3','1','Good sold','1','','sales','29','','No',NULL,NULL,''),(4261,'1000','41685622404','2023-06-01 15:26:45',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4262,'4000','41685622404','2023-06-01 15:26:45',NULL,300.00,'','4','1','Good sold','1','','sales','29','','No',NULL,NULL,''),(4263,'1000','41685625316','2023-06-01 16:15:17',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4264,'4000','41685625316','2023-06-01 16:15:17',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(4265,'1000','41685627471','2023-06-01 16:51:13',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4266,'4000','41685627471','2023-06-01 16:51:13',NULL,150.00,'','4','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(4267,'1000','31685628132','2023-06-01 17:02:22',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4268,'4000','31685628132','2023-06-01 17:02:22',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(4269,'1000','41685628605','2023-06-01 17:10:07',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4270,'4000','41685628605','2023-06-01 17:10:07',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(4271,'1000','31685629303','2023-06-01 17:21:44',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4272,'4000','31685629303','2023-06-01 17:21:44',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(4273,'1000','41685630330','2023-06-01 17:38:51',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4274,'4000','41685630330','2023-06-01 17:38:51',NULL,250.00,'','4','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(4275,'1000','41685635138','2023-06-01 18:58:59',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4276,'4000','41685635138','2023-06-01 18:58:59',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(4277,'1110','41685635159','2023-06-01 18:59:26',NULL,0.00,'','4','1','Inventory sold','1','','sales','16','','No',NULL,NULL,''),(4278,'1110','41685635159','2023-06-01 18:59:19',NULL,200.00,'','4','1','Inventory sold','1','','sales','62','','No',NULL,NULL,''),(4279,'5500','41685635159','2023-06-01 18:59:24',200.00,NULL,'','4','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4280,'1000','41685635159','2023-06-01 18:59:26',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4281,'4000','41685635159','2023-06-01 18:59:26',NULL,200.00,'','4','1','Good sold','1','','sales','16','','No',NULL,NULL,''),(4282,'4000','41685635159','2023-06-01 18:59:19',NULL,200.00,'','4','1','Good sold','1','','sales','62','','No',NULL,NULL,''),(4283,'1000','41685636262','2023-06-01 19:17:43',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4284,'4000','41685636262','2023-06-01 19:17:43',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(4285,'1000','41685639053','2023-06-01 20:04:15',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4286,'4000','41685639053','2023-06-01 20:04:15',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(4287,'1000','41685643901','2023-06-01 21:25:02',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4288,'4000','41685643901','2023-06-01 21:25:02',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(4289,'1000','41685644281','2023-06-01 21:31:22',350.00,NULL,'','4','1','Good sold','1','','sales','','','No',NULL,NULL,''),(4290,'4000','41685644281','2023-06-01 21:31:22',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(4291,'1000','41685644308','2023-06-01 21:31:50',300.00,NULL,'','4','1','Good sold','1','','sales','','','No',NULL,NULL,''),(4292,'4000','41685644308','2023-06-01 21:31:50',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(4293,'1110','41685644402','2023-06-01 21:33:23',NULL,150.00,'','4','1','Inventory sold','1','','sales','53','','No',NULL,NULL,''),(4294,'5500','41685644402','2023-06-01 21:33:22',150.00,NULL,'','4','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4295,'1000','41685644402','2023-06-01 21:33:23',200.00,NULL,'','4','1','Good sold','1','','sales','','','No',NULL,NULL,''),(4296,'4000','41685644402','2023-06-01 21:33:23',NULL,200.00,'','4','1','Good sold','1','','sales','53','','No',NULL,NULL,''),(4297,'1000','41685644595','2023-06-01 21:36:37',200.00,NULL,'','4','1','Good sold','1','','sales','','','No',NULL,NULL,''),(4298,'4000','41685644595','2023-06-01 21:36:37',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(4299,'1000','41685686208','2023-06-02 09:10:12',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4300,'4000','41685686208','2023-06-02 09:10:12',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(4301,'4000','41685686208','2023-06-02 09:10:08',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(4302,'1000','41685691467','2023-06-02 10:37:49',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4303,'4000','41685691467','2023-06-02 10:37:49',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(4304,'1000','31685710431','2023-06-02 15:53:53',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4305,'4000','31685710431','2023-06-02 15:53:53',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(4306,'1000','41685712121','2023-06-02 16:22:03',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4307,'4000','41685712121','2023-06-02 16:22:03',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(4308,'1000','31685712215','2023-06-02 16:23:36',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4309,'4000','31685712215','2023-06-02 16:23:36',NULL,200.00,'','3','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(4310,'1000','41685717353','2023-06-02 17:49:15',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4311,'4000','41685717353','2023-06-02 17:49:15',NULL,250.00,'','4','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(4312,'1000','31685717423','2023-06-02 17:50:24',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4313,'4000','31685717423','2023-06-02 17:50:24',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(4314,'1000','31685723319','2023-06-02 19:28:53',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4315,'4000','31685723319','2023-06-02 19:28:53',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(4316,'1000','31685726141','2023-06-02 20:15:42',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4317,'4000','31685726141','2023-06-02 20:15:42',NULL,200.00,'','3','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(4318,'1000','31685726374','2023-06-02 20:19:39',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4319,'4000','31685726374','2023-06-02 20:19:39',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(4320,'4000','31685726374','2023-06-02 20:19:34',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(4321,'1000','41685726994','2023-06-02 20:29:55',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4322,'4000','41685726994','2023-06-02 20:29:55',NULL,150.00,'','4','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(4323,'1000','31685730861','2023-06-02 21:34:22',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4324,'4000','31685730861','2023-06-02 21:34:22',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(4325,'1000','31685732028','2023-06-02 21:53:50',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4326,'4000','31685732028','2023-06-02 21:53:50',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(4327,'1000','31685735760','2023-06-02 22:56:02',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4328,'4000','31685735760','2023-06-02 22:56:02',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(4329,'1000','31685737372','2023-06-02 23:22:58',560.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'martin'),(4330,'4000','31685737372','2023-06-02 23:22:58',NULL,280.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(4331,'4000','31685737372','2023-06-02 23:22:52',NULL,280.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(4332,'1000','31685737422','2023-06-02 23:23:43',300.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'cedrick'),(4333,'4000','31685737422','2023-06-02 23:23:43',NULL,300.00,'','3','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(4334,'1000','31685737462','2023-06-02 23:24:23',300.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'purity'),(4335,'4000','31685737462','2023-06-02 23:24:23',NULL,300.00,'','3','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(4336,'1000','41685779654','2023-06-03 11:07:36',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4337,'4000','41685779654','2023-06-03 11:07:36',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(4338,'1000','41685781066','2023-06-03 11:31:08',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4339,'4000','41685781066','2023-06-03 11:31:08',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(4340,'1000','41685782396','2023-06-03 11:53:17',200.00,NULL,'','4','1','Good sold','1','','sales','','','No',NULL,NULL,''),(4341,'4000','41685782396','2023-06-03 11:53:17',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(4342,'1000','41685783427','2023-06-03 12:10:48',540.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4343,'4000','41685783427','2023-06-03 12:10:48',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(4344,'4000','41685783427','2023-06-03 12:10:27',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(4345,'4000','41685783427','2023-06-03 12:10:31',NULL,30.00,'','4','1','Good sold','1','','sales','58','','No',NULL,NULL,''),(4346,'4000','41685783427','2023-06-03 12:10:44',NULL,30.00,'','4','1','Good sold','1','','sales','58','','No',NULL,NULL,''),(4347,'1000','41685786951','2023-06-03 13:09:13',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4348,'4000','41685786951','2023-06-03 13:09:13',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(4349,'1110','41685794947','2023-06-03 15:22:32',NULL,200.00,'','4','1','Inventory sold','1','','sales','62','','No',NULL,NULL,''),(4350,'5500','41685794947','2023-06-03 15:22:27',200.00,NULL,'','4','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4351,'1000','41685794947','2023-06-03 15:22:32',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4352,'4000','41685794947','2023-06-03 15:22:32',NULL,200.00,'','4','1','Good sold','1','','sales','62','','No',NULL,NULL,''),(4353,'1000','31685795844','2023-06-03 15:37:37',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4354,'4000','31685795844','2023-06-03 15:37:37',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(4355,'1000','31685796977','2023-06-03 15:56:18',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4356,'4000','31685796977','2023-06-03 15:56:18',NULL,300.00,'','3','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(4357,'1000','41685797248','2023-06-03 16:00:49',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4358,'4000','41685797248','2023-06-03 16:00:49',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(4359,'1000','41685798084','2023-06-03 16:14:46',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4360,'4000','41685798084','2023-06-03 16:14:46',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(4361,'1000','41685800996','2023-06-03 17:03:17',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4362,'4000','41685800996','2023-06-03 17:03:17',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(4363,'1000','31685801109','2023-06-03 17:05:10',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4364,'4000','31685801109','2023-06-03 17:05:10',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(4365,'1000','31685801202','2023-06-03 17:06:43',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4366,'4000','31685801202','2023-06-03 17:06:43',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(4367,'1000','41685805191','2023-06-03 18:13:12',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4368,'4000','41685805191','2023-06-03 18:13:12',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(4369,'1000','31685805851','2023-06-03 18:24:16',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4370,'4000','31685805851','2023-06-03 18:24:16',NULL,150.00,'','3','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(4371,'4000','31685805851','2023-06-03 18:24:11',NULL,150.00,'','3','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(4372,'1000','31685808772','2023-06-03 19:12:57',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4373,'4000','31685808772','2023-06-03 19:12:57',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(4374,'4000','31685808772','2023-06-03 19:12:52',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(4375,'1000','41685812359','2023-06-03 20:12:41',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4376,'4000','41685812359','2023-06-03 20:12:41',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(4377,'1000','41685812376','2023-06-03 20:12:58',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4378,'4000','41685812376','2023-06-03 20:12:58',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(4379,'1000','31685814930','2023-06-03 20:55:31',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4380,'4000','31685814930','2023-06-03 20:55:31',NULL,200.00,'','3','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(4381,'1000','31685815566','2023-06-03 21:06:07',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4382,'4000','31685815566','2023-06-03 21:06:07',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(4383,'1000','31685820012','2023-06-03 22:20:14',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4384,'4000','31685820012','2023-06-03 22:20:14',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(4385,'1000','31685821665','2023-06-03 22:47:46',300.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'cedrick'),(4386,'4000','31685821665','2023-06-03 22:47:46',NULL,300.00,'','3','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(4387,'1000','31685822331','2023-06-03 22:58:53',280.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'uncle kamande'),(4388,'4000','31685822331','2023-06-03 22:58:53',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(4389,'1000','31685822534','2023-06-03 23:02:15',280.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'dad'),(4390,'4000','31685822534','2023-06-03 23:02:15',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(4391,'1000','31685877057','2023-06-04 14:11:10',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4392,'4000','31685877057','2023-06-04 14:11:10',NULL,150.00,'','3','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(4393,'4000','31685877057','2023-06-04 14:10:57',NULL,150.00,'','3','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(4394,'1000','31685877107','2023-06-04 14:11:51',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4395,'4000','31685877107','2023-06-04 14:11:51',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(4396,'4000','31685877107','2023-06-04 14:11:47',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(4397,'1000','31685884865','2023-06-04 16:21:07',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4399,'1000','41685884986','2023-06-04 16:23:08',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4400,'4000','41685884986','2023-06-04 16:23:08',NULL,200.00,'','4','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(4401,'1000','41685889014','2023-06-04 17:30:15',280.00,NULL,'','4','1','Good sold','1','','sales','','','No',NULL,NULL,'manager'),(4402,'4000','41685889014','2023-06-04 17:30:15',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(4403,'1000','41685889037','2023-06-04 17:30:39',300.00,NULL,'','4','1','Good sold','1','','sales','','','No',NULL,NULL,'purity'),(4404,'4000','41685889037','2023-06-04 17:30:39',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(4405,'1000','41685891796','2023-06-04 18:16:37',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4406,'4000','41685891796','2023-06-04 18:16:37',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(4407,'1000','31685893936','2023-06-04 18:52:18',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4408,'4000','31685893936','2023-06-04 18:52:18',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(4409,'1000','41685948089','2023-06-05 09:54:50',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4410,'4000','41685948089','2023-06-05 09:54:50',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(4411,'1000','41685952456','2023-06-05 11:07:38',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4412,'4000','41685952456','2023-06-05 11:07:38',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(4413,'1000','41685957323','2023-06-05 12:28:44',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4414,'4000','41685957323','2023-06-05 12:28:44',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(4415,'1000','41685966170','2023-06-05 14:56:25',480.00,NULL,'','4','1','Good sold','1','','sales','','','No',NULL,NULL,''),(4416,'4000','41685966170','2023-06-05 14:56:25',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(4417,'4000','41685966170','2023-06-05 14:56:10',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(4418,'1000','41685966684','2023-06-05 15:04:46',200.00,NULL,'','4','1','Good sold','1','','sales','','','No',NULL,NULL,''),(4419,'4000','41685966684','2023-06-05 15:04:46',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(4420,'1000','41685967782','2023-06-05 15:23:03',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4421,'4000','41685967782','2023-06-05 15:23:03',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(4422,'1000','41685977489','2023-06-05 18:04:50',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4423,'4000','41685977489','2023-06-05 18:04:50',NULL,250.00,'','4','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(4424,'1000','41685978157','2023-06-05 18:15:58',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4425,'4000','41685978157','2023-06-05 18:15:58',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(4426,'1000','41685985239','2023-06-05 20:14:00',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4427,'4000','41685985239','2023-06-05 20:14:00',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(4428,'1000','41686035258','2023-06-06 10:08:08',960.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4429,'4000','41686035258','2023-06-06 10:08:08',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(4430,'4000','41686035258','2023-06-06 10:07:38',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(4431,'4000','41686035258','2023-06-06 10:07:42',NULL,200.00,'','4','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(4432,'4000','41686035258','2023-06-06 10:07:50',NULL,200.00,'','4','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(4433,'1000','41686049183','2023-06-06 14:00:02',1000.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4434,'4000','41686049183','2023-06-06 14:00:02',NULL,300.00,'','4','1','Good sold','1','','sales','33','','No',NULL,NULL,''),(4435,'4000','41686049183','2023-06-06 13:59:43',NULL,300.00,'','4','1','Good sold','1','','sales','33','','No',NULL,NULL,''),(4436,'4000','41686049183','2023-06-06 13:59:46',NULL,200.00,'','4','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(4437,'4000','41686049183','2023-06-06 13:59:57',NULL,200.00,'','4','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(4438,'1000','41686050101','2023-06-06 14:15:03',30.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4439,'4000','41686050101','2023-06-06 14:15:03',NULL,30.00,'','4','1','Good sold','1','','sales','58','','No',NULL,NULL,''),(4440,'1000','31686060365','2023-06-06 17:06:06',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4441,'4000','31686060365','2023-06-06 17:06:06',NULL,200.00,'','3','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(4442,'1000','31686060379','2023-06-06 17:06:20',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4443,'4000','31686060379','2023-06-06 17:06:20',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(4444,'1000','41686061614','2023-06-06 17:26:56',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4445,'4000','41686061614','2023-06-06 17:26:56',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(4446,'1000','31686066330','2023-06-06 18:45:31',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4447,'4000','31686066330','2023-06-06 18:45:31',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(4448,'1000','31686070345','2023-06-06 19:52:26',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4450,'1000','31686070456','2023-06-06 19:54:18',30.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4451,'4000','31686070456','2023-06-06 19:54:18',NULL,30.00,'','3','1','Good sold','1','','sales','58','','No',NULL,NULL,''),(4452,'1000','31686077112','2023-06-06 21:45:17',380.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4453,'4000','31686077112','2023-06-06 21:45:17',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(4454,'4000','31686077112','2023-06-06 21:45:12',NULL,30.00,'','3','1','Good sold','1','','sales','58','','No',NULL,NULL,''),(4455,'1000','31686077829','2023-06-06 21:57:10',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4456,'4000','31686077829','2023-06-06 21:57:10',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(4457,'1000','31686070345','2023-06-06 19:52:26',630.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4458,'4000','31686070345','2023-06-06 19:52:26',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(4459,'4000','31686070345','2023-06-06 19:52:25',NULL,280.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(4460,'1000','31686080130','2023-06-06 22:35:31',280.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'manager'),(4461,'4000','31686080130','2023-06-06 22:35:31',NULL,280.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(4462,'1000','31686080167','2023-06-06 22:36:08',300.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'cedrick'),(4463,'4000','31686080167','2023-06-06 22:36:08',NULL,300.00,'','3','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(4464,'1000','31686122205','2023-06-07 11:00:06',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4465,'4000','31686122205','2023-06-07 11:00:06',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(4466,'1000','31686125265','2023-06-07 11:07:47',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4467,'4000','31686125265','2023-06-07 11:07:47',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(4468,'1000','31686126137','2023-06-07 11:22:18',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4469,'4000','31686126137','2023-06-07 11:22:18',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(4470,'1000','31686126171','2023-06-07 11:22:52',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4471,'4000','31686126171','2023-06-07 11:22:52',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(4472,'1000','31686126315','2023-06-07 11:25:16',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4473,'4000','31686126315','2023-06-07 11:25:16',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(4474,'1000','31686126362','2023-06-07 11:26:04',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4475,'4000','31686126362','2023-06-07 11:26:04',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(4476,'1000','31686142449','2023-06-07 15:54:10',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4477,'4000','31686142449','2023-06-07 15:54:10',NULL,300.00,'','3','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(4478,'1000','31686142488','2023-06-07 15:54:49',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4479,'4000','31686142488','2023-06-07 15:54:49',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(4480,'1000','31686144485','2023-06-07 16:28:07',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4482,'1000','31686144485','2023-06-07 16:28:07',400.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4483,'4000','31686144485','2023-06-07 16:28:07',NULL,200.00,'','3','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(4484,'4000','31686144485','2023-06-07 16:28:05',NULL,200.00,'','3','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(4485,'1000','31686148272','2023-06-07 17:31:35',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4486,'4000','31686148272','2023-06-07 17:31:35',NULL,280.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(4487,'1000','31686148571','2023-06-07 17:36:12',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4488,'4000','31686148571','2023-06-07 17:36:12',NULL,280.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(4489,'1000','31686151465','2023-06-07 18:24:27',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4490,'4000','31686151465','2023-06-07 18:24:27',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(4491,'1000','31686152636','2023-06-07 18:43:58',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4492,'4000','31686152636','2023-06-07 18:43:58',NULL,250.00,'','3','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(4493,'1000','31686155275','2023-06-07 19:27:56',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4494,'4000','31686155275','2023-06-07 19:27:56',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(4495,'1000','31686158505','2023-06-07 20:21:47',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4496,'4000','31686158505','2023-06-07 20:21:47',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(4497,'1000','31686163171','2023-06-07 21:39:32',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4498,'4000','31686163171','2023-06-07 21:39:32',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(4499,'1000','31686163834','2023-06-07 21:50:36',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4500,'4000','31686163834','2023-06-07 21:50:36',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(4501,'1000','31686165014','2023-06-07 22:10:15',20.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4502,'4000','31686165014','2023-06-07 22:10:15',NULL,20.00,'','3','1','Good sold','1','','sales','48','','No',NULL,NULL,''),(4503,'1000','31686166435','2023-06-07 22:33:57',280.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'manager'),(4504,'4000','31686166435','2023-06-07 22:33:57',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(4505,'1000','31686166463','2023-06-07 22:34:25',200.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'george'),(4506,'4000','31686166463','2023-06-07 22:34:25',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(4507,'1000','31686166486','2023-06-07 22:34:48',300.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'cedrick'),(4508,'4000','31686166486','2023-06-07 22:34:48',NULL,300.00,'','3','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(4509,'1000','31686223532','2023-06-08 14:25:33',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4510,'4000','31686223532','2023-06-08 14:25:33',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(4511,'1000','31686223597','2023-06-08 14:26:44',280.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'uncle kamande'),(4512,'4000','31686223597','2023-06-08 14:26:44',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(4513,'1000','41686228441','2023-06-08 15:47:23',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4514,'4000','41686228441','2023-06-08 15:47:23',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(4515,'1000','41686234061','2023-06-08 17:21:03',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4516,'4000','41686234061','2023-06-08 17:21:03',NULL,200.00,'','4','1','Good sold','1','','sales','16','','No',NULL,NULL,''),(4517,'1000','31686237249','2023-06-08 18:14:10',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4518,'4000','31686237249','2023-06-08 18:14:10',NULL,200.00,'','3','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(4519,'1000','31686237377','2023-06-08 18:16:18',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4520,'4000','31686237377','2023-06-08 18:16:18',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(4521,'1000','31686238741','2023-06-08 18:39:21',480.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4522,'4000','31686238741','2023-06-08 18:39:21',NULL,280.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(4523,'4000','31686238741','2023-06-08 18:39:01',NULL,200.00,'','3','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(4524,'1000','31686238818','2023-06-08 18:40:19',300.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'cedrick'),(4525,'4000','31686238818','2023-06-08 18:40:19',NULL,300.00,'','3','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(4526,'1110','31686238883','2023-06-08 18:41:32',NULL,150.00,'','3','1','Inventory sold','1','','sales','53','','No',NULL,NULL,''),(4527,'1110','31686238883','2023-06-08 18:41:24',NULL,0.00,'','3','1','Inventory sold','1','','sales','31','','No',NULL,NULL,''),(4528,'1110','31686238883','2023-06-08 18:41:27',NULL,0.00,'','3','1','Inventory sold','1','','sales','31','','No',NULL,NULL,''),(4529,'5500','31686238883','2023-06-08 18:41:30',150.00,NULL,'','3','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4530,'1000','31686238883','2023-06-08 18:41:32',600.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'dad'),(4531,'4000','31686238883','2023-06-08 18:41:32',NULL,200.00,'','3','1','Good sold','1','','sales','53','','No',NULL,NULL,''),(4532,'4000','31686238883','2023-06-08 18:41:24',NULL,200.00,'','3','1','Good sold','1','','sales','31','','No',NULL,NULL,''),(4533,'4000','31686238883','2023-06-08 18:41:27',NULL,200.00,'','3','1','Good sold','1','','sales','31','','No',NULL,NULL,''),(4534,'1000','31686238990','2023-06-08 18:43:11',280.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'purity'),(4535,'4000','31686238990','2023-06-08 18:43:11',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(4536,'1000','41686239111','2023-06-08 18:45:13',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4537,'4000','41686239111','2023-06-08 18:45:13',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(4538,'1000','41686239124','2023-06-08 18:45:25',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4539,'4000','41686239124','2023-06-08 18:45:25',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(4540,'1000','41686242165','2023-06-08 19:36:07',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4541,'4000','41686242165','2023-06-08 19:36:07',NULL,280.00,'','4','1','Good sold','1','','sales','6','','No',NULL,NULL,''),(4542,'1000','41686245191','2023-06-08 20:26:33',280.00,NULL,'','4','1','Good sold','1','','sales','','','No',NULL,NULL,''),(4543,'4000','41686245191','2023-06-08 20:26:33',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(4544,'1000','41686247753','2023-06-08 21:09:14',280.00,NULL,'','4','1','Good sold','1','','sales','','','No',NULL,NULL,''),(4545,'4000','41686247753','2023-06-08 21:09:14',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(4546,'1000','41686247768','2023-06-08 21:09:30',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4547,'4000','41686247768','2023-06-08 21:09:30',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(4548,'1000','31686247798','2023-06-08 21:10:03',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4549,'4000','31686247798','2023-06-08 21:10:03',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(4550,'4000','31686247798','2023-06-08 21:09:58',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(4551,'1000','41686251030','2023-06-08 22:03:52',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4552,'4000','41686251030','2023-06-08 22:03:52',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(4553,'1000','41686251143','2023-06-08 22:05:45',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4554,'4000','41686251143','2023-06-08 22:05:45',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(4555,'1000','41686294269','2023-06-09 10:04:31',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4556,'4000','41686294269','2023-06-09 10:04:31',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(4557,'1000','41686325240','2023-06-09 18:40:42',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4558,'4000','41686325240','2023-06-09 18:40:42',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(4559,'1000','41686325321','2023-06-09 18:42:02',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4560,'4000','41686325321','2023-06-09 18:42:02',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(4561,'1000','31686325369','2023-06-09 18:42:51',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4563,'1000','31686330748','2023-06-09 20:12:37',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4564,'4000','31686330748','2023-06-09 20:12:37',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(4565,'4000','31686330748','2023-06-09 20:12:28',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(4566,'1000','31686330799','2023-06-09 20:13:20',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4567,'4000','31686330799','2023-06-09 20:13:20',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(4568,'1000','31686325369','2023-06-09 18:42:51',700.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4569,'4000','31686325369','2023-06-09 18:42:51',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(4570,'4000','31686325369','2023-06-09 18:42:49',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(4571,'1000','31686335214','2023-06-09 21:26:55',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4573,'1000','31686335214','2023-06-09 21:26:55',700.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4574,'4000','31686335214','2023-06-09 21:26:55',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(4575,'4000','31686335214','2023-06-09 21:26:54',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(4576,'1000','31686338090','2023-06-09 22:14:51',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4577,'4000','31686338090','2023-06-09 22:14:51',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(4578,'1000','41686411885','2023-06-10 18:44:46',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4579,'4000','41686411885','2023-06-10 18:44:46',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(4580,'1000','41686420193','2023-06-10 21:03:19',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4581,'4000','41686420193','2023-06-10 21:03:19',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(4582,'4000','41686420193','2023-06-10 21:03:13',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(4583,'1000','41686420337','2023-06-10 21:05:38',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4584,'4000','41686420337','2023-06-10 21:05:38',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(4585,'1000','31686420376','2023-06-10 21:06:57',450.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4586,'4000','31686420376','2023-06-10 21:06:57',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(4587,'4000','31686420376','2023-06-10 21:06:16',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(4588,'4000','31686420376','2023-06-10 21:06:19',NULL,150.00,'','3','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(4589,'1000','31686421011','2023-06-10 21:16:56',530.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4590,'4000','31686421011','2023-06-10 21:16:56',NULL,250.00,'','3','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(4591,'4000','31686421011','2023-06-10 21:16:51',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(4592,'1000','31686421059','2023-06-10 21:17:40',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4593,'4000','31686421059','2023-06-10 21:17:40',NULL,250.00,'','3','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(4594,'1000','31686421097','2023-06-10 21:18:19',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4595,'4000','31686421097','2023-06-10 21:18:19',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(4596,'1000','31686421130','2023-06-10 21:18:52',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4597,'4000','31686421130','2023-06-10 21:18:52',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(4598,'1000','31686421998','2023-06-10 21:33:20',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4599,'4000','31686421998','2023-06-10 21:33:20',NULL,200.00,'','3','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(4600,'1000','31686425524','2023-06-10 22:32:06',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4601,'4000','31686425524','2023-06-10 22:32:06',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(4602,'1000','31686427800','2023-06-10 23:10:02',280.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'purity'),(4603,'4000','31686427800','2023-06-10 23:10:02',NULL,280.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(4604,'1000','31686427825','2023-06-10 23:10:35',560.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'martin'),(4605,'4000','31686427825','2023-06-10 23:10:35',NULL,280.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(4606,'4000','31686427825','2023-06-10 23:10:25',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(4607,'1000','31686427929','2023-06-10 23:12:11',280.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'manager'),(4608,'4000','31686427929','2023-06-10 23:12:11',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(4609,'1000','31686427947','2023-06-10 23:12:29',200.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'cedrick'),(4610,'4000','31686427947','2023-06-10 23:12:29',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(4611,'1000','31686473535','2023-06-11 11:52:17',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4612,'4000','31686473535','2023-06-11 11:52:17',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(4613,'1000','31686474356','2023-06-11 12:05:58',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4614,'4000','31686474356','2023-06-11 12:05:58',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(4615,'1000','31686474373','2023-06-11 12:06:15',200.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'george'),(4616,'4000','31686474373','2023-06-11 12:06:15',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(4617,'1000','31686474459','2023-06-11 12:07:40',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4618,'4000','31686474459','2023-06-11 12:07:40',NULL,200.00,'','3','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(4619,'1000','31686474522','2023-06-11 12:08:43',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4620,'4000','31686474522','2023-06-11 12:08:43',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(4621,'1000','31686479706','2023-06-11 13:35:07',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4622,'4000','31686479706','2023-06-11 13:35:07',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(4623,'1000','31686482006','2023-06-11 14:13:32',600.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4624,'4000','31686482006','2023-06-11 14:13:32',NULL,300.00,'','3','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(4625,'4000','31686482006','2023-06-11 14:13:26',NULL,300.00,'','3','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(4626,'1000','31686482053','2023-06-11 14:14:14',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4627,'4000','31686482053','2023-06-11 14:14:14',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(4628,'1110','41686489535','2023-06-11 16:18:56',NULL,70.00,'','4','1','Inventory sold','1','','sales','60','','No',NULL,NULL,''),(4629,'5500','41686489535','2023-06-11 16:18:55',70.00,NULL,'','4','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4630,'1000','41686489535','2023-06-11 16:18:56',100.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4631,'4000','41686489535','2023-06-11 16:18:56',NULL,100.00,'','4','1','Good sold','1','','sales','60','','No',NULL,NULL,''),(4632,'1000','31686492912','2023-06-11 17:15:14',280.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'manager'),(4633,'4000','31686492912','2023-06-11 17:15:14',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(4634,'1000','41686493347','2023-06-11 17:22:28',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4635,'4000','41686493347','2023-06-11 17:22:28',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(4636,'1000','41686493385','2023-06-11 17:23:06',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4637,'4000','41686493385','2023-06-11 17:23:06',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(4638,'1000','31686495451','2023-06-11 17:57:38',500.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4639,'4000','31686495451','2023-06-11 17:57:38',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(4640,'4000','31686495451','2023-06-11 17:57:31',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(4641,'1000','31686497142','2023-06-11 18:25:46',400.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4642,'4000','31686497142','2023-06-11 18:25:46',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(4643,'4000','31686497142','2023-06-11 18:25:42',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(4644,'1000','41686499499','2023-06-11 19:05:00',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4645,'4000','41686499499','2023-06-11 19:05:00',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(4646,'1000','41686501198','2023-06-11 19:33:19',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4647,'4000','41686501198','2023-06-11 19:33:19',NULL,300.00,'','4','1','Good sold','1','','sales','33','','No',NULL,NULL,''),(4648,'1000','41686501312','2023-06-11 19:35:29',600.00,NULL,'','4','1','Good sold','1','','sales','','','No',NULL,NULL,''),(4649,'4000','41686501312','2023-06-11 19:35:29',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(4650,'4000','41686501312','2023-06-11 19:35:15',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(4651,'1000','41686507609','2023-06-11 21:20:10',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4652,'4000','41686507609','2023-06-11 21:20:10',NULL,150.00,'','4','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(4653,'1000','41686511125','2023-06-11 22:18:46',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4654,'4000','41686511125','2023-06-11 22:18:46',NULL,150.00,'','4','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(4655,'1000','41686512671','2023-06-11 22:44:33',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4656,'4000','41686512671','2023-06-11 22:44:33',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(4657,'1000','41686554811','2023-06-12 10:26:53',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4658,'4000','41686554811','2023-06-12 10:26:53',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(4659,'1000','41686555178','2023-06-12 10:33:00',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4660,'4000','41686555178','2023-06-12 10:33:00',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(4661,'1000','41686555769','2023-06-12 10:42:59',480.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4662,'4000','41686555769','2023-06-12 10:42:59',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(4663,'4000','41686555769','2023-06-12 10:42:49',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(4664,'1000','41686557719','2023-06-12 11:15:29',430.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4665,'4000','41686557719','2023-06-12 11:15:29',NULL,150.00,'','4','1','Good sold','1','','sales','61','','No',NULL,NULL,''),(4666,'4000','41686557719','2023-06-12 11:15:19',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(4667,'1000','41686560941','2023-06-12 12:09:18',750.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4668,'4000','41686560941','2023-06-12 12:09:18',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(4669,'4000','41686560941','2023-06-12 12:09:01',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(4670,'4000','41686560941','2023-06-12 12:09:05',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(4671,'4000','41686560941','2023-06-12 12:09:08',NULL,150.00,'','4','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(4672,'1000','41686568198','2023-06-12 14:10:00',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4673,'4000','41686568198','2023-06-12 14:10:00',NULL,300.00,'','4','1','Good sold','1','','sales','29','','No',NULL,NULL,''),(4674,'1000','41686568907','2023-06-12 14:21:49',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4675,'4000','41686568907','2023-06-12 14:21:49',NULL,150.00,'','4','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(4676,'1000','41686569461','2023-06-12 14:31:02',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4677,'4000','41686569461','2023-06-12 14:31:02',NULL,150.00,'','4','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(4678,'1000','41686574199','2023-06-12 15:50:01',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4679,'4000','41686574199','2023-06-12 15:50:01',NULL,200.00,'','4','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(4680,'1000','41686575794','2023-06-12 16:16:36',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4681,'4000','41686575794','2023-06-12 16:16:36',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(4682,'1000','41686579320','2023-06-12 17:15:22',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4683,'4000','41686579320','2023-06-12 17:15:22',NULL,150.00,'','4','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(4684,'1000','41686584305','2023-06-12 18:38:33',800.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4685,'4000','41686584305','2023-06-12 18:38:33',NULL,600.00,'','4','1','Good sold','1','','sales','40','','No',NULL,NULL,''),(4686,'4000','41686584305','2023-06-12 18:38:25',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(4687,'1000','41686584328','2023-06-12 18:38:49',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4688,'4000','41686584328','2023-06-12 18:38:49',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(4689,'1000','41686584375','2023-06-12 18:39:36',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4690,'4000','41686584375','2023-06-12 18:39:36',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(4691,'1000','41686586512','2023-06-12 19:15:13',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4692,'4000','41686586512','2023-06-12 19:15:13',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(4693,'1000','41686589766','2023-06-12 20:09:28',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4694,'4000','41686589766','2023-06-12 20:09:28',NULL,280.00,'','4','1','Good sold','1','','sales','6','','No',NULL,NULL,''),(4695,'1000','41686593246','2023-06-12 21:07:27',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4696,'4000','41686593246','2023-06-12 21:07:27',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(4697,'1000','41686644783','2023-06-13 11:26:24',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4698,'4000','41686644783','2023-06-13 11:26:24',NULL,350.00,'','4','1','Good sold','1','','sales','54','','No',NULL,NULL,''),(4699,'1000','41686645211','2023-06-13 11:33:32',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4700,'4000','41686645211','2023-06-13 11:33:32',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(4701,'1000','41686646366','2023-06-13 11:52:47',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4702,'4000','41686646366','2023-06-13 11:52:47',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(4703,'1000','41686646378','2023-06-13 11:53:00',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4704,'4000','41686646378','2023-06-13 11:53:00',NULL,200.00,'','4','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(4705,'1000','41686649691','2023-06-13 12:48:13',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4706,'4000','41686649691','2023-06-13 12:48:13',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(4707,'1000','41686652147','2023-06-13 13:29:09',200.00,NULL,'','4','1','Good sold','1','','sales','','','No',NULL,NULL,''),(4708,'4000','41686652147','2023-06-13 13:29:09',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(4709,'1000','41686655762','2023-06-13 14:29:24',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4710,'4000','41686655762','2023-06-13 14:29:24',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(4711,'1000','41686659835','2023-06-13 15:37:16',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4712,'4000','41686659835','2023-06-13 15:37:16',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(4713,'1000','41686661198','2023-06-13 15:59:59',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4714,'4000','41686661198','2023-06-13 15:59:59',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(4715,'1000','41686666195','2023-06-13 17:23:17',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4716,'4000','41686666195','2023-06-13 17:23:17',NULL,350.00,'','4','1','Good sold','1','','sales','54','','No',NULL,NULL,''),(4717,'1000','31686666386','2023-06-13 17:26:28',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4719,'1000','31686666386','2023-06-13 17:26:28',450.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4720,'4000','31686666386','2023-06-13 17:26:28',NULL,300.00,'','3','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(4721,'4000','31686666386','2023-06-13 17:26:26',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(4722,'1000','41686669047','2023-06-13 18:10:49',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4723,'4000','41686669047','2023-06-13 18:10:49',NULL,250.00,'','4','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(4724,'1000','31686669604','2023-06-13 18:20:05',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4725,'4000','31686669604','2023-06-13 18:20:05',NULL,150.00,'','3','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(4726,'1000','31686670057','2023-06-13 18:27:38',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4727,'4000','31686670057','2023-06-13 18:27:38',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(4728,'1000','31686671550','2023-06-13 18:52:32',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4730,'1000','31686671550','2023-06-13 18:52:32',730.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4731,'4000','31686671550','2023-06-13 18:52:32',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(4732,'4000','31686671550','2023-06-13 18:52:30',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(4733,'4000','31686671550','2023-06-13 18:53:33',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(4734,'1000','41686671769','2023-06-13 18:56:11',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4735,'4000','41686671769','2023-06-13 18:56:11',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(4736,'1000','41686671786','2023-06-13 18:56:27',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4737,'4000','41686671786','2023-06-13 18:56:27',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(4738,'1000','31686685378','2023-06-13 22:43:04',500.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4739,'4000','31686685378','2023-06-13 22:43:04',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(4740,'4000','31686685378','2023-06-13 22:42:58',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(4741,'1000','31686730371','2023-06-14 11:12:53',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4742,'4000','31686730371','2023-06-14 11:12:53',NULL,200.00,'','3','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(4743,'1000','31686730385','2023-06-14 11:13:06',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4744,'4000','31686730385','2023-06-14 11:13:06',NULL,200.00,'','3','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(4745,'1000','31686730403','2023-06-14 11:13:25',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4746,'4000','31686730403','2023-06-14 11:13:25',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(4747,'1000','31686730418','2023-06-14 11:13:40',200.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'manager'),(4748,'4000','31686730418','2023-06-14 11:13:40',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(4749,'1000','31686730436','2023-06-14 11:13:57',200.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'george'),(4750,'4000','31686730436','2023-06-14 11:13:57',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(4751,'1000','31686735127','2023-06-14 12:32:09',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4752,'4000','31686735127','2023-06-14 12:32:09',NULL,280.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(4753,'1000','31686735987','2023-06-14 12:46:35',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4754,'4000','31686735987','2023-06-14 12:46:35',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(4755,'1000','31686740776','2023-06-14 14:06:18',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4756,'4000','31686740776','2023-06-14 14:06:18',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(4757,'1000','31686740814','2023-06-14 14:06:56',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4758,'4000','31686740814','2023-06-14 14:06:56',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(4759,'1000','31686749308','2023-06-14 16:28:29',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4760,'4000','31686749308','2023-06-14 16:28:29',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(4761,'1000','31686749526','2023-06-14 16:32:08',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4762,'4000','31686749526','2023-06-14 16:32:08',NULL,280.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(4763,'1000','31686752122','2023-06-14 17:15:23',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4765,'1000','31686752143','2023-06-14 17:15:45',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4766,'4000','31686752143','2023-06-14 17:15:45',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(4767,'1000','31686752122','2023-06-14 17:15:23',560.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4768,'4000','31686752122','2023-06-14 17:15:23',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(4769,'4000','31686752122','2023-06-14 17:15:22',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(4770,'1000','31686754001','2023-06-14 17:46:53',760.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4771,'4000','31686754001','2023-06-14 17:46:53',NULL,280.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(4772,'4000','31686754001','2023-06-14 17:46:41',NULL,280.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(4773,'4000','31686754001','2023-06-14 17:46:44',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(4774,'1000','31686756176','2023-06-14 18:22:57',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4775,'4000','31686756176','2023-06-14 18:22:57',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(4776,'1000','31686756544','2023-06-14 18:29:06',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4777,'4000','31686756544','2023-06-14 18:29:06',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(4778,'1000','31686759805','2023-06-14 19:23:26',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4779,'4000','31686759805','2023-06-14 19:23:26',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(4780,'1000','31686762779','2023-06-14 20:13:00',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4781,'4000','31686762779','2023-06-14 20:13:00',NULL,200.00,'','3','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(4782,'1000','31686766576','2023-06-14 21:16:34',400.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4783,'4000','31686766576','2023-06-14 21:16:34',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(4784,'4000','31686766576','2023-06-14 21:16:16',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(4785,'1000','31686766729','2023-06-14 21:18:50',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4786,'4000','31686766729','2023-06-14 21:18:50',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(4787,'1000','31686767398','2023-06-14 21:30:12',800.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4788,'4000','31686767398','2023-06-14 21:30:12',NULL,600.00,'','3','1','Good sold','1','','sales','40','','No',NULL,NULL,''),(4789,'4000','31686767398','2023-06-14 21:29:58',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(4790,'1000','31686769599','2023-06-14 22:06:41',300.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'cedrick'),(4791,'4000','31686769599','2023-06-14 22:06:41',NULL,300.00,'','3','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(4792,'1000','31686769638','2023-06-14 22:07:19',280.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'martin'),(4793,'4000','31686769638','2023-06-14 22:07:19',NULL,280.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(4794,'1000','31686829521','2023-06-15 14:45:23',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4795,'4000','31686829521','2023-06-15 14:45:23',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(4796,'1000','31686829545','2023-06-15 14:45:47',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4797,'4000','31686829545','2023-06-15 14:45:47',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(4798,'1000','31686829556','2023-06-15 14:45:58',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4799,'4000','31686829556','2023-06-15 14:45:58',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(4800,'1000','31686829655','2023-06-15 14:47:36',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4801,'4000','31686829655','2023-06-15 14:47:36',NULL,300.00,'','3','1','Good sold','1','','sales','28','','No',NULL,NULL,''),(4802,'1000','31686829739','2023-06-15 14:49:01',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4803,'4000','31686829739','2023-06-15 14:49:01',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(4804,'1000','31686829750','2023-06-15 14:49:14',400.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4805,'4000','31686829750','2023-06-15 14:49:14',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(4806,'4000','31686829750','2023-06-15 14:49:10',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(4807,'1000','31686829767','2023-06-15 14:49:29',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4808,'4000','31686829767','2023-06-15 14:49:29',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(4809,'1000','31686829972','2023-06-15 14:52:54',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4810,'4000','31686829972','2023-06-15 14:52:54',NULL,200.00,'','3','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(4811,'1000','41686831210','2023-06-15 15:13:36',700.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4812,'4000','41686831210','2023-06-15 15:13:36',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(4813,'4000','41686831210','2023-06-15 15:13:30',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(4814,'1000','41686832187','2023-06-15 15:29:48',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4816,'1000','41686832199','2023-06-15 15:30:01',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4817,'4000','41686832199','2023-06-15 15:30:01',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(4818,'1000','41686837680','2023-06-15 17:01:29',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4819,'4000','41686837680','2023-06-15 17:01:29',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(4820,'4000','41686837680','2023-06-15 17:01:20',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(4821,'1000','31686837991','2023-06-15 17:06:33',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4822,'4000','31686837991','2023-06-15 17:06:33',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(4823,'1000','41686839416','2023-06-15 17:30:17',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4825,'1000','41686839447','2023-06-15 17:30:48',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4826,'4000','41686839447','2023-06-15 17:30:48',NULL,200.00,'','4','1','Good sold','1','','sales','16','','No',NULL,NULL,''),(4827,'1000','31686840053','2023-06-15 17:40:55',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4828,'4000','31686840053','2023-06-15 17:40:55',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(4829,'1000','31686840166','2023-06-15 17:42:47',300.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'dad'),(4830,'4000','31686840166','2023-06-15 17:42:47',NULL,300.00,'','3','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(4831,'1000','31686840189','2023-06-15 17:43:10',280.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'uncle kamande'),(4832,'4000','31686840189','2023-06-15 17:43:10',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(4833,'1000','31686840221','2023-06-15 17:43:43',200.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'george'),(4834,'4000','31686840221','2023-06-15 17:43:43',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(4835,'1000','31686840269','2023-06-15 17:44:31',280.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,''),(4836,'4000','31686840269','2023-06-15 17:44:31',NULL,280.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(4837,'1000','41686845491','2023-06-15 19:11:32',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4838,'4000','41686845491','2023-06-15 19:11:32',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(4839,'1000','41686839416','2023-06-15 17:30:17',700.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4840,'4000','41686839416','2023-06-15 17:30:17',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(4841,'4000','41686839416','2023-06-15 17:30:16',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(4842,'1000','41686847033','2023-06-15 19:37:15',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4843,'4000','41686847033','2023-06-15 19:37:15',NULL,200.00,'','4','1','Good sold','1','','sales','19','','No',NULL,NULL,''),(4844,'1000','41686852548','2023-06-15 21:09:10',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4845,'4000','41686852548','2023-06-15 21:09:10',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(4846,'1000','41686852620','2023-06-15 21:10:22',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4847,'4000','41686852620','2023-06-15 21:10:22',NULL,150.00,'','4','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(4848,'1000','41686856142','2023-06-15 22:09:03',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4849,'4000','41686856142','2023-06-15 22:09:03',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(4850,'1000','41686856164','2023-06-15 22:09:29',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4851,'4000','41686856164','2023-06-15 22:09:29',NULL,150.00,'','4','1','Good sold','1','','sales','61','','No',NULL,NULL,''),(4852,'4000','41686856164','2023-06-15 22:09:24',NULL,150.00,'','4','1','Good sold','1','','sales','61','','No',NULL,NULL,''),(4853,'1000','41686905120','2023-06-16 11:45:33',560.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4854,'4000','41686905120','2023-06-16 11:45:33',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(4855,'4000','41686905120','2023-06-16 11:45:20',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(4856,'1000','41686905287','2023-06-16 11:48:08',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4857,'4000','41686905287','2023-06-16 11:48:08',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(4858,'1000','41686906071','2023-06-16 12:01:13',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4859,'4000','41686906071','2023-06-16 12:01:13',NULL,150.00,'','4','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(4860,'1000','41686907371','2023-06-16 12:22:52',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4861,'4000','41686907371','2023-06-16 12:22:52',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(4862,'1000','41686909641','2023-06-16 13:00:47',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4863,'4000','41686909641','2023-06-16 13:00:47',NULL,250.00,'','4','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(4864,'4000','41686909641','2023-06-16 13:00:41',NULL,150.00,'','4','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(4865,'1000','41686909672','2023-06-16 13:01:14',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4866,'4000','41686909672','2023-06-16 13:01:14',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(4867,'1000','41686911958','2023-06-16 13:39:20',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4868,'4000','41686911958','2023-06-16 13:39:20',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(4869,'1000','41686919820','2023-06-16 15:50:22',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4870,'4000','41686919820','2023-06-16 15:50:22',NULL,300.00,'','4','1','Good sold','1','','sales','29','','No',NULL,NULL,''),(4871,'1000','31686924549','2023-06-16 17:09:11',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4872,'4000','31686924549','2023-06-16 17:09:11',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(4873,'1000','31686925090','2023-06-16 17:18:11',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4874,'4000','31686925090','2023-06-16 17:18:11',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(4875,'1000','41686925192','2023-06-16 17:19:53',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4876,'4000','41686925192','2023-06-16 17:19:53',NULL,150.00,'','4','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(4877,'1000','31686927463','2023-06-16 17:57:44',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4878,'4000','31686927463','2023-06-16 17:57:44',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(4879,'1000','31686930264','2023-06-16 18:44:28',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4880,'4000','31686930264','2023-06-16 18:44:28',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(4881,'4000','31686930264','2023-06-16 18:44:24',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(4882,'1000','31686931989','2023-06-16 19:13:11',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4883,'4000','31686931989','2023-06-16 19:13:11',NULL,200.00,'','3','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(4884,'1000','31686935358','2023-06-16 20:09:20',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4885,'4000','31686935358','2023-06-16 20:09:20',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(4886,'1000','31686936556','2023-06-16 20:29:18',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4887,'4000','31686936556','2023-06-16 20:29:18',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(4888,'1000','31686939329','2023-06-16 21:15:34',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4889,'4000','31686939329','2023-06-16 21:15:34',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(4890,'4000','31686939329','2023-06-16 21:15:29',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(4891,'1000','31686939410','2023-06-16 21:16:51',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4892,'4000','31686939410','2023-06-16 21:16:51',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(4893,'1000','31686940492','2023-06-16 21:34:54',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4894,'4000','31686940492','2023-06-16 21:34:54',NULL,150.00,'','3','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(4895,'1000','31686945921','2023-06-16 23:05:23',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4896,'4000','31686945921','2023-06-16 23:05:23',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(4897,'1000','41686992782','2023-06-17 12:06:23',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4898,'4000','41686992782','2023-06-17 12:06:23',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(4899,'1000','41686993199','2023-06-17 12:13:20',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4900,'4000','41686993199','2023-06-17 12:13:20',NULL,150.00,'','4','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(4901,'1000','41686995055','2023-06-17 12:44:16',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4902,'4000','41686995055','2023-06-17 12:44:16',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(4903,'1000','41686999650','2023-06-17 14:00:51',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4904,'4000','41686999650','2023-06-17 14:00:51',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(4905,'1000','41686999670','2023-06-17 14:01:11',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4906,'4000','41686999670','2023-06-17 14:01:11',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(4907,'1000','41687002674','2023-06-17 14:51:21',1050.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4908,'4000','41687002674','2023-06-17 14:51:21',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(4909,'4000','41687002674','2023-06-17 14:51:14',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(4910,'4000','41687002674','2023-06-17 14:51:17',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(4911,'1000','31687004639','2023-06-17 15:24:00',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4912,'4000','31687004639','2023-06-17 15:24:00',NULL,280.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(4913,'1000','31687012125','2023-06-17 17:28:46',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4915,'1000','41687012160','2023-06-17 17:29:22',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4916,'4000','41687012160','2023-06-17 17:29:22',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(4917,'1000','41687012575','2023-06-17 17:36:19',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4918,'4000','41687012575','2023-06-17 17:36:19',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(4919,'4000','41687012575','2023-06-17 17:36:15',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(4920,'1000','41687012653','2023-06-17 17:37:34',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4921,'4000','41687012653','2023-06-17 17:37:34',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(4922,'1000','31687012125','2023-06-17 17:28:46',560.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4923,'4000','31687012125','2023-06-17 17:28:46',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(4924,'4000','31687012125','2023-06-17 17:28:45',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(4925,'1000','31687014331','2023-06-17 18:05:39',400.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4926,'4000','31687014331','2023-06-17 18:05:39',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(4927,'4000','31687014331','2023-06-17 18:05:31',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(4928,'1000','41687016660','2023-06-17 18:44:22',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4929,'4000','41687016660','2023-06-17 18:44:22',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(4930,'1110','41687016673','2023-06-17 18:44:35',NULL,200.00,'','4','1','Inventory sold','1','','sales','62','','No',NULL,NULL,''),(4931,'5500','41687016673','2023-06-17 18:44:33',200.00,NULL,'','4','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(4932,'1000','41687016673','2023-06-17 18:44:35',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4933,'4000','41687016673','2023-06-17 18:44:35',NULL,200.00,'','4','1','Good sold','1','','sales','62','','No',NULL,NULL,''),(4934,'1000','41687016687','2023-06-17 18:44:48',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4935,'4000','41687016687','2023-06-17 18:44:48',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(4936,'1000','41687016993','2023-06-17 18:49:55',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4937,'4000','41687016993','2023-06-17 18:49:55',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(4938,'1000','31687017128','2023-06-17 18:52:18',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4939,'4000','31687017128','2023-06-17 18:52:18',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(4940,'1000','31687020502','2023-06-17 19:48:27',700.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4941,'4000','31687020502','2023-06-17 19:48:27',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(4942,'4000','31687020502','2023-06-17 19:48:22',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(4943,'1000','31687024577','2023-06-17 20:56:22',400.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4944,'4000','31687024577','2023-06-17 20:56:22',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(4945,'4000','31687024577','2023-06-17 20:56:17',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(4946,'1000','31687025030','2023-06-17 21:03:52',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4947,'4000','31687025030','2023-06-17 21:03:52',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(4948,'1000','31687030550','2023-06-17 22:35:51',200.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'cedrick'),(4949,'4000','31687030550','2023-06-17 22:35:51',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(4950,'1000','31687030667','2023-06-17 22:37:49',280.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'purity'),(4951,'4000','31687030667','2023-06-17 22:37:49',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(4952,'1000','31687030692','2023-06-17 22:38:13',200.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'martin'),(4953,'4000','31687030692','2023-06-17 22:38:13',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(4954,'1000','31687030750','2023-06-17 22:39:11',200.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'george'),(4955,'4000','31687030750','2023-06-17 22:39:11',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(4956,'1000','31687076720','2023-06-18 11:25:22',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4957,'4000','31687076720','2023-06-18 11:25:22',NULL,350.00,'','3','1','Good sold','1','','sales','54','','No',NULL,NULL,''),(4958,'1000','31687084240','2023-06-18 13:30:51',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4959,'4000','31687084240','2023-06-18 13:30:51',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(4960,'1000','31687086560','2023-06-18 14:09:22',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4961,'4000','31687086560','2023-06-18 14:09:22',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(4962,'1000','31687087222','2023-06-18 14:20:28',400.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4963,'4000','31687087222','2023-06-18 14:20:28',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(4964,'4000','31687087222','2023-06-18 14:20:22',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(4965,'1000','31687087275','2023-06-18 14:21:29',400.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4966,'4000','31687087275','2023-06-18 14:21:29',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(4967,'4000','31687087275','2023-06-18 14:21:15',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(4968,'1000','31687087771','2023-06-18 14:29:33',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4969,'4000','31687087771','2023-06-18 14:29:33',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(4970,'1000','31687087890','2023-06-18 14:31:36',500.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4971,'4000','31687087890','2023-06-18 14:31:36',NULL,250.00,'','3','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(4972,'4000','31687087890','2023-06-18 14:31:30',NULL,250.00,'','3','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(4973,'1000','31687089434','2023-06-18 14:57:21',700.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4974,'4000','31687089434','2023-06-18 14:57:21',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(4975,'4000','31687089434','2023-06-18 14:57:14',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(4976,'1000','31687093088','2023-06-18 15:58:10',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4977,'4000','31687093088','2023-06-18 15:58:10',NULL,250.00,'','3','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(4978,'1000','41687096193','2023-06-18 16:50:23',450.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4979,'4000','41687096193','2023-06-18 16:50:23',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(4980,'4000','41687096193','2023-06-18 16:49:53',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(4981,'1000','41687098714','2023-06-18 17:32:03',630.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4982,'4000','41687098714','2023-06-18 17:32:03',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(4983,'4000','41687098714','2023-06-18 17:31:54',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(4984,'1000','41687098775','2023-06-18 17:33:00',560.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4985,'4000','41687098775','2023-06-18 17:33:00',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(4986,'4000','41687098775','2023-06-18 17:32:55',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(4987,'1000','41687100362','2023-06-18 17:59:24',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4988,'4000','41687100362','2023-06-18 17:59:24',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(4989,'1000','41687102752','2023-06-18 18:39:53',500.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4990,'4000','41687102752','2023-06-18 18:39:53',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(4991,'4000','41687102752','2023-06-18 18:39:12',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(4992,'1000','41687103114','2023-06-18 18:45:16',280.00,NULL,'','4','1','Good sold','1','','sales','','','No',NULL,NULL,''),(4993,'4000','41687103114','2023-06-18 18:45:16',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(4994,'1000','41687103131','2023-06-18 18:45:32',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4995,'4000','41687103131','2023-06-18 18:45:32',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(4996,'1000','41687105389','2023-06-18 19:23:19',1000.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(4997,'4000','41687105389','2023-06-18 19:23:19',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(4998,'4000','41687105389','2023-06-18 19:23:09',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(4999,'4000','41687105389','2023-06-18 19:23:12',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(5000,'4000','41687105389','2023-06-18 19:23:15',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(5001,'1000','41687108584','2023-06-18 20:16:38',1000.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5002,'4000','41687108584','2023-06-18 20:16:38',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(5003,'4000','41687108584','2023-06-18 20:16:24',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(5004,'4000','41687108584','2023-06-18 20:16:30',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(5005,'4000','41687108584','2023-06-18 20:16:33',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(5006,'1000','41687109801','2023-06-18 20:36:43',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5007,'4000','41687109801','2023-06-18 20:36:43',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(5008,'1000','41687112183','2023-06-18 21:16:25',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5009,'4000','41687112183','2023-06-18 21:16:25',NULL,150.00,'','4','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(5010,'1000','41687112209','2023-06-18 21:16:50',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5011,'4000','41687112209','2023-06-18 21:16:50',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5012,'1000','41687170900','2023-06-19 13:35:02',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5013,'4000','41687170900','2023-06-19 13:35:02',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5014,'1000','41687186897','2023-06-19 18:01:38',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5015,'4000','41687186897','2023-06-19 18:01:38',NULL,300.00,'','4','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(5016,'1000','41687187695','2023-06-19 18:15:03',480.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5017,'4000','41687187695','2023-06-19 18:15:03',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(5018,'4000','41687187695','2023-06-19 18:14:55',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(5019,'1110','41687187717','2023-06-19 18:15:32',NULL,150.00,'','4','1','Inventory sold','1','','sales','55','','No',NULL,NULL,''),(5020,'1110','41687187717','2023-06-19 18:15:17',NULL,70.00,'','4','1','Inventory sold','1','','sales','60','','No',NULL,NULL,''),(5021,'5500','41687187717','2023-06-19 18:15:30',220.00,NULL,'','4','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5022,'1000','41687187717','2023-06-19 18:15:32',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5023,'4000','41687187717','2023-06-19 18:15:32',NULL,200.00,'','4','1','Good sold','1','','sales','55','','No',NULL,NULL,''),(5024,'4000','41687187717','2023-06-19 18:15:17',NULL,100.00,'','4','1','Good sold','1','','sales','60','','No',NULL,NULL,''),(5025,'1000','41687191322','2023-06-19 19:15:24',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5026,'4000','41687191322','2023-06-19 19:15:24',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5027,'1000','41687191542','2023-06-19 19:19:08',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5028,'4000','41687191542','2023-06-19 19:19:08',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5029,'4000','41687191542','2023-06-19 19:19:02',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(5030,'1000','41687193518','2023-06-19 19:52:04',500.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5031,'4000','41687193518','2023-06-19 19:52:04',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(5032,'4000','41687193518','2023-06-19 19:51:58',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(5033,'1000','41687194961','2023-06-19 20:16:03',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5034,'4000','41687194961','2023-06-19 20:16:03',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(5035,'1000','41687246652','2023-06-20 10:38:06',900.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5036,'4000','41687246652','2023-06-20 10:38:06',NULL,250.00,'','4','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(5037,'4000','41687246652','2023-06-20 10:37:32',NULL,250.00,'','4','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(5038,'4000','41687246652','2023-06-20 10:37:38',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(5039,'4000','41687246652','2023-06-20 10:37:48',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(5040,'1000','41687251105','2023-06-20 11:51:59',500.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5041,'4000','41687251105','2023-06-20 11:51:59',NULL,300.00,'','4','1','Good sold','1','','sales','29','','No',NULL,NULL,''),(5042,'4000','41687251105','2023-06-20 11:51:45',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(5043,'1000','41687253412','2023-06-20 12:30:19',1000.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5044,'4000','41687253412','2023-06-20 12:30:19',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(5045,'4000','41687253412','2023-06-20 12:30:12',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(5046,'4000','41687253412','2023-06-20 12:30:14',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(5047,'4000','41687253412','2023-06-20 12:30:16',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(5048,'1000','41687253442','2023-06-20 12:30:44',100.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5049,'4000','41687253442','2023-06-20 12:30:44',NULL,100.00,'','4','1','Good sold','1','','sales','24','','No',NULL,NULL,''),(5050,'1000','41687254422','2023-06-20 12:47:04',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5051,'4000','41687254422','2023-06-20 12:47:04',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(5052,'1000','41687255401','2023-06-20 13:03:23',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5053,'4000','41687255401','2023-06-20 13:03:23',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5054,'1000','41687256594','2023-06-20 13:23:20',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5055,'4000','41687256594','2023-06-20 13:23:20',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5056,'4000','41687256594','2023-06-20 13:23:14',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5057,'1000','41687257180','2023-06-20 13:33:09',500.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5058,'4000','41687257180','2023-06-20 13:33:09',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(5059,'4000','41687257180','2023-06-20 13:33:00',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(5060,'1000','41687259676','2023-06-20 14:14:41',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5061,'4000','41687259676','2023-06-20 14:14:41',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5062,'4000','41687259676','2023-06-20 14:14:36',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5063,'1000','41687260577','2023-06-20 14:29:39',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5064,'4000','41687260577','2023-06-20 14:29:39',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(5065,'1000','31687263851','2023-06-20 15:24:12',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5066,'4000','31687263851','2023-06-20 15:24:12',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(5067,'1000','31687263890','2023-06-20 15:24:51',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5068,'4000','31687263890','2023-06-20 15:24:51',NULL,250.00,'','3','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(5069,'1000','31687264982','2023-06-20 15:43:42',400.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5070,'4000','31687264982','2023-06-20 15:43:42',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5071,'4000','31687264982','2023-06-20 15:43:02',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(5072,'1000','31687267846','2023-06-20 16:30:48',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5073,'4000','31687267846','2023-06-20 16:30:48',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(5074,'1000','41687267875','2023-06-20 16:31:17',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5075,'4000','41687267875','2023-06-20 16:31:17',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5076,'1000','31687270669','2023-06-20 17:17:54',700.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5077,'4000','31687270669','2023-06-20 17:17:54',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5078,'4000','31687270669','2023-06-20 17:17:49',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5079,'1000','31687279489','2023-06-20 19:45:02',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5080,'4000','31687279489','2023-06-20 19:45:02',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5081,'1000','31687282850','2023-06-20 20:40:55',700.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5082,'4000','31687282850','2023-06-20 20:40:55',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5083,'4000','31687282850','2023-06-20 20:40:50',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5084,'1000','31687288412','2023-06-20 22:13:40',700.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5085,'4000','31687288412','2023-06-20 22:13:40',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5086,'4000','31687288412','2023-06-20 22:13:32',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5087,'1000','31687290151','2023-06-20 22:42:47',350.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'cedrick'),(5088,'4000','31687290151','2023-06-20 22:42:47',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5089,'4000','31687290151','2023-06-20 22:42:31',NULL,150.00,'','3','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(5090,'1000','31687290193','2023-06-20 22:43:14',200.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'george'),(5091,'4000','31687290193','2023-06-20 22:43:14',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5092,'1000','31687290218','2023-06-20 22:43:40',250.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'purity'),(5093,'4000','31687290218','2023-06-20 22:43:40',NULL,250.00,'','3','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(5094,'1000','31687342506','2023-06-21 13:15:08',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5095,'4000','31687342506','2023-06-21 13:15:08',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5096,'1000','31687348676','2023-06-21 14:58:01',700.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5097,'4000','31687348676','2023-06-21 14:58:01',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5098,'4000','31687348676','2023-06-21 14:57:56',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5099,'1000','31687353721','2023-06-21 16:22:02',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5100,'4000','31687353721','2023-06-21 16:22:02',NULL,250.00,'','3','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(5101,'1000','31687358968','2023-06-21 17:49:29',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5102,'4000','31687358968','2023-06-21 17:49:29',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(5103,'1000','31687363177','2023-06-21 18:59:39',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5105,'1000','31687366751','2023-06-21 19:59:13',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5106,'4000','31687366751','2023-06-21 19:59:13',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(5107,'1000','31687363177','2023-06-21 18:59:39',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5108,'4000','31687363177','2023-06-21 18:59:39',NULL,150.00,'','3','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(5109,'4000','31687363177','2023-06-21 18:59:37',NULL,150.00,'','3','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(5110,'1000','31687372736','2023-06-21 21:39:07',580.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5111,'4000','31687372736','2023-06-21 21:39:07',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(5112,'4000','31687372736','2023-06-21 21:38:56',NULL,300.00,'','3','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(5113,'1000','31687431017','2023-06-22 13:51:39',1600.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5114,'4000','31687431017','2023-06-22 13:51:39',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(5115,'4000','31687431017','2023-06-22 13:50:17',NULL,350.00,'','3','1','Good sold','1','','sales','45','','No',NULL,NULL,''),(5116,'4000','31687431017','2023-06-22 13:50:33',NULL,500.00,'','3','1','Good sold','1','','sales','44','','No',NULL,NULL,''),(5117,'4000','31687431017','2023-06-22 13:50:45',NULL,300.00,'','3','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(5118,'4000','31687431017','2023-06-22 13:51:11',NULL,200.00,'','3','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(5119,'1000','31687431165','2023-06-22 13:52:47',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5120,'4000','31687431165','2023-06-22 13:52:47',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(5121,'1000','41687442123','2023-06-22 16:55:37',600.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5122,'4000','41687442123','2023-06-22 16:55:37',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5123,'4000','41687442123','2023-06-22 16:55:24',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5124,'4000','41687442123','2023-06-22 16:55:32',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5125,'1000','31687443143','2023-06-22 17:12:25',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5126,'4000','31687443143','2023-06-22 17:12:25',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5127,'1000','31687443166','2023-06-22 17:12:47',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5128,'4000','31687443166','2023-06-22 17:12:47',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5129,'1000','31687443188','2023-06-22 17:13:10',200.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'george'),(5130,'4000','31687443188','2023-06-22 17:13:10',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5131,'1000','41687443444','2023-06-22 17:17:26',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5132,'4000','41687443444','2023-06-22 17:17:26',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(5133,'1000','41687443848','2023-06-22 17:24:10',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5134,'4000','41687443848','2023-06-22 17:24:10',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5135,'1000','41687444100','2023-06-22 17:28:21',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5137,'1000','41687444763','2023-06-22 17:39:25',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5138,'4000','41687444763','2023-06-22 17:39:25',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5139,'1000','41687444100','2023-06-22 17:28:21',600.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5140,'4000','41687444100','2023-06-22 17:28:21',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(5141,'4000','41687444100','2023-06-22 17:28:21',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(5142,'4000','41687444100','2023-06-22 17:52:48',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(5143,'1000','41687454341','2023-06-22 20:19:03',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5144,'4000','41687454341','2023-06-22 20:19:03',NULL,250.00,'','4','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(5145,'1000','41687455987','2023-06-22 20:46:33',700.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5146,'4000','41687455987','2023-06-22 20:46:33',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5147,'4000','41687455987','2023-06-22 20:46:27',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5148,'1000','41687458755','2023-06-22 21:32:45',380.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5149,'4000','41687458755','2023-06-22 21:32:45',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(5150,'4000','41687458755','2023-06-22 21:32:35',NULL,100.00,'','4','1','Good sold','1','','sales','24','','No',NULL,NULL,''),(5151,'1000','41687459492','2023-06-22 21:44:53',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5152,'4000','41687459492','2023-06-22 21:44:53',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5153,'1000','41687507070','2023-06-23 10:57:51',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5154,'4000','41687507070','2023-06-23 10:57:51',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(5155,'1000','41687509811','2023-06-23 11:43:36',480.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5156,'4000','41687509811','2023-06-23 11:43:36',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(5157,'4000','41687509811','2023-06-23 11:43:31',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(5158,'1000','41687509998','2023-06-23 11:46:39',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5159,'4000','41687509998','2023-06-23 11:46:39',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(5160,'1000','41687510016','2023-06-23 11:46:58',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5161,'4000','41687510016','2023-06-23 11:46:58',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(5162,'1000','41687510028','2023-06-23 11:47:17',380.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5163,'4000','41687510028','2023-06-23 11:47:17',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(5164,'4000','41687510028','2023-06-23 11:47:08',NULL,100.00,'','4','1','Good sold','1','','sales','26','','No',NULL,NULL,''),(5165,'1000','41687511197','2023-06-23 12:06:39',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5166,'4000','41687511197','2023-06-23 12:06:39',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(5167,'1000','41687511770','2023-06-23 12:16:12',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5168,'4000','41687511770','2023-06-23 12:16:12',NULL,200.00,'','4','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(5169,'1000','41687514797','2023-06-23 13:06:41',580.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5170,'4000','41687514797','2023-06-23 13:06:41',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(5171,'4000','41687514797','2023-06-23 13:06:37',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(5172,'1000','41687515234','2023-06-23 13:13:55',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5173,'4000','41687515234','2023-06-23 13:13:55',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(5174,'1000','41687517187','2023-06-23 13:46:28',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5175,'4000','41687517187','2023-06-23 13:46:28',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(5176,'1000','41687519177','2023-06-23 14:19:39',200.00,NULL,'','4','1','Good sold','1','','sales','','','No',NULL,NULL,''),(5177,'4000','41687519177','2023-06-23 14:19:39',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5178,'1000','41687519485','2023-06-23 14:24:47',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5179,'4000','41687519485','2023-06-23 14:24:47',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5180,'1000','31687526081','2023-06-23 16:14:52',500.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5181,'4000','31687526081','2023-06-23 16:14:52',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(5182,'4000','31687526081','2023-06-23 16:14:41',NULL,250.00,'','3','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(5183,'1000','31687529718','2023-06-23 17:15:19',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5184,'4000','31687529718','2023-06-23 17:15:19',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(5185,'1000','31687529772','2023-06-23 17:16:13',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5186,'4000','31687529772','2023-06-23 17:16:13',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(5187,'1000','31687532804','2023-06-23 18:06:55',530.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5188,'4000','31687532804','2023-06-23 18:06:55',NULL,250.00,'','3','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(5189,'4000','31687532804','2023-06-23 18:06:44',NULL,280.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(5190,'1000','31687533148','2023-06-23 18:12:29',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5191,'4000','31687533148','2023-06-23 18:12:29',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5192,'1000','31687536376','2023-06-23 19:06:18',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5193,'4000','31687536376','2023-06-23 19:06:18',NULL,280.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(5194,'1000','31687539568','2023-06-23 19:59:29',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5195,'4000','31687539568','2023-06-23 19:59:29',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5196,'1000','31687540087','2023-06-23 20:08:09',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5197,'4000','31687540087','2023-06-23 20:08:09',NULL,280.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(5198,'1000','31687540157','2023-06-23 20:09:19',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5199,'4000','31687540157','2023-06-23 20:09:19',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5200,'1000','31687550529','2023-06-23 23:02:11',200.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'mzae'),(5201,'4000','31687550529','2023-06-23 23:02:11',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5202,'1000','31687550563','2023-06-23 23:02:45',280.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'martin'),(5203,'4000','31687550563','2023-06-23 23:02:45',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(5204,'1000','31687550578','2023-06-23 23:03:00',300.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'cedrick'),(5205,'4000','31687550578','2023-06-23 23:03:00',NULL,300.00,'','3','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(5206,'1000','31687550599','2023-06-23 23:03:20',200.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'purity'),(5207,'4000','31687550599','2023-06-23 23:03:20',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5208,'1000','31687592956','2023-06-24 10:49:18',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5209,'4000','31687592956','2023-06-24 10:49:18',NULL,300.00,'','3','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(5210,'1000','31687604119','2023-06-24 13:55:26',600.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5211,'4000','31687604119','2023-06-24 13:55:26',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5212,'4000','31687604119','2023-06-24 13:55:19',NULL,250.00,'','3','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(5213,'1000','31687607346','2023-06-24 14:49:08',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5214,'4000','31687607346','2023-06-24 14:49:08',NULL,250.00,'','3','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(5215,'1000','41687616907','2023-06-24 17:28:29',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5216,'4000','41687616907','2023-06-24 17:28:29',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5217,'1000','41687625915','2023-06-24 19:58:37',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5218,'4000','41687625915','2023-06-24 19:58:37',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(5219,'1000','41687630646','2023-06-24 21:17:27',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5220,'4000','41687630646','2023-06-24 21:17:27',NULL,150.00,'','4','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(5221,'1000','41687632413','2023-06-24 21:46:55',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5222,'4000','41687632413','2023-06-24 21:46:55',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(5223,'1000','41687634155','2023-06-24 22:15:57',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5224,'4000','41687634155','2023-06-24 22:15:57',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(5225,'1000','41687634182','2023-06-24 22:16:23',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5226,'4000','41687634182','2023-06-24 22:16:23',NULL,200.00,'','4','1','Good sold','1','','sales','18','','No',NULL,NULL,''),(5227,'1000','41687634270','2023-06-24 22:17:51',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5228,'4000','41687634270','2023-06-24 22:17:51',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(5229,'1000','31687682600','2023-06-25 11:43:22',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5230,'4000','31687682600','2023-06-25 11:43:22',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(5231,'1000','41687701943','2023-06-25 17:05:49',600.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5232,'4000','41687701943','2023-06-25 17:05:49',NULL,300.00,'','4','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(5233,'4000','41687701943','2023-06-25 17:05:43',NULL,300.00,'','4','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(5234,'1000','41687704125','2023-06-25 17:42:07',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5235,'4000','41687704125','2023-06-25 17:42:07',NULL,250.00,'','4','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(5236,'1000','31687704394','2023-06-25 17:46:36',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5238,'1000','31687704394','2023-06-25 17:46:36',700.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5239,'4000','31687704394','2023-06-25 17:46:36',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5240,'4000','31687704394','2023-06-25 17:46:34',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5241,'1000','31687705134','2023-06-25 17:58:56',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5242,'4000','31687705134','2023-06-25 17:58:56',NULL,280.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(5243,'1000','41687707103','2023-06-25 18:31:45',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5244,'4000','41687707103','2023-06-25 18:31:45',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5245,'1000','41687711458','2023-06-25 19:44:23',500.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5246,'4000','41687711458','2023-06-25 19:44:23',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(5247,'4000','41687711458','2023-06-25 19:44:18',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(5248,'1000','41687716345','2023-06-25 21:05:46',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5249,'4000','41687716345','2023-06-25 21:05:46',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5250,'1000','41687717549','2023-06-25 21:25:50',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5251,'4000','41687717549','2023-06-25 21:25:50',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(5252,'1000','41687718934','2023-06-25 21:49:02',480.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5253,'4000','41687718934','2023-06-25 21:49:02',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(5254,'4000','41687718934','2023-06-25 21:48:54',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(5255,'1000','41687719001','2023-06-25 21:50:03',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5256,'4000','41687719001','2023-06-25 21:50:03',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(5257,'1000','41687766886','2023-06-26 11:08:07',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5258,'4000','41687766886','2023-06-26 11:08:07',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(5259,'1000','41687768280','2023-06-26 11:31:21',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5260,'4000','41687768280','2023-06-26 11:31:21',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(5261,'1000','41687774805','2023-06-26 13:20:07',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5262,'4000','41687774805','2023-06-26 13:20:07',NULL,200.00,'','4','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(5263,'1000','41687781109','2023-06-26 15:05:11',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5264,'4000','41687781109','2023-06-26 15:05:11',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5265,'1000','41687789360','2023-06-26 17:22:46',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5266,'4000','41687789360','2023-06-26 17:22:46',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(5267,'4000','41687789360','2023-06-26 17:22:41',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(5268,'1000','41687790115','2023-06-26 17:35:17',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5269,'4000','41687790115','2023-06-26 17:35:17',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(5270,'1000','41687792426','2023-06-26 18:13:47',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5271,'4000','41687792426','2023-06-26 18:13:47',NULL,250.00,'','4','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(5272,'1000','41687795821','2023-06-26 19:10:22',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5273,'4000','41687795821','2023-06-26 19:10:22',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5274,'1000','41687797350','2023-06-26 19:35:52',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5275,'4000','41687797350','2023-06-26 19:35:52',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5276,'1000','41687800792','2023-06-26 20:33:14',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5277,'4000','41687800792','2023-06-26 20:33:14',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5278,'1000','41687800941','2023-06-26 20:35:42',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5279,'4000','41687800941','2023-06-26 20:35:42',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(5280,'1000','41687805785','2023-06-26 21:56:26',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5281,'4000','41687805785','2023-06-26 21:56:26',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(5282,'1000','41687805801','2023-06-26 21:56:42',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5283,'4000','41687805801','2023-06-26 21:56:42',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(5284,'1000','41687846360','2023-06-27 09:12:48',380.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5285,'4000','41687846360','2023-06-27 09:12:48',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(5286,'4000','41687846360','2023-06-27 09:12:40',NULL,100.00,'','4','1','Good sold','1','','sales','24','','No',NULL,NULL,''),(5287,'1000','41687848446','2023-06-27 09:47:28',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5288,'4000','41687848446','2023-06-27 09:47:28',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(5289,'1000','41687857433','2023-06-27 12:17:14',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5290,'4000','41687857433','2023-06-27 12:17:14',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(5291,'1000','41687863097','2023-06-27 13:51:39',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5292,'4000','41687863097','2023-06-27 13:51:39',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5293,'1000','41687867792','2023-06-27 15:09:54',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5294,'4000','41687867792','2023-06-27 15:09:54',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5295,'1000','41687868958','2023-06-27 15:29:19',100.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5296,'4000','41687868958','2023-06-27 15:29:19',NULL,100.00,'','4','1','Good sold','1','','sales','26','','No',NULL,NULL,''),(5297,'1000','41687874873','2023-06-27 17:07:55',200.00,NULL,'','4','1','Good sold','1','','sales','','','No',NULL,NULL,''),(5298,'4000','41687874873','2023-06-27 17:07:55',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5299,'1000','31687880067','2023-06-27 18:34:28',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5300,'4000','31687880067','2023-06-27 18:34:28',NULL,250.00,'','3','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(5301,'1000','31687881472','2023-06-27 18:57:57',700.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5304,'1000','31687883298','2023-06-27 19:28:19',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5305,'4000','31687883298','2023-06-27 19:28:19',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5306,'1000','31687881472','2023-06-27 18:57:57',1400.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5307,'4000','31687881472','2023-06-27 18:57:57',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5308,'4000','31687881472','2023-06-27 18:57:52',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5309,'4000','31687881472','2023-06-27 18:57:56',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5310,'4000','31687881472','2023-06-27 20:09:19',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5311,'1000','31687888041','2023-06-27 20:47:23',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5312,'4000','31687888041','2023-06-27 20:47:23',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(5313,'1000','31687888053','2023-06-27 20:47:34',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5314,'4000','31687888053','2023-06-27 20:47:34',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5315,'1000','31687889603','2023-06-27 21:13:28',560.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5318,'1000','31687892369','2023-06-27 21:59:41',450.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5319,'4000','31687892369','2023-06-27 21:59:41',NULL,250.00,'','3','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(5320,'4000','31687892369','2023-06-27 21:59:29',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(5321,'1000','31687892398','2023-06-27 22:00:00',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5322,'4000','31687892398','2023-06-27 22:00:00',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(5323,'1000','31687889603','2023-06-27 21:13:28',840.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5324,'4000','31687889603','2023-06-27 21:13:28',NULL,280.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(5325,'4000','31687889603','2023-06-27 21:13:23',NULL,280.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(5326,'4000','31687889603','2023-06-27 21:13:27',NULL,280.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(5327,'1000','31687955094','2023-06-28 15:24:56',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5328,'4000','31687955094','2023-06-28 15:24:56',NULL,150.00,'','3','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(5329,'1000','31687955115','2023-06-28 15:25:19',400.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5330,'4000','31687955115','2023-06-28 15:25:19',NULL,200.00,'','3','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(5331,'4000','31687955115','2023-06-28 15:25:15',NULL,200.00,'','3','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(5332,'1000','31687955144','2023-06-28 15:26:17',400.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5333,'4000','31687955144','2023-06-28 15:26:17',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(5334,'4000','31687955144','2023-06-28 15:25:44',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(5335,'1000','31687957263','2023-06-28 16:01:09',400.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5336,'4000','31687957263','2023-06-28 16:01:09',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(5337,'4000','31687957263','2023-06-28 16:01:03',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(5338,'1000','31687963818','2023-06-28 17:50:26',750.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5339,'4000','31687963818','2023-06-28 17:50:26',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(5340,'4000','31687963818','2023-06-28 17:50:18',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(5341,'4000','31687963818','2023-06-28 17:50:22',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(5342,'1000','31687963851','2023-06-28 17:50:52',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5343,'4000','31687963851','2023-06-28 17:50:52',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5344,'1000','31687972931','2023-06-28 20:22:13',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5345,'4000','31687972931','2023-06-28 20:22:13',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5346,'1000','31687978445','2023-06-28 21:54:07',350.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'dad'),(5347,'4000','31687978445','2023-06-28 21:54:07',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5348,'1000','31687978475','2023-06-28 21:54:37',200.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'george'),(5349,'4000','31687978475','2023-06-28 21:54:37',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5350,'1000','31687978498','2023-06-28 21:54:59',200.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'mzae'),(5351,'4000','31687978498','2023-06-28 21:54:59',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5352,'1000','31687978527','2023-06-28 21:55:29',200.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'martin'),(5353,'4000','31687978527','2023-06-28 21:55:29',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(5354,'1000','31687978551','2023-06-28 21:55:53',250.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'cedrick'),(5355,'4000','31687978551','2023-06-28 21:55:53',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(5356,'1000','31688032981','2023-06-29 13:03:03',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5357,'4000','31688032981','2023-06-29 13:03:03',NULL,280.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(5358,'1000','31688036219','2023-06-29 13:57:05',700.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5359,'4000','31688036219','2023-06-29 13:57:05',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5360,'4000','31688036219','2023-06-29 13:56:59',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5361,'1000','31688036285','2023-06-29 13:58:07',200.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'mzae'),(5362,'4000','31688036285','2023-06-29 13:58:07',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5363,'1000','31688039210','2023-06-29 14:46:52',200.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'george'),(5364,'4000','31688039210','2023-06-29 14:46:52',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5365,'1000','31688039261','2023-06-29 14:47:42',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5366,'4000','31688039261','2023-06-29 14:47:42',NULL,300.00,'','3','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(5367,'1000','41688043283','2023-06-29 15:54:45',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5368,'4000','41688043283','2023-06-29 15:54:45',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(5369,'1000','41688046603','2023-06-29 16:50:04',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5370,'4000','41688046603','2023-06-29 16:50:04',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(5371,'1000','41688047853','2023-06-29 17:10:55',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5372,'4000','41688047853','2023-06-29 17:10:55',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(5373,'1000','41688053308','2023-06-29 18:41:50',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5374,'4000','41688053308','2023-06-29 18:41:50',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(5375,'1000','41688056743','2023-06-29 19:39:08',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5376,'4000','41688056743','2023-06-29 19:39:08',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5377,'4000','41688056743','2023-06-29 19:39:03',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(5378,'1000','41688057233','2023-06-29 19:47:14',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5379,'4000','41688057233','2023-06-29 19:47:14',NULL,250.00,'','4','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(5380,'1000','41688057630','2023-06-29 19:53:52',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5381,'4000','41688057630','2023-06-29 19:53:52',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(5382,'1000','41688061594','2023-06-29 21:00:08',700.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5383,'4000','41688061594','2023-06-29 21:00:08',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5384,'4000','41688061594','2023-06-29 20:59:54',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5385,'1000','41688061646','2023-06-29 21:00:48',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5386,'4000','41688061646','2023-06-29 21:00:48',NULL,250.00,'','4','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(5387,'1000','41688063473','2023-06-29 21:31:15',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5388,'4000','41688063473','2023-06-29 21:31:15',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5389,'1000','41688116660','2023-06-30 12:17:41',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5390,'4000','41688116660','2023-06-30 12:17:41',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5391,'1000','41688116695','2023-06-30 12:18:17',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5392,'4000','41688116695','2023-06-30 12:18:17',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(5393,'1000','41688118800','2023-06-30 12:53:21',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5394,'4000','41688118800','2023-06-30 12:53:21',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(5395,'1000','41688120186','2023-06-30 13:16:27',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5396,'4000','41688120186','2023-06-30 13:16:27',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5397,'1000','41688124875','2023-06-30 14:34:37',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5398,'4000','41688124875','2023-06-30 14:34:37',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5399,'1000','41688125948','2023-06-30 14:52:29',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5400,'4000','41688125948','2023-06-30 14:52:29',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(5401,'1000','41688125972','2023-06-30 14:52:53',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5402,'4000','41688125972','2023-06-30 14:52:53',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5403,'1000','41688127938','2023-06-30 15:25:39',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5404,'4000','41688127938','2023-06-30 15:25:39',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(5405,'1000','41688130141','2023-06-30 16:02:42',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5406,'4000','41688130141','2023-06-30 16:02:42',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5407,'4000','41688130141','2023-06-30 16:02:21',NULL,200.00,'','4','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(5408,'1000','41688130194','2023-06-30 16:03:15',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5409,'4000','41688130194','2023-06-30 16:03:15',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5410,'1000','41688130465','2023-06-30 16:07:46',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5411,'4000','41688130465','2023-06-30 16:07:46',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(5412,'1000','31688135205','2023-06-30 17:26:46',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5413,'4000','31688135205','2023-06-30 17:26:46',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5414,'1000','31688136924','2023-06-30 17:55:33',380.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5415,'4000','31688136924','2023-06-30 17:55:33',NULL,280.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(5416,'4000','31688136924','2023-06-30 17:55:24',NULL,100.00,'','3','1','Good sold','1','','sales','24','','No',NULL,NULL,''),(5417,'1000','31688140209','2023-06-30 18:50:21',380.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5418,'4000','31688140209','2023-06-30 18:50:21',NULL,280.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(5419,'4000','31688140209','2023-06-30 18:50:09',NULL,100.00,'','3','1','Good sold','1','','sales','24','','No',NULL,NULL,''),(5420,'1000','31688144006','2023-06-30 19:53:27',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5421,'4000','31688144006','2023-06-30 19:53:27',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5422,'1000','31688144055','2023-06-30 19:54:17',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5423,'4000','31688144055','2023-06-30 19:54:17',NULL,200.00,'','3','1','Good sold','1','','sales','19','','No',NULL,NULL,''),(5424,'1000','31688148363','2023-06-30 21:06:05',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5426,'1000','31688148363','2023-06-30 21:06:05',380.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5427,'4000','31688148363','2023-06-30 21:06:05',NULL,280.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(5428,'4000','31688148363','2023-06-30 21:06:03',NULL,100.00,'','3','1','Good sold','1','','sales','24','','No',NULL,NULL,''),(5429,'1000','31688149670','2023-06-30 21:27:51',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5430,'4000','31688149670','2023-06-30 21:27:51',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(5431,'1000','31688152669','2023-06-30 22:17:51',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5432,'4000','31688152669','2023-06-30 22:17:51',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(5433,'1000','31688156720','2023-06-30 23:25:25',580.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5434,'4000','31688156720','2023-06-30 23:25:25',NULL,300.00,'','3','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(5435,'4000','31688156720','2023-06-30 23:25:20',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(5436,'1000','41688194704','2023-07-01 09:58:25',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5437,'4000','41688194704','2023-07-01 09:58:25',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5438,'1000','41688195137','2023-07-01 10:05:38',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5439,'4000','41688195137','2023-07-01 10:05:38',NULL,280.00,'','4','1','Good sold','1','','sales','6','','No',NULL,NULL,''),(5440,'1000','41688202347','2023-07-01 12:05:48',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5441,'4000','41688202347','2023-07-01 12:05:48',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5442,'1000','41688208061','2023-07-01 13:41:02',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5443,'4000','41688208061','2023-07-01 13:41:02',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5444,'1000','41688209062','2023-07-01 13:57:43',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5445,'4000','41688209062','2023-07-01 13:57:43',NULL,250.00,'','4','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(5446,'1000','41688209184','2023-07-01 13:59:46',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5447,'4000','41688209184','2023-07-01 13:59:46',NULL,150.00,'','4','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(5448,'1000','41688213176','2023-07-01 15:06:18',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5449,'4000','41688213176','2023-07-01 15:06:18',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5450,'1000','41688214780','2023-07-01 15:33:05',480.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5451,'4000','41688214780','2023-07-01 15:33:05',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(5452,'4000','41688214780','2023-07-01 15:33:00',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(5453,'1000','31688217805','2023-07-01 16:23:27',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5454,'4000','31688217805','2023-07-01 16:23:27',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5455,'1000','31688221112','2023-07-01 17:18:34',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5456,'4000','31688221112','2023-07-01 17:18:34',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(5457,'1000','31688222749','2023-07-01 17:45:50',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5458,'4000','31688222749','2023-07-01 17:45:50',NULL,300.00,'','3','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(5459,'1000','31688223255','2023-07-01 17:54:17',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5461,'1000','31688223255','2023-07-01 17:54:17',550.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5462,'4000','31688223255','2023-07-01 17:54:17',NULL,300.00,'','3','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(5463,'4000','31688223255','2023-07-01 17:54:15',NULL,250.00,'','3','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(5464,'1000','31688226491','2023-07-01 18:48:13',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5465,'4000','31688226491','2023-07-01 18:48:13',NULL,150.00,'','3','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(5466,'1000','31688228339','2023-07-01 19:19:01',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5467,'4000','31688228339','2023-07-01 19:19:01',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5468,'1000','31688229256','2023-07-01 19:34:18',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5469,'4000','31688229256','2023-07-01 19:34:18',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5470,'1000','31688234087','2023-07-01 20:54:49',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5472,'1000','31688234087','2023-07-01 20:54:49',700.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5473,'4000','31688234087','2023-07-01 20:54:49',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5474,'4000','31688234087','2023-07-01 20:54:47',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5475,'1000','31688237466','2023-07-01 21:51:08',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5476,'4000','31688237466','2023-07-01 21:51:08',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(5477,'1000','31688238005','2023-07-01 22:00:07',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5478,'4000','31688238005','2023-07-01 22:00:07',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(5479,'1000','31688241798','2023-07-01 23:03:31',480.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'cedrick'),(5480,'4000','31688241798','2023-07-01 23:03:31',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(5481,'4000','31688241798','2023-07-01 23:03:18',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5482,'1000','31688241836','2023-07-01 23:03:58',200.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'manager'),(5483,'4000','31688241836','2023-07-01 23:03:58',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5484,'1000','31688241878','2023-07-01 23:04:43',560.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'martin'),(5485,'4000','31688241878','2023-07-01 23:04:43',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(5486,'4000','31688241878','2023-07-01 23:04:38',NULL,280.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(5487,'1000','31688241939','2023-07-01 23:05:41',280.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'purity'),(5488,'4000','31688241939','2023-07-01 23:05:41',NULL,280.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(5489,'1000','31688241995','2023-07-01 23:06:37',200.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'george'),(5490,'4000','31688241995','2023-07-01 23:06:37',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5491,'1000','31688294379','2023-07-02 13:39:40',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5492,'4000','31688294379','2023-07-02 13:39:40',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(5493,'1000','31688294399','2023-07-02 13:40:01',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5494,'4000','31688294399','2023-07-02 13:40:01',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(5495,'1000','31688294411','2023-07-02 13:40:13',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5496,'4000','31688294411','2023-07-02 13:40:13',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5497,'1000','31688296697','2023-07-02 14:18:19',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5498,'4000','31688296697','2023-07-02 14:18:19',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(5499,'1000','41688300648','2023-07-02 15:24:10',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5500,'4000','41688300648','2023-07-02 15:24:10',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5501,'1000','41688307987','2023-07-02 17:26:32',700.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5502,'4000','41688307987','2023-07-02 17:26:32',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5503,'4000','41688307987','2023-07-02 17:26:27',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5504,'1000','41688311110','2023-07-02 18:18:31',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5506,'1000','41688311110','2023-07-02 18:18:31',600.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5507,'4000','41688311110','2023-07-02 18:18:31',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5508,'4000','41688311110','2023-07-02 18:18:30',NULL,250.00,'','4','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(5509,'1000','41688312103','2023-07-02 18:35:04',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5510,'4000','41688312103','2023-07-02 18:35:04',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(5511,'1000','41688312865','2023-07-02 18:47:46',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5512,'4000','41688312865','2023-07-02 18:47:46',NULL,200.00,'','4','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(5513,'1000','41688315437','2023-07-02 19:30:39',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5514,'4000','41688315437','2023-07-02 19:30:39',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5515,'1000','41688315459','2023-07-02 19:31:00',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5516,'4000','41688315459','2023-07-02 19:31:00',NULL,250.00,'','4','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(5517,'1000','41688322383','2023-07-02 21:26:25',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5518,'4000','41688322383','2023-07-02 21:26:25',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5519,'1000','41688366841','2023-07-03 09:47:36',600.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5520,'4000','41688366841','2023-07-03 09:47:36',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(5521,'4000','41688366841','2023-07-03 09:47:22',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(5522,'4000','41688366841','2023-07-03 09:47:31',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(5523,'1000','41688372502','2023-07-03 11:21:43',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5524,'4000','41688372502','2023-07-03 11:21:43',NULL,200.00,'','4','1','Good sold','1','','sales','18','','No',NULL,NULL,''),(5525,'1000','41688379843','2023-07-03 13:24:05',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5526,'4000','41688379843','2023-07-03 13:24:05',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(5527,'1000','41688382704','2023-07-03 14:11:46',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5528,'4000','41688382704','2023-07-03 14:11:46',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(5529,'1000','41688385114','2023-07-03 14:51:58',600.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5530,'4000','41688385114','2023-07-03 14:51:58',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(5531,'4000','41688385114','2023-07-03 14:51:54',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(5532,'1000','41688385497','2023-07-03 14:58:18',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5533,'4000','41688385497','2023-07-03 14:58:18',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(5534,'1000','41688386354','2023-07-03 15:12:35',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5535,'4000','41688386354','2023-07-03 15:12:35',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(5536,'1000','41688387219','2023-07-03 15:27:01',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5537,'4000','41688387219','2023-07-03 15:27:01',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5538,'1000','41688396425','2023-07-03 18:00:26',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5539,'4000','41688396425','2023-07-03 18:00:26',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5540,'1000','41688399541','2023-07-03 18:52:22',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5541,'4000','41688399541','2023-07-03 18:52:22',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5542,'1000','41688400759','2023-07-03 19:12:46',700.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5543,'4000','41688400759','2023-07-03 19:12:46',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5544,'4000','41688400759','2023-07-03 19:12:39',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5545,'1000','41688400786','2023-07-03 19:13:07',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5546,'4000','41688400786','2023-07-03 19:13:07',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(5547,'1000','41688408500','2023-07-03 21:21:42',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5548,'4000','41688408500','2023-07-03 21:21:42',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5549,'1000','41688409507','2023-07-03 21:40:31',630.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5550,'4000','41688409507','2023-07-03 21:40:31',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5551,'4000','41688409507','2023-07-03 21:38:27',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(5552,'1000','41688462789','2023-07-04 12:26:37',500.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5553,'4000','41688462789','2023-07-04 12:26:37',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(5554,'4000','41688462789','2023-07-04 12:26:29',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5555,'1000','41688468658','2023-07-04 14:04:20',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5556,'4000','41688468658','2023-07-04 14:04:20',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(5557,'1000','41688476403','2023-07-04 16:13:25',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5558,'4000','41688476403','2023-07-04 16:13:25',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(5559,'1000','31688478659','2023-07-04 16:51:00',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5560,'4000','31688478659','2023-07-04 16:51:00',NULL,280.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(5561,'1000','41688482303','2023-07-04 17:51:45',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5562,'4000','41688482303','2023-07-04 17:51:45',NULL,250.00,'','4','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(5563,'1000','41688482329','2023-07-04 17:52:10',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5564,'4000','41688482329','2023-07-04 17:52:10',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(5565,'1000','31688483898','2023-07-04 18:18:19',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5566,'4000','31688483898','2023-07-04 18:18:19',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5567,'1000','31688493737','2023-07-04 21:02:19',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5568,'4000','31688493737','2023-07-04 21:02:19',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5569,'1000','31688493812','2023-07-04 21:03:34',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5570,'4000','31688493812','2023-07-04 21:03:34',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(5571,'1000','31688501574','2023-07-04 23:12:55',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5572,'4000','31688501574','2023-07-04 23:12:55',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5573,'1000','31688553300','2023-07-05 13:35:02',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5574,'4000','31688553300','2023-07-05 13:35:02',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5575,'1000','31688553316','2023-07-05 13:35:18',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5576,'4000','31688553316','2023-07-05 13:35:18',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(5577,'1000','31688554167','2023-07-05 13:49:29',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5578,'4000','31688554167','2023-07-05 13:49:29',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5579,'1000','31688556839','2023-07-05 14:34:01',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5580,'4000','31688556839','2023-07-05 14:34:01',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5581,'1000','31688557838','2023-07-05 14:50:39',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5582,'4000','31688557838','2023-07-05 14:50:39',NULL,250.00,'','3','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(5583,'1000','31688560575','2023-07-05 15:36:16',280.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'everlyn'),(5584,'4000','31688560575','2023-07-05 15:36:16',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(5585,'1000','31688563500','2023-07-05 16:25:01',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5586,'4000','31688563500','2023-07-05 16:25:01',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(5587,'1000','31688564200','2023-07-05 16:36:41',350.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'brayo'),(5588,'4000','31688564200','2023-07-05 16:36:41',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5589,'1000','31688564354','2023-07-05 16:39:16',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5590,'4000','31688564354','2023-07-05 16:39:16',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5591,'1000','31688568106','2023-07-05 17:41:48',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5592,'4000','31688568106','2023-07-05 17:41:48',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(5593,'1000','31688568120','2023-07-05 17:42:02',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5594,'4000','31688568120','2023-07-05 17:42:02',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(5595,'1000','31688568135','2023-07-05 17:42:16',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5596,'4000','31688568135','2023-07-05 17:42:16',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(5597,'1000','31688568821','2023-07-05 17:53:43',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5599,'1000','31688569253','2023-07-05 18:00:54',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5600,'4000','31688569253','2023-07-05 18:00:54',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(5601,'1000','31688568821','2023-07-05 17:53:43',400.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'m'),(5602,'4000','31688568821','2023-07-05 17:53:43',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5603,'4000','31688568821','2023-07-05 17:53:41',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5604,'1000','31688571449','2023-07-05 18:37:31',280.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'manager'),(5605,'4000','31688571449','2023-07-05 18:37:31',NULL,280.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(5606,'1000','31688571477','2023-07-05 18:37:59',200.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'driver'),(5607,'4000','31688571477','2023-07-05 18:37:59',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5608,'1000','31688571534','2023-07-05 18:38:55',200.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'brayo'),(5609,'4000','31688571534','2023-07-05 18:38:55',NULL,200.00,'','3','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(5610,'1000','31688571639','2023-07-05 18:40:40',200.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'cedrick'),(5611,'4000','31688571639','2023-07-05 18:40:40',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5612,'1000','31688571664','2023-07-05 18:41:08',400.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5613,'4000','31688571664','2023-07-05 18:41:08',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5614,'4000','31688571664','2023-07-05 18:41:04',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5615,'1000','31688571732','2023-07-05 18:42:14',350.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'uncle kamande'),(5616,'4000','31688571732','2023-07-05 18:42:14',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5617,'1000','31688573494','2023-07-05 19:11:36',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5618,'4000','31688573494','2023-07-05 19:11:36',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5619,'1000','31688573512','2023-07-05 19:11:54',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5620,'4000','31688573512','2023-07-05 19:11:54',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5621,'1000','31688573527','2023-07-05 19:12:09',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5622,'4000','31688573527','2023-07-05 19:12:09',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5623,'1000','31688573541','2023-07-05 19:12:23',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5624,'4000','31688573541','2023-07-05 19:12:23',NULL,200.00,'','3','1','Good sold','1','','sales','15','','No',NULL,NULL,''),(5625,'1000','31688578957','2023-07-05 20:42:39',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5626,'4000','31688578957','2023-07-05 20:42:39',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(5627,'1000','31688579141','2023-07-05 20:45:43',600.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5628,'4000','31688579141','2023-07-05 20:45:43',NULL,600.00,'','3','1','Good sold','1','','sales','40','','No',NULL,NULL,''),(5629,'1000','31688580209','2023-07-05 21:03:54',660.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5630,'4000','31688580209','2023-07-05 21:03:54',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(5631,'4000','31688580209','2023-07-05 21:03:29',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(5632,'4000','31688580209','2023-07-05 21:03:33',NULL,100.00,'','3','1','Good sold','1','','sales','26','','No',NULL,NULL,''),(5633,'1000','31688580510','2023-07-05 21:08:31',200.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'brayo'),(5634,'4000','31688580510','2023-07-05 21:08:31',NULL,200.00,'','3','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(5635,'1000','31688580571','2023-07-05 21:09:32',250.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'ruth'),(5636,'4000','31688580571','2023-07-05 21:09:32',NULL,250.00,'','3','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(5637,'1000','31688635610','2023-07-06 12:26:58',840.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'everlyn'),(5638,'4000','31688635610','2023-07-06 12:26:58',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(5639,'4000','31688635610','2023-07-06 12:26:50',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(5640,'4000','31688635610','2023-07-06 12:26:53',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(5641,'1000','31688635652','2023-07-06 12:27:34',200.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'mixologist'),(5642,'4000','31688635652','2023-07-06 12:27:34',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5643,'1000','31688635678','2023-07-06 12:27:59',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5644,'4000','31688635678','2023-07-06 12:27:59',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5645,'1000','31688635693','2023-07-06 12:28:15',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5646,'4000','31688635693','2023-07-06 12:28:15',NULL,280.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(5647,'1000','31688635719','2023-07-06 12:28:41',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5648,'4000','31688635719','2023-07-06 12:28:41',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5649,'1000','31688636505','2023-07-06 12:41:46',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5650,'4000','31688636505','2023-07-06 12:41:46',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5651,'1000','31688636540','2023-07-06 12:42:22',150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5652,'4000','31688636540','2023-07-06 12:42:22',NULL,150.00,'','3','1','Good sold','1','','sales','61','','No',NULL,NULL,''),(5653,'1000','41688646181','2023-07-06 15:23:03',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5654,'4000','41688646181','2023-07-06 15:23:03',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5655,'1000','41688651386','2023-07-06 16:49:47',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5656,'4000','41688651386','2023-07-06 16:49:47',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5657,'1110','41688652867','2023-07-06 17:14:28',NULL,70.00,'','4','1','Inventory sold','1','','sales','60','','No',NULL,NULL,''),(5658,'5500','41688652867','2023-07-06 17:14:27',70.00,NULL,'','4','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5659,'1000','41688652867','2023-07-06 17:14:28',100.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5660,'4000','41688652867','2023-07-06 17:14:28',NULL,100.00,'','4','1','Good sold','1','','sales','60','','No',NULL,NULL,''),(5661,'1000','41688655799','2023-07-06 18:03:21',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5662,'4000','41688655799','2023-07-06 18:03:21',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(5663,'1000','41688658489','2023-07-06 18:48:11',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5664,'4000','41688658489','2023-07-06 18:48:11',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5665,'1000','41688664188','2023-07-06 20:23:16',550.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5666,'4000','41688664188','2023-07-06 20:23:16',NULL,250.00,'','4','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(5667,'4000','41688664188','2023-07-06 20:23:08',NULL,300.00,'','4','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(5668,'1000','41688665223','2023-07-06 20:40:24',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5669,'4000','41688665223','2023-07-06 20:40:24',NULL,280.00,'','4','1','Good sold','1','','sales','6','','No',NULL,NULL,''),(5670,'1000','41688666057','2023-07-06 20:54:22',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5671,'4000','41688666057','2023-07-06 20:54:22',NULL,150.00,'','4','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(5672,'4000','41688666057','2023-07-06 20:54:17',NULL,150.00,'','4','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(5673,'1000','41688666119','2023-07-06 20:55:41',480.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5674,'4000','41688666119','2023-07-06 20:55:41',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(5675,'4000','41688666119','2023-07-06 20:55:19',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(5676,'1000','41688667860','2023-07-06 21:24:21',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5677,'4000','41688667860','2023-07-06 21:24:21',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5678,'1000','41688669196','2023-07-06 21:46:38',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5679,'4000','41688669196','2023-07-06 21:46:38',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(5680,'1000','41688716573','2023-07-07 10:56:18',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5681,'4000','41688716573','2023-07-07 10:56:18',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(5682,'4000','41688716573','2023-07-07 10:56:14',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(5683,'1000','41688717890','2023-07-07 11:18:12',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5684,'4000','41688717890','2023-07-07 11:18:12',NULL,200.00,'','4','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(5685,'1000','41688724844','2023-07-07 13:14:06',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5686,'4000','41688724844','2023-07-07 13:14:06',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5687,'1000','41688725082','2023-07-07 13:18:04',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5688,'4000','41688725082','2023-07-07 13:18:04',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5689,'1110','41688725116','2023-07-07 13:18:38',NULL,70.00,'','4','1','Inventory sold','1','','sales','60','','No',NULL,NULL,''),(5690,'5500','41688725116','2023-07-07 13:18:36',70.00,NULL,'','4','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5691,'1000','41688725116','2023-07-07 13:18:38',100.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5692,'4000','41688725116','2023-07-07 13:18:38',NULL,100.00,'','4','1','Good sold','1','','sales','60','','No',NULL,NULL,''),(5693,'1000','41688732204','2023-07-07 15:16:45',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5694,'4000','41688732204','2023-07-07 15:16:45',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(5695,'1000','41688738538','2023-07-07 17:02:20',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5696,'4000','41688738538','2023-07-07 17:02:20',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5697,'1000','41688743523','2023-07-07 18:26:32',1010.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5698,'4000','41688743523','2023-07-07 18:26:32',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(5699,'4000','41688743523','2023-07-07 18:25:23',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(5700,'4000','41688743523','2023-07-07 18:26:00',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(5701,'4000','41688743523','2023-07-07 18:26:04',NULL,100.00,'','4','1','Good sold','1','','sales','26','','No',NULL,NULL,''),(5702,'4000','41688743523','2023-07-07 18:26:26',NULL,100.00,'','4','1','Good sold','1','','sales','24','','No',NULL,NULL,''),(5703,'1000','41688745974','2023-07-07 19:06:21',560.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5704,'4000','41688745974','2023-07-07 19:06:21',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(5705,'4000','41688745974','2023-07-07 19:06:14',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(5706,'1000','41688747967','2023-07-07 19:39:29',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5707,'4000','41688747967','2023-07-07 19:39:29',NULL,200.00,'','4','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(5708,'1000','41688747995','2023-07-07 19:39:56',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5709,'4000','41688747995','2023-07-07 19:39:56',NULL,200.00,'','4','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(5710,'1000','41688748014','2023-07-07 19:40:15',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5711,'4000','41688748014','2023-07-07 19:40:15',NULL,200.00,'','4','1','Good sold','1','','sales','18','','No',NULL,NULL,''),(5712,'1000','41688751715','2023-07-07 20:42:00',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5713,'4000','41688751715','2023-07-07 20:42:00',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5714,'4000','41688751715','2023-07-07 20:41:55',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5715,'1000','41688754200','2023-07-07 21:23:22',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5716,'4000','41688754200','2023-07-07 21:23:22',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(5717,'1000','41688754273','2023-07-07 21:24:34',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5718,'4000','41688754273','2023-07-07 21:24:34',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(5719,'1000','31688805477','2023-07-08 11:38:02',400.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5722,'1000','31688805477','2023-07-08 11:38:02',600.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5723,'4000','31688805477','2023-07-08 11:38:02',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(5724,'4000','31688805477','2023-07-08 11:37:57',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(5725,'4000','31688805477','2023-07-08 11:38:00',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(5726,'1000','31688820086','2023-07-08 15:45:41',1300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5727,'4000','31688820086','2023-07-08 15:45:41',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(5728,'4000','31688820086','2023-07-08 15:41:26',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(5729,'4000','31688820086','2023-07-08 15:41:30',NULL,200.00,'','3','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(5730,'4000','31688820086','2023-07-08 15:44:49',NULL,200.00,'','3','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(5731,'4000','31688820086','2023-07-08 15:44:53',NULL,500.00,'','3','1','Good sold','1','','sales','44','','No',NULL,NULL,''),(5732,'1000','31688824491','2023-07-08 16:54:52',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5733,'4000','31688824491','2023-07-08 16:54:52',NULL,300.00,'','3','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(5734,'1000','41688824534','2023-07-08 16:55:36',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5735,'4000','41688824534','2023-07-08 16:55:36',NULL,150.00,'','4','1','Good sold','1','','sales','61','','No',NULL,NULL,''),(5736,'1000','41688825265','2023-07-08 17:07:46',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5737,'4000','41688825265','2023-07-08 17:07:46',NULL,150.00,'','4','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(5738,'1000','41688826124','2023-07-08 17:22:06',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5739,'4000','41688826124','2023-07-08 17:22:06',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(5740,'1000','41688827778','2023-07-08 17:50:33',1380.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5741,'4000','41688827778','2023-07-08 17:50:33',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(5742,'4000','41688827778','2023-07-08 17:49:38',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5743,'4000','41688827778','2023-07-08 17:49:45',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(5744,'4000','41688827778','2023-07-08 17:49:54',NULL,250.00,'','4','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(5745,'4000','41688827778','2023-07-08 17:49:58',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5746,'4000','41688827778','2023-07-08 17:50:06',NULL,100.00,'','4','1','Good sold','1','','sales','26','','No',NULL,NULL,''),(5747,'1000','41688828143','2023-07-08 17:55:45',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5748,'4000','41688828143','2023-07-08 17:55:45',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(5749,'1000','41688832001','2023-07-08 19:00:06',480.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5750,'4000','41688832001','2023-07-08 19:00:06',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(5751,'4000','41688832001','2023-07-08 19:00:01',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(5752,'1000','41688833757','2023-07-08 19:29:19',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5753,'4000','41688833757','2023-07-08 19:29:19',NULL,300.00,'','4','1','Good sold','1','','sales','34','','No',NULL,NULL,''),(5754,'1000','41688836381','2023-07-08 20:13:03',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5755,'4000','41688836381','2023-07-08 20:13:03',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5756,'1000','41688837160','2023-07-08 20:26:01',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5757,'4000','41688837160','2023-07-08 20:26:01',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(5758,'1000','41688838347','2023-07-08 20:45:49',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5759,'4000','41688838347','2023-07-08 20:45:49',NULL,150.00,'','4','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(5760,'1000','41688840368','2023-07-08 21:19:30',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5761,'4000','41688840368','2023-07-08 21:19:30',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(5762,'1000','41688841339','2023-07-08 21:35:40',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5763,'4000','41688841339','2023-07-08 21:35:40',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(5764,'1000','41688886133','2023-07-09 10:02:14',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5765,'4000','41688886133','2023-07-09 10:02:14',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(5766,'1000','41688886148','2023-07-09 10:02:29',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5767,'4000','41688886148','2023-07-09 10:02:29',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(5768,'1000','41688886168','2023-07-09 10:02:50',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5769,'4000','41688886168','2023-07-09 10:02:50',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(5770,'1000','41688886203','2023-07-09 10:03:25',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5771,'4000','41688886203','2023-07-09 10:03:25',NULL,250.00,'','4','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(5772,'1000','41688906579','2023-07-09 15:43:01',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5773,'4000','41688906579','2023-07-09 15:43:01',NULL,250.00,'','4','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(5774,'1000','31688909523','2023-07-09 16:32:04',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5775,'4000','31688909523','2023-07-09 16:32:04',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(5776,'1000','41688913567','2023-07-09 17:39:28',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5777,'4000','41688913567','2023-07-09 17:39:28',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(5778,'1110','31688915076','2023-07-09 18:04:37',NULL,70.00,'','3','1','Inventory sold','1','','sales','60','','No',NULL,NULL,''),(5779,'5500','31688915076','2023-07-09 18:04:36',70.00,NULL,'','3','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5780,'1000','31688915076','2023-07-09 18:04:37',100.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5781,'4000','31688915076','2023-07-09 18:04:37',NULL,100.00,'','3','1','Good sold','1','','sales','60','','No',NULL,NULL,''),(5782,'1000','31688917395','2023-07-09 18:43:24',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5783,'4000','31688917395','2023-07-09 18:43:24',NULL,250.00,'','3','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(5784,'4000','31688917395','2023-07-09 18:43:15',NULL,100.00,'','3','1','Good sold','1','','sales','24','','No',NULL,NULL,''),(5785,'1000','31688920693','2023-07-09 19:38:15',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5786,'4000','31688920693','2023-07-09 19:38:15',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5787,'1000','31688924032','2023-07-09 20:34:08',750.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5788,'4000','31688924032','2023-07-09 20:34:08',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(5789,'4000','31688924032','2023-07-09 20:33:52',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(5790,'4000','31688924032','2023-07-09 20:34:03',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(5791,'1000','31688926774','2023-07-09 21:19:45',480.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5792,'4000','31688926774','2023-07-09 21:19:45',NULL,280.00,'','3','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(5793,'4000','31688926774','2023-07-09 21:19:34',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5794,'1000','31688930735','2023-07-09 22:25:37',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5795,'4000','31688930735','2023-07-09 22:25:37',NULL,250.00,'','3','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(5796,'1000','31688931063','2023-07-09 22:31:05',200.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'cedrick'),(5797,'4000','31688931063','2023-07-09 22:31:05',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(5798,'1000','31688931086','2023-07-09 22:31:28',300.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'manager'),(5799,'4000','31688931086','2023-07-09 22:31:28',NULL,300.00,'','3','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(5800,'1000','31688931111','2023-07-09 22:31:53',200.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'mzae'),(5801,'4000','31688931111','2023-07-09 22:31:53',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5802,'1000','31688931136','2023-07-09 22:32:17',200.00,NULL,'','3','1','Good sold','1','','sales','','','No',NULL,NULL,'george'),(5803,'4000','31688931136','2023-07-09 22:32:17',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5804,'1000','41688973014','2023-07-10 10:10:15',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5805,'4000','41688973014','2023-07-10 10:10:15',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(5806,'1000','41688979606','2023-07-10 12:00:08',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5807,'4000','41688979606','2023-07-10 12:00:08',NULL,250.00,'','4','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(5808,'1000','41688999566','2023-07-10 17:32:48',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5809,'4000','41688999566','2023-07-10 17:32:48',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5810,'1000','41689001176','2023-07-10 17:59:37',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5811,'4000','41689001176','2023-07-10 17:59:37',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5812,'1000','41689002304','2023-07-10 18:18:25',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5813,'4000','41689002304','2023-07-10 18:18:25',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(5814,'1000','41689010428','2023-07-10 20:33:56',750.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5815,'4000','41689010428','2023-07-10 20:33:56',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(5816,'4000','41689010428','2023-07-10 20:33:48',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(5817,'4000','41689010428','2023-07-10 20:33:51',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(5818,'1110','31678637854','2023-07-14 21:17:59',NULL,650.00,'','3','1','Inventory sold','1','','sales','50','','No',NULL,NULL,''),(5819,'5500','31678637854','2023-07-14 21:17:59',650.00,NULL,'','3','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5820,'1000','31678637854','2023-03-12 19:17:38',1150.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5821,'4000','31678637854','2023-03-12 19:17:38',NULL,350.00,'','3','1','Good sold','1','','sales','57','','No',NULL,NULL,''),(5822,'4000','31678637854','2023-07-14 21:17:59',NULL,800.00,'','3','1','Good sold','1','','sales','50','','No',NULL,NULL,''),(5823,'1000','31689361160','2023-07-14 21:59:21',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5824,'4000','31689361160','2023-07-14 21:59:21',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5825,'1000','31689362045','2023-07-14 22:14:06',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5826,'4000','31689362045','2023-07-14 22:14:06',NULL,200.00,'','3','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(5827,'1000','31689362064','2023-07-14 22:14:25',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5828,'4000','31689362064','2023-07-14 22:14:25',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(5829,'1000','31689362094','2023-07-14 22:14:55',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5830,'4000','31689362094','2023-07-14 22:14:55',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(5831,'1000','31689362146','2023-07-14 22:15:47',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5832,'4000','31689362146','2023-07-14 22:15:47',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(5833,'1000','31689362180','2023-07-14 22:16:45',1300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5834,'4000','31689362180','2023-07-14 22:16:45',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5835,'4000','31689362180','2023-07-14 22:16:20',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5836,'4000','31689362180','2023-07-14 22:16:23',NULL,200.00,'','3','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(5837,'4000','31689362180','2023-07-14 22:16:38',NULL,200.00,'','3','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(5838,'4000','31689362180','2023-07-14 22:16:40',NULL,200.00,'','3','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(5839,'1000','31689362245','2023-07-14 22:17:26',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5840,'4000','31689362245','2023-07-14 22:17:26',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(5841,'1000','31689362257','2023-07-14 22:17:38',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5842,'4000','31689362257','2023-07-14 22:17:38',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5843,'1000','31689362290','2023-07-14 22:18:11',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5844,'4000','31689362290','2023-07-14 22:18:11',NULL,200.00,'','3','1','Good sold','1','','sales','15','','No',NULL,NULL,''),(5845,'1000','31689362321','2023-07-14 22:18:44',700.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5846,'4000','31689362321','2023-07-14 22:18:44',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5847,'4000','31689362321','2023-07-14 22:18:41',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5848,'1000','31689362346','2023-07-14 22:19:07',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5849,'4000','31689362346','2023-07-14 22:19:07',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(5850,'1000','31689362368','2023-07-14 22:19:30',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5851,'4000','31689362368','2023-07-14 22:19:30',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5852,'1000','31689362390','2023-07-14 22:19:51',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5853,'4000','31689362390','2023-07-14 22:19:51',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(5854,'1000','31689362405','2023-07-14 22:20:07',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5855,'4000','31689362405','2023-07-14 22:20:07',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5856,'1000','31689362424','2023-07-14 22:20:25',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5857,'4000','31689362424','2023-07-14 22:20:25',NULL,200.00,'','3','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(5858,'1000','31689362440','2023-07-14 22:20:41',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5859,'4000','31689362440','2023-07-14 22:20:41',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(5860,'1000','31689362460','2023-07-14 22:21:01',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5861,'4000','31689362460','2023-07-14 22:21:01',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5862,'1000','31689362509','2023-07-14 22:22:14',550.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5863,'4000','31689362509','2023-07-14 22:22:14',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5864,'4000','31689362509','2023-07-14 22:21:49',NULL,200.00,'','3','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(5865,'1000','31689362550','2023-07-14 22:22:31',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5866,'4000','31689362550','2023-07-14 22:22:31',NULL,200.00,'','3','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(5867,'1000','31689362574','2023-07-14 22:22:55',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5868,'4000','31689362574','2023-07-14 22:22:55',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(5869,'1000','31689362621','2023-07-14 22:23:42',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5870,'4000','31689362621','2023-07-14 22:23:42',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(5871,'1110','31689362703','2023-07-14 22:25:04',NULL,70.00,'','3','1','Inventory sold','1','','sales','60','','No',NULL,NULL,''),(5872,'5500','31689362703','2023-07-14 22:25:03',70.00,NULL,'','3','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5873,'1000','31689362703','2023-07-14 22:25:04',100.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5874,'4000','31689362703','2023-07-14 22:25:04',NULL,100.00,'','3','1','Good sold','1','','sales','60','','No',NULL,NULL,''),(5875,'1000','31689362715','2023-07-14 22:25:16',300.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5876,'4000','31689362715','2023-07-14 22:25:16',NULL,300.00,'','3','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(5877,'1000','31689362803','2023-07-14 22:26:45',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5878,'4000','31689362803','2023-07-14 22:26:45',NULL,280.00,'','3','1','Good sold','1','','sales','6','','No',NULL,NULL,''),(5879,'1000','31689362840','2023-07-14 22:27:21',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5880,'4000','31689362840','2023-07-14 22:27:21',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5881,'1000','31689362859','2023-07-14 22:27:41',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5882,'4000','31689362859','2023-07-14 22:27:41',NULL,200.00,'','3','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5883,'1000','31689362877','2023-07-14 22:27:58',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5884,'4000','31689362877','2023-07-14 22:27:58',NULL,250.00,'','3','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(5885,'1000','31689362911','2023-07-14 22:28:32',250.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5886,'4000','31689362911','2023-07-14 22:28:32',NULL,250.00,'','3','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(5887,'1000','31689362920','2023-07-14 22:28:42',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5888,'4000','31689362920','2023-07-14 22:28:42',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(5889,'1000','31689362987','2023-07-14 22:29:48',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5890,'4000','31689362987','2023-07-14 22:29:48',NULL,200.00,'','3','1','Good sold','1','','sales','19','','No',NULL,NULL,''),(5891,'1000','31689363002','2023-07-14 22:30:03',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5892,'4000','31689363002','2023-07-14 22:30:03',NULL,200.00,'','3','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(5893,'1000','31689363115','2023-07-14 22:31:56',350.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5894,'4000','31689363115','2023-07-14 22:31:56',NULL,350.00,'','3','1','Good sold','1','','sales','45','','No',NULL,NULL,''),(5895,'1000','31689363149','2023-07-14 22:32:30',200.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5896,'4000','31689363149','2023-07-14 22:32:30',NULL,200.00,'','3','1','Good sold','1','','sales','19','','No',NULL,NULL,''),(5897,'1000','31689413352','2023-07-15 12:29:13',280.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5899,'1000','31689413352','2023-07-15 12:29:13',560.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5900,'4000','31689413352','2023-07-15 12:29:13',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(5901,'4000','31689413352','2023-07-15 12:29:12',NULL,280.00,'','3','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(5902,'1000','31689425160','2023-07-15 15:46:23',950.00,NULL,'','3','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5903,'4000','31689425160','2023-07-15 15:46:23',NULL,350.00,'','3','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5904,'4000','31689425160','2023-07-15 15:46:00',NULL,300.00,'','3','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(5905,'4000','31689425160','2023-07-15 15:46:10',NULL,300.00,'','3','1','Good sold','1','','sales','29','','No',NULL,NULL,''),(5906,'1000','41689425255','2023-07-15 15:47:36',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5907,'4000','41689425255','2023-07-15 15:47:36',NULL,250.00,'','4','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(5908,'1000','41689426047','2023-07-15 16:00:52',480.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5909,'4000','41689426047','2023-07-15 16:00:52',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(5910,'4000','41689426047','2023-07-15 16:00:47',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(5911,'1000','41689435471','2023-07-15 18:37:52',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5912,'4000','41689435471','2023-07-15 18:37:52',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5913,'1000','41689436964','2023-07-15 19:02:45',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5914,'4000','41689436964','2023-07-15 19:02:45',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5915,'1110','41689438104','2023-07-15 19:21:49',NULL,200.00,'','4','1','Inventory sold','1','','sales','62','','No',NULL,NULL,''),(5916,'1110','41689438104','2023-07-15 19:21:44',NULL,0.00,'','4','1','Inventory sold','1','','sales','16','','No',NULL,NULL,''),(5917,'5500','41689438104','2023-07-15 19:21:48',200.00,NULL,'','4','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5918,'1000','41689438104','2023-07-15 19:21:49',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5919,'4000','41689438104','2023-07-15 19:21:49',NULL,200.00,'','4','1','Good sold','1','','sales','62','','No',NULL,NULL,''),(5920,'4000','41689438104','2023-07-15 19:21:44',NULL,200.00,'','4','1','Good sold','1','','sales','16','','No',NULL,NULL,''),(5921,'1000','41689438117','2023-07-15 19:21:59',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5922,'4000','41689438117','2023-07-15 19:21:59',NULL,200.00,'','4','1','Good sold','1','','sales','16','','No',NULL,NULL,''),(5923,'1000','41689443332','2023-07-15 20:48:53',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5924,'4000','41689443332','2023-07-15 20:48:53',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5925,'1000','41689446212','2023-07-15 21:37:06',380.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5926,'4000','41689446212','2023-07-15 21:37:06',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(5927,'4000','41689446212','2023-07-15 21:36:52',NULL,100.00,'','4','1','Good sold','1','','sales','26','','No',NULL,NULL,''),(5928,'1000','41689446237','2023-07-15 21:37:18',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5929,'4000','41689446237','2023-07-15 21:37:18',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(5930,'1000','41689446247','2023-07-15 21:37:29',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5931,'4000','41689446247','2023-07-15 21:37:29',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(5932,'1000','41689487404','2023-07-16 09:03:33',380.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5933,'4000','41689487404','2023-07-16 09:03:33',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(5934,'4000','41689487404','2023-07-16 09:03:24',NULL,100.00,'','4','1','Good sold','1','','sales','26','','No',NULL,NULL,''),(5935,'1000','41689492685','2023-07-16 10:31:26',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5936,'4000','41689492685','2023-07-16 10:31:26',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5937,'1000','41689493905','2023-07-16 10:51:46',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5938,'4000','41689493905','2023-07-16 10:51:46',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(5939,'1000','41689497116','2023-07-16 11:45:18',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5940,'4000','41689497116','2023-07-16 11:45:18',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(5941,'1000','41689505830','2023-07-16 14:10:32',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5942,'4000','41689505830','2023-07-16 14:10:32',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(5943,'1000','41689505976','2023-07-16 14:12:57',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5944,'4000','41689505976','2023-07-16 14:12:57',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(5945,'1000','41689514996','2023-07-16 16:43:17',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5946,'4000','41689514996','2023-07-16 16:43:17',NULL,300.00,'','4','1','Good sold','1','','sales','29','','No',NULL,NULL,''),(5947,'1000','41689522134','2023-07-16 18:42:15',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5948,'4000','41689522134','2023-07-16 18:42:15',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5949,'1000','41689523684','2023-07-16 19:08:16',500.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5950,'4000','41689523684','2023-07-16 19:08:16',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(5951,'4000','41689523684','2023-07-16 19:08:04',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(5952,'1000','41689529549','2023-07-16 20:46:10',500.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5953,'4000','41689529549','2023-07-16 20:46:10',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(5954,'4000','41689529549','2023-07-16 20:45:49',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(5955,'1000','41689532603','2023-07-16 21:36:50',1050.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5956,'4000','41689532603','2023-07-16 21:36:50',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5957,'4000','41689532603','2023-07-16 21:36:43',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5958,'4000','41689532603','2023-07-16 21:36:46',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5959,'1000','41689584632','2023-07-17 12:03:53',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5960,'4000','41689584632','2023-07-17 12:03:53',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5961,'1000','41689589283','2023-07-17 13:21:24',600.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5962,'4000','41689589283','2023-07-17 13:21:24',NULL,600.00,'','4','1','Good sold','1','','sales','40','','No',NULL,NULL,''),(5963,'1000','41689592801','2023-07-17 14:20:05',560.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5964,'4000','41689592801','2023-07-17 14:20:05',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(5965,'4000','41689592801','2023-07-17 14:20:01',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(5966,'1000','41689594745','2023-07-17 14:52:26',600.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5967,'4000','41689594745','2023-07-17 14:52:26',NULL,600.00,'','4','1','Good sold','1','','sales','40','','No',NULL,NULL,''),(5968,'1000','41689596868','2023-07-17 15:27:49',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5969,'4000','41689596868','2023-07-17 15:27:49',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(5970,'1000','41689602732','2023-07-17 17:05:33',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5971,'4000','41689602732','2023-07-17 17:05:33',NULL,200.00,'','4','1','Good sold','1','','sales','18','','No',NULL,NULL,''),(5972,'1000','41689604046','2023-07-17 17:27:28',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5973,'4000','41689604046','2023-07-17 17:27:28',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5974,'1000','41689604613','2023-07-17 17:36:54',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5975,'4000','41689604613','2023-07-17 17:36:54',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5976,'1000','41689605717','2023-07-17 17:55:18',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5977,'4000','41689605717','2023-07-17 17:55:18',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(5978,'1000','41689606149','2023-07-17 18:02:46',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5979,'4000','41689606149','2023-07-17 18:02:46',NULL,200.00,'','4','1','Good sold','1','','sales','18','','No',NULL,NULL,''),(5980,'4000','41689606149','2023-07-17 18:02:30',NULL,200.00,'','4','1','Good sold','1','','sales','16','','No',NULL,NULL,''),(5981,'1000','41689616127','2023-07-17 20:48:48',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5982,'4000','41689616127','2023-07-17 20:48:48',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(5983,'1000','41689616151','2023-07-17 20:49:12',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5984,'4000','41689616151','2023-07-17 20:49:12',NULL,250.00,'','4','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(5985,'1000','41689617514','2023-07-17 21:12:05',380.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5986,'4000','41689617514','2023-07-17 21:12:05',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(5987,'4000','41689617514','2023-07-17 21:11:54',NULL,100.00,'','4','1','Good sold','1','','sales','26','','No',NULL,NULL,''),(5988,'1000','41689618612','2023-07-17 21:30:13',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5989,'4000','41689618612','2023-07-17 21:30:13',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(5990,'1000','41689659863','2023-07-18 08:57:45',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5991,'4000','41689659863','2023-07-18 08:57:45',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5992,'1000','41689670049','2023-07-18 11:47:30',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5993,'4000','41689670049','2023-07-18 11:47:30',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(5994,'1110','41689679652','2023-07-18 14:27:33',NULL,150.00,'','4','1','Inventory sold','1','','sales','55','','No',NULL,NULL,''),(5995,'5500','41689679652','2023-07-18 14:27:32',150.00,NULL,'','4','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(5996,'1000','41689679652','2023-07-18 14:27:33',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5997,'4000','41689679652','2023-07-18 14:27:33',NULL,200.00,'','4','1','Good sold','1','','sales','55','','No',NULL,NULL,''),(5998,'1000','41689680145','2023-07-18 14:35:46',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(5999,'4000','41689680145','2023-07-18 14:35:46',NULL,280.00,'','4','1','Good sold','1','','sales','13','','No',NULL,NULL,''),(6000,'1000','41689687445','2023-07-18 16:37:26',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6001,'4000','41689687445','2023-07-18 16:37:26',NULL,200.00,'','4','1','Good sold','1','','sales','63','','No',NULL,NULL,''),(6002,'1000','41689693294','2023-07-18 18:14:55',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6003,'4000','41689693294','2023-07-18 18:14:55',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6004,'1000','41689693303','2023-07-18 18:15:05',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6005,'4000','41689693303','2023-07-18 18:15:05',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6006,'1000','41689694265','2023-07-18 18:31:13',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6007,'4000','41689694265','2023-07-18 18:31:13',NULL,200.00,'','4','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(6008,'4000','41689694265','2023-07-18 18:31:05',NULL,200.00,'','4','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(6009,'1000','41689695999','2023-07-18 19:00:00',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6010,'4000','41689695999','2023-07-18 19:00:00',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6011,'1000','41689696152','2023-07-18 19:02:33',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6012,'4000','41689696152','2023-07-18 19:02:33',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(6013,'1000','41689697028','2023-07-18 19:17:10',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6014,'4000','41689697028','2023-07-18 19:17:10',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6015,'1000','41689699008','2023-07-18 19:50:09',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6016,'4000','41689699008','2023-07-18 19:50:09',NULL,150.00,'','4','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(6017,'1000','41689700303','2023-07-18 20:11:44',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6018,'4000','41689700303','2023-07-18 20:11:44',NULL,250.00,'','4','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(6019,'1000','41689701196','2023-07-18 20:26:49',700.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6020,'4000','41689701196','2023-07-18 20:26:49',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(6021,'4000','41689701196','2023-07-18 20:26:36',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(6022,'4000','41689701196','2023-07-18 20:26:38',NULL,200.00,'','4','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(6023,'1000','41689836105','2023-07-20 09:55:06',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6024,'4000','41689836105','2023-07-20 09:55:06',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(6025,'1000','41689839080','2023-07-20 10:44:41',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6026,'4000','41689839080','2023-07-20 10:44:41',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6027,'1000','41689840055','2023-07-20 11:00:56',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6028,'4000','41689840055','2023-07-20 11:00:56',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(6029,'1000','41689840725','2023-07-20 11:12:06',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6030,'4000','41689840725','2023-07-20 11:12:06',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(6031,'1000','41689840879','2023-07-20 11:14:41',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6032,'4000','41689840879','2023-07-20 11:14:41',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(6033,'1000','41689841312','2023-07-20 11:21:53',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6034,'4000','41689841312','2023-07-20 11:21:53',NULL,250.00,'','4','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(6035,'1000','41689842381','2023-07-20 11:39:42',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6036,'4000','41689842381','2023-07-20 11:39:42',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(6037,'1000','41689860881','2023-07-20 16:48:11',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6038,'4000','41689860881','2023-07-20 16:48:11',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(6039,'4000','41689860881','2023-07-20 16:48:01',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(6040,'1000','41689861418','2023-07-20 16:56:59',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6041,'4000','41689861418','2023-07-20 16:56:59',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(6042,'1000','41689861964','2023-07-20 17:06:05',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6043,'4000','41689861964','2023-07-20 17:06:05',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(6044,'1000','41689862258','2023-07-20 17:10:59',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6045,'4000','41689862258','2023-07-20 17:10:59',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(6046,'1000','41689866733','2023-07-20 18:25:34',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6047,'4000','41689866733','2023-07-20 18:25:34',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(6048,'1000','41689873791','2023-07-20 20:23:12',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6049,'4000','41689873791','2023-07-20 20:23:12',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(6050,'1000','41689874501','2023-07-20 20:35:02',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6051,'4000','41689874501','2023-07-20 20:35:02',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6052,'1000','41689875666','2023-07-20 20:54:28',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6053,'4000','41689875666','2023-07-20 20:54:28',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6054,'1000','41689877147','2023-07-20 21:19:20',550.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6055,'4000','41689877147','2023-07-20 21:19:20',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6056,'4000','41689877147','2023-07-20 21:19:07',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6057,'1000','41689878728','2023-07-20 21:45:29',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6058,'4000','41689878728','2023-07-20 21:45:29',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(6059,'1000','41689879300','2023-07-20 21:55:04',500.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6060,'4000','41689879300','2023-07-20 21:55:04',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(6061,'4000','41689879300','2023-07-20 21:55:00',NULL,250.00,'','4','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(6062,'1000','41689918172','2023-07-21 08:42:53',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6063,'4000','41689918172','2023-07-21 08:42:53',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(6064,'1000','41689925454','2023-07-21 10:44:15',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6065,'4000','41689925454','2023-07-21 10:44:15',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(6066,'1000','41689930103','2023-07-21 12:01:52',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6067,'4000','41689930103','2023-07-21 12:01:52',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(6068,'4000','41689930103','2023-07-21 12:01:43',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(6069,'1000','41689931178','2023-07-21 12:19:39',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6070,'4000','41689931178','2023-07-21 12:19:39',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(6071,'1000','41689942565','2023-07-21 15:29:27',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6072,'4000','41689942565','2023-07-21 15:29:27',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6073,'1000','41689943775','2023-07-21 15:49:36',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6074,'4000','41689943775','2023-07-21 15:49:36',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6075,'1000','41689960891','2023-07-21 20:34:52',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6076,'4000','41689960891','2023-07-21 20:34:52',NULL,200.00,'','4','1','Good sold','1','','sales','63','','No',NULL,NULL,''),(6077,'1000','41689961819','2023-07-21 20:50:21',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6078,'4000','41689961819','2023-07-21 20:50:21',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6079,'1000','41689964387','2023-07-21 21:33:08',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6080,'4000','41689964387','2023-07-21 21:33:08',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(6081,'1000','41689964405','2023-07-21 21:33:26',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6082,'4000','41689964405','2023-07-21 21:33:26',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(6083,'1000','41689964595','2023-07-21 21:36:37',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6084,'4000','41689964595','2023-07-21 21:36:37',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(6085,'1000','41690008898','2023-07-22 09:54:59',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6086,'4000','41690008898','2023-07-22 09:54:59',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(6087,'1000','41690010611','2023-07-22 10:23:32',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6088,'4000','41690010611','2023-07-22 10:23:32',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6089,'1000','41690010674','2023-07-22 10:24:36',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6090,'4000','41690010674','2023-07-22 10:24:36',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(6091,'1000','41690022031','2023-07-22 13:33:52',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6092,'4000','41690022031','2023-07-22 13:33:52',NULL,250.00,'','4','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(6093,'1000','41690026838','2023-07-22 14:53:59',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6094,'4000','41690026838','2023-07-22 14:53:59',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6095,'1000','41690029554','2023-07-22 15:39:15',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6096,'4000','41690029554','2023-07-22 15:39:15',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(6097,'1000','41690034607','2023-07-22 17:03:45',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6098,'4000','41690034607','2023-07-22 17:03:45',NULL,300.00,'','4','1','Good sold','1','','sales','29','','No',NULL,NULL,''),(6099,'4000','41690034607','2023-07-22 17:03:27',NULL,100.00,'','4','1','Good sold','1','','sales','24','','No',NULL,NULL,''),(6100,'1000','41690034747','2023-07-22 17:05:48',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6101,'4000','41690034747','2023-07-22 17:05:48',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6102,'1000','41690044020','2023-07-22 19:40:21',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6103,'4000','41690044020','2023-07-22 19:40:21',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(6104,'1000','41690045481','2023-07-22 20:04:42',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6105,'4000','41690045481','2023-07-22 20:04:42',NULL,150.00,'','4','1','Good sold','1','','sales','64','','No',NULL,NULL,''),(6106,'1000','41690047521','2023-07-22 20:38:58',900.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6107,'4000','41690047521','2023-07-22 20:38:58',NULL,600.00,'','4','1','Good sold','1','','sales','40','','No',NULL,NULL,''),(6108,'4000','41690047521','2023-07-22 20:38:41',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(6109,'1000','41690048306','2023-07-22 20:51:47',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6110,'4000','41690048306','2023-07-22 20:51:47',NULL,250.00,'','4','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(6111,'1000','41690048326','2023-07-22 20:52:08',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6112,'4000','41690048326','2023-07-22 20:52:08',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(6113,'1000','41690048854','2023-07-22 21:00:55',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6114,'4000','41690048854','2023-07-22 21:00:55',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(6115,'1000','41690049072','2023-07-22 21:04:33',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6116,'4000','41690049072','2023-07-22 21:04:33',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6117,'1000','41690049606','2023-07-22 21:13:27',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6118,'4000','41690049606','2023-07-22 21:13:27',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(6119,'1000','41690049633','2023-07-22 21:13:54',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6120,'4000','41690049633','2023-07-22 21:13:54',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(6121,'1000','41690052829','2023-07-22 22:07:11',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6122,'4000','41690052829','2023-07-22 22:07:11',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6123,'1000','41690053938','2023-07-22 22:25:39',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6124,'4000','41690053938','2023-07-22 22:25:39',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(6125,'1000','41690054807','2023-07-22 22:40:08',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6126,'4000','41690054807','2023-07-22 22:40:08',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(6127,'1000','41690092992','2023-07-23 09:16:34',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6128,'4000','41690092992','2023-07-23 09:16:34',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6129,'1000','41690094454','2023-07-23 09:40:55',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6130,'4000','41690094454','2023-07-23 09:40:55',NULL,350.00,'','4','1','Good sold','1','','sales','54','','No',NULL,NULL,''),(6131,'1000','41690094681','2023-07-23 09:44:42',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6132,'4000','41690094681','2023-07-23 09:44:42',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(6133,'1000','41690094728','2023-07-23 09:45:29',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6134,'4000','41690094728','2023-07-23 09:45:29',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(6135,'1000','41690098501','2023-07-23 10:48:23',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6136,'4000','41690098501','2023-07-23 10:48:23',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6137,'1000','41690102494','2023-07-23 11:54:55',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6138,'4000','41690102494','2023-07-23 11:54:55',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(6139,'1000','41690107084','2023-07-23 13:11:25',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6140,'4000','41690107084','2023-07-23 13:11:25',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6141,'1000','41690109160','2023-07-23 13:46:01',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6142,'4000','41690109160','2023-07-23 13:46:01',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(6143,'1000','41690111249','2023-07-23 14:20:50',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6144,'4000','41690111249','2023-07-23 14:20:50',NULL,150.00,'','4','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(6145,'1000','41690111851','2023-07-23 14:30:58',600.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6146,'4000','41690111851','2023-07-23 14:30:58',NULL,250.00,'','4','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(6147,'4000','41690111851','2023-07-23 14:30:51',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6148,'1000','41690111892','2023-07-23 14:31:33',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6149,'4000','41690111892','2023-07-23 14:31:33',NULL,200.00,'','4','1','Good sold','1','','sales','15','','No',NULL,NULL,''),(6150,'1000','41690112483','2023-07-23 14:41:24',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6151,'4000','41690112483','2023-07-23 14:41:24',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6152,'1000','41690115930','2023-07-23 15:38:52',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6153,'4000','41690115930','2023-07-23 15:38:52',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(6154,'1000','41690121752','2023-07-23 17:15:56',500.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6155,'4000','41690121752','2023-07-23 17:15:56',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(6156,'4000','41690121752','2023-07-23 17:15:52',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(6157,'1000','41690122572','2023-07-23 17:29:33',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6158,'4000','41690122572','2023-07-23 17:29:33',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6159,'1000','41690122571','2023-07-23 17:29:55',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6160,'4000','41690122571','2023-07-23 17:29:55',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(6161,'1000','41690122908','2023-07-23 17:35:17',480.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6162,'4000','41690122908','2023-07-23 17:35:17',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(6163,'4000','41690122908','2023-07-23 17:35:08',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(6164,'1000','41690123375','2023-07-23 17:42:56',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6165,'4000','41690123375','2023-07-23 17:42:56',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(6166,'1000','41690125325','2023-07-23 18:15:28',500.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6167,'4000','41690125325','2023-07-23 18:15:28',NULL,250.00,'','4','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(6168,'4000','41690125325','2023-07-23 18:15:25',NULL,250.00,'','4','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(6169,'1000','41690126212','2023-07-23 18:30:14',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6170,'4000','41690126212','2023-07-23 18:30:14',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(6171,'1000','41690127242','2023-07-23 18:47:27',500.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6172,'4000','41690127242','2023-07-23 18:47:27',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(6173,'4000','41690127242','2023-07-23 18:47:22',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(6174,'1000','41690131793','2023-07-23 20:03:15',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6176,'1000','41690131793','2023-07-23 20:03:15',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6177,'4000','41690131793','2023-07-23 20:03:15',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(6178,'4000','41690131793','2023-07-23 20:03:13',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(6179,'1000','41690136203','2023-07-23 21:18:15',580.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6180,'4000','41690136203','2023-07-23 21:18:15',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(6181,'4000','41690136203','2023-07-23 21:16:43',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(6182,'1000','41690138433','2023-07-23 21:53:55',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6183,'4000','41690138433','2023-07-23 21:53:55',NULL,250.00,'','4','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(6184,'1000','41690182946','2023-07-24 10:15:47',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6185,'4000','41690182946','2023-07-24 10:15:47',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(6186,'1000','41690182973','2023-07-24 10:16:14',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6187,'4000','41690182973','2023-07-24 10:16:14',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(6188,'1000','41690198149','2023-07-24 14:29:10',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6189,'4000','41690198149','2023-07-24 14:29:10',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6190,'1000','41690201767','2023-07-24 15:29:32',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6191,'4000','41690201767','2023-07-24 15:29:32',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6192,'4000','41690201767','2023-07-24 15:29:27',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6193,'1000','41690203204','2023-07-24 15:53:32',480.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6194,'4000','41690203204','2023-07-24 15:53:32',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(6195,'4000','41690203204','2023-07-24 15:53:24',NULL,200.00,'','4','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(6196,'1000','41690204034','2023-07-24 16:07:15',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6197,'4000','41690204034','2023-07-24 16:07:15',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6198,'1000','41690206695','2023-07-24 16:51:36',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6199,'4000','41690206695','2023-07-24 16:51:36',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(6200,'1000','41690208840','2023-07-24 17:27:21',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6201,'4000','41690208840','2023-07-24 17:27:21',NULL,250.00,'','4','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(6202,'1000','41690217914','2023-07-24 19:58:35',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6203,'4000','41690217914','2023-07-24 19:58:35',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6204,'1000','41690222038','2023-07-24 21:07:23',700.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6205,'4000','41690222038','2023-07-24 21:07:23',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6206,'4000','41690222038','2023-07-24 21:07:18',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6207,'1000','41690224938','2023-07-24 21:55:39',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6208,'4000','41690224938','2023-07-24 21:55:39',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(6209,'1000','41690272321','2023-07-25 11:06:15',800.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6210,'4000','41690272321','2023-07-25 11:06:15',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6211,'4000','41690272321','2023-07-25 11:05:21',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6212,'4000','41690272321','2023-07-25 11:05:24',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(6213,'4000','41690272321','2023-07-25 11:06:07',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(6214,'1000','41690274763','2023-07-25 11:46:04',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6215,'4000','41690274763','2023-07-25 11:46:04',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(6216,'1000','41690278132','2023-07-25 12:42:13',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6217,'4000','41690278132','2023-07-25 12:42:13',NULL,200.00,'','4','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(6218,'1110','41690281404','2023-07-25 13:36:45',NULL,70.00,'','4','1','Inventory sold','1','','sales','60','','No',NULL,NULL,''),(6219,'5500','41690281404','2023-07-25 13:36:44',70.00,NULL,'','4','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6220,'1000','41690281404','2023-07-25 13:36:45',100.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6221,'4000','41690281404','2023-07-25 13:36:45',NULL,100.00,'','4','1','Good sold','1','','sales','60','','No',NULL,NULL,''),(6222,'1000','41690283192','2023-07-25 14:38:17',880.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6223,'4000','41690283192','2023-07-25 14:38:17',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(6224,'4000','41690283192','2023-07-25 14:06:32',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(6225,'4000','41690283192','2023-07-25 14:06:35',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(6226,'4000','41690283192','2023-07-25 14:06:46',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(6227,'1000','41690290987','2023-07-25 16:16:28',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6229,'1000','41690294258','2023-07-25 17:11:00',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6230,'4000','41690294258','2023-07-25 17:11:00',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6231,'1000','41690290987','2023-07-25 16:16:28',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6232,'4000','41690290987','2023-07-25 16:16:28',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(6233,'4000','41690290987','2023-07-25 16:16:27',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(6234,'1000','41690298080','2023-07-25 18:14:41',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6235,'4000','41690298080','2023-07-25 18:14:41',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(6236,'1000','41690299242','2023-07-25 18:34:04',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6237,'4000','41690299242','2023-07-25 18:34:04',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6238,'1000','41690304394','2023-07-25 19:59:55',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6239,'4000','41690304394','2023-07-25 19:59:55',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6240,'1000','41690309294','2023-07-25 21:21:36',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6241,'4000','41690309294','2023-07-25 21:21:36',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(6242,'1000','41690309327','2023-07-25 21:22:08',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6243,'4000','41690309327','2023-07-25 21:22:08',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(6244,'1000','41690309343','2023-07-25 21:22:24',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6245,'4000','41690309343','2023-07-25 21:22:24',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(6246,'1000','41690309586','2023-07-25 21:26:27',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6247,'4000','41690309586','2023-07-25 21:26:27',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6248,'1000','41690311224','2023-07-25 21:53:45',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6249,'4000','41690311224','2023-07-25 21:53:45',NULL,250.00,'','4','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(6250,'1000','41690351850','2023-07-26 09:10:51',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6251,'4000','41690351850','2023-07-26 09:10:51',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6252,'1000','41690365340','2023-07-26 12:55:42',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6253,'4000','41690365340','2023-07-26 12:55:42',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6254,'1000','41690371669','2023-07-26 14:41:10',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6255,'4000','41690371669','2023-07-26 14:41:10',NULL,200.00,'','4','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(6256,'1000','41690375757','2023-07-26 15:49:18',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6257,'4000','41690375757','2023-07-26 15:49:18',NULL,200.00,'','4','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(6258,'1000','41690384491','2023-07-26 18:14:52',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6259,'4000','41690384491','2023-07-26 18:14:52',NULL,200.00,'','4','1','Good sold','1','','sales','19','','No',NULL,NULL,''),(6260,'1000','41690388161','2023-07-26 19:16:05',560.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6261,'4000','41690388161','2023-07-26 19:16:05',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(6262,'4000','41690388161','2023-07-26 19:16:01',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(6263,'1000','41690389303','2023-07-26 19:35:04',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6264,'4000','41690389303','2023-07-26 19:35:04',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6265,'1000','41690389328','2023-07-26 19:35:29',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6266,'4000','41690389328','2023-07-26 19:35:29',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6267,'1000','41690389553','2023-07-26 19:39:15',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6268,'4000','41690389553','2023-07-26 19:39:15',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6269,'1000','41690389573','2023-07-26 19:39:34',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6270,'4000','41690389573','2023-07-26 19:39:34',NULL,250.00,'','4','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(6271,'1000','41690389584','2023-07-26 19:39:45',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6272,'4000','41690389584','2023-07-26 19:39:45',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(6273,'1000','41690438894','2023-07-27 09:21:35',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6274,'4000','41690438894','2023-07-27 09:21:35',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(6275,'1000','41690483394','2023-07-27 21:43:15',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6276,'4000','41690483394','2023-07-27 21:43:15',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6277,'1000','41690483440','2023-07-27 21:44:01',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6278,'4000','41690483440','2023-07-27 21:44:01',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(6279,'1000','41690483456','2023-07-27 21:44:17',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6280,'4000','41690483456','2023-07-27 21:44:17',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(6281,'1000','41690527631','2023-07-28 10:00:33',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6282,'4000','41690527631','2023-07-28 10:00:33',NULL,250.00,'','4','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(6283,'1000','41690535576','2023-07-28 12:35:06',1160.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6284,'4000','41690535576','2023-07-28 12:35:06',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(6285,'4000','41690535576','2023-07-28 12:12:56',NULL,200.00,'','4','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(6286,'4000','41690535576','2023-07-28 12:13:03',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(6287,'4000','41690535576','2023-07-28 12:13:06',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(6288,'4000','41690535576','2023-07-28 12:34:50',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(6289,'1000','41690537043','2023-07-28 12:37:24',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6290,'4000','41690537043','2023-07-28 12:37:24',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(6291,'1000','41690542641','2023-07-28 14:10:42',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6292,'4000','41690542641','2023-07-28 14:10:42',NULL,350.00,'','4','1','Good sold','1','','sales','54','','No',NULL,NULL,''),(6293,'1000','41690544082','2023-07-28 14:34:43',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6294,'4000','41690544082','2023-07-28 14:34:43',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(6295,'1000','41690549163','2023-07-28 15:59:24',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6296,'4000','41690549163','2023-07-28 15:59:24',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(6297,'1000','41690552013','2023-07-28 16:46:54',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6298,'4000','41690552013','2023-07-28 16:46:54',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(6299,'1000','41690554137','2023-07-28 17:22:19',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6300,'4000','41690554137','2023-07-28 17:22:19',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6301,'1000','41690556087','2023-07-28 17:54:49',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6302,'4000','41690556087','2023-07-28 17:54:49',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(6303,'1000','41690556510','2023-07-28 18:01:51',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6304,'4000','41690556510','2023-07-28 18:01:51',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6305,'1000','41690557808','2023-07-28 18:23:29',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6306,'4000','41690557808','2023-07-28 18:23:29',NULL,250.00,'','4','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(6307,'1000','41690559588','2023-07-28 18:53:09',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6308,'4000','41690559588','2023-07-28 18:53:09',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(6309,'1000','41690559677','2023-07-28 18:54:38',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6310,'4000','41690559677','2023-07-28 18:54:38',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(6311,'1000','41690568527','2023-07-28 21:22:08',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6312,'4000','41690568527','2023-07-28 21:22:08',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6313,'1000','41690568552','2023-07-28 21:22:33',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6314,'4000','41690568552','2023-07-28 21:22:33',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(6315,'1000','41690570114','2023-07-28 21:48:35',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6316,'4000','41690570114','2023-07-28 21:48:35',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6317,'1000','41690616717','2023-07-29 10:45:23',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6318,'4000','41690616717','2023-07-29 10:45:23',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(6319,'1000','41690626479','2023-07-29 13:28:00',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6320,'4000','41690626479','2023-07-29 13:28:00',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6321,'1000','41690626519','2023-07-29 13:28:40',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6322,'4000','41690626519','2023-07-29 13:28:40',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(6323,'1000','41690627532','2023-07-29 13:45:33',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6324,'4000','41690627532','2023-07-29 13:45:33',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6325,'1000','41690629625','2023-07-29 14:20:26',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6326,'4000','41690629625','2023-07-29 14:20:26',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6327,'1000','41690631979','2023-07-29 14:59:40',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6328,'4000','41690631979','2023-07-29 14:59:40',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6329,'1000','41690637942','2023-07-29 16:39:03',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6330,'4000','41690637942','2023-07-29 16:39:03',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6331,'1000','41690637978','2023-07-29 16:39:39',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6332,'4000','41690637978','2023-07-29 16:39:39',NULL,200.00,'','4','1','Good sold','1','','sales','15','','No',NULL,NULL,''),(6333,'1000','41690638299','2023-07-29 16:45:00',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6334,'4000','41690638299','2023-07-29 16:45:00',NULL,200.00,'','4','1','Good sold','1','','sales','19','','No',NULL,NULL,''),(6335,'1000','41690639039','2023-07-29 16:57:25',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6336,'4000','41690639039','2023-07-29 16:57:25',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6337,'4000','41690639039','2023-07-29 16:57:19',NULL,150.00,'','4','1','Good sold','1','','sales','64','','No',NULL,NULL,''),(6338,'1000','41690640030','2023-07-29 17:13:54',500.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6339,'4000','41690640030','2023-07-29 17:13:54',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(6340,'4000','41690640030','2023-07-29 17:13:50',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(6341,'1000','41690640701','2023-07-29 17:25:02',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6342,'4000','41690640701','2023-07-29 17:25:02',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6343,'1000','41690642375','2023-07-29 17:52:57',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6344,'4000','41690642375','2023-07-29 17:52:57',NULL,200.00,'','4','1','Good sold','1','','sales','15','','No',NULL,NULL,''),(6345,'1000','41690653929','2023-07-29 21:05:30',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6346,'4000','41690653929','2023-07-29 21:05:30',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6347,'1000','41690656441','2023-07-29 21:47:23',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6348,'4000','41690656441','2023-07-29 21:47:23',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6349,'1000','41690657071','2023-07-29 21:58:00',710.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6350,'4000','41690657071','2023-07-29 21:58:00',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(6351,'4000','41690657071','2023-07-29 21:57:51',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(6352,'4000','41690657071','2023-07-29 21:57:53',NULL,150.00,'','4','1','Good sold','1','','sales','61','','No',NULL,NULL,''),(6353,'1000','41690657416','2023-07-29 22:03:46',710.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6354,'4000','41690657416','2023-07-29 22:03:46',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(6355,'4000','41690657416','2023-07-29 22:03:36',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(6356,'4000','41690657416','2023-07-29 22:03:40',NULL,150.00,'','4','1','Good sold','1','','sales','64','','No',NULL,NULL,''),(6357,'1110','41690698705','2023-07-30 09:32:38',NULL,0.00,'','4','1','Inventory sold','1','','sales','5','','No',NULL,NULL,''),(6358,'1110','41690698705','2023-07-30 09:31:45',NULL,0.00,'','4','1','Inventory sold','1','','sales','5','','No',NULL,NULL,''),(6359,'1110','41690698705','2023-07-30 09:31:49',NULL,0.00,'','4','1','Inventory sold','1','','sales','11','','No',NULL,NULL,''),(6360,'1110','41690698705','2023-07-30 09:31:51',NULL,0.00,'','4','1','Inventory sold','1','','sales','11','','No',NULL,NULL,''),(6361,'1110','41690698705','2023-07-30 09:31:53',NULL,0.00,'','4','1','Inventory sold','1','','sales','7','','No',NULL,NULL,''),(6362,'1110','41690698705','2023-07-30 09:32:25',NULL,150.00,'','4','1','Inventory sold','1','','sales','55','','No',NULL,NULL,''),(6363,'5500','41690698705','2023-07-30 09:32:37',150.00,NULL,'','4','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6364,'1000','41690698705','2023-07-30 09:32:38',1560.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6365,'4000','41690698705','2023-07-30 09:32:38',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(6366,'4000','41690698705','2023-07-30 09:31:45',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(6367,'4000','41690698705','2023-07-30 09:31:49',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(6368,'4000','41690698705','2023-07-30 09:31:51',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(6369,'4000','41690698705','2023-07-30 09:31:53',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(6370,'4000','41690698705','2023-07-30 09:32:25',NULL,200.00,'','4','1','Good sold','1','','sales','55','','No',NULL,NULL,''),(6371,'1000','41690700707','2023-07-30 10:05:12',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6372,'4000','41690700707','2023-07-30 10:05:12',NULL,200.00,'','4','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(6373,'4000','41690700707','2023-07-30 10:05:07',NULL,200.00,'','4','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(6374,'1000','41690702355','2023-07-30 10:32:36',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6375,'4000','41690702355','2023-07-30 10:32:36',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(6376,'1000','41690728332','2023-07-30 17:45:33',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6377,'4000','41690728332','2023-07-30 17:45:33',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(6378,'1110','41690728548','2023-07-30 17:49:12',NULL,150.00,'','4','1','Inventory sold','1','','sales','55','','No',NULL,NULL,''),(6379,'1110','41690728548','2023-07-30 17:49:08',NULL,150.00,'','4','1','Inventory sold','1','','sales','55','','No',NULL,NULL,''),(6380,'5500','41690728548','2023-07-30 17:49:11',300.00,NULL,'','4','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6381,'1000','41690728548','2023-07-30 17:49:12',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6382,'4000','41690728548','2023-07-30 17:49:12',NULL,200.00,'','4','1','Good sold','1','','sales','55','','No',NULL,NULL,''),(6383,'4000','41690728548','2023-07-30 17:49:08',NULL,200.00,'','4','1','Good sold','1','','sales','55','','No',NULL,NULL,''),(6384,'1000','41690729409','2023-07-30 18:04:53',700.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6385,'4000','41690729409','2023-07-30 18:04:53',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(6386,'4000','41690729409','2023-07-30 18:03:29',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(6387,'4000','41690729409','2023-07-30 18:03:32',NULL,200.00,'','4','1','Good sold','1','','sales','9','','No',NULL,NULL,''),(6388,'4000','41690729409','2023-07-30 18:04:09',NULL,100.00,'','4','1','Good sold','1','','sales','24','','No',NULL,NULL,''),(6389,'1000','41690730239','2023-07-30 18:17:20',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6390,'4000','41690730239','2023-07-30 18:17:20',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(6391,'1000','41690731457','2023-07-30 18:37:38',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6392,'4000','41690731457','2023-07-30 18:37:38',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6393,'1000','41690733837','2023-07-30 19:17:18',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6394,'4000','41690733837','2023-07-30 19:17:18',NULL,250.00,'','4','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(6395,'1000','41690735430','2023-07-30 19:43:51',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6396,'4000','41690735430','2023-07-30 19:43:51',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(6397,'1000','41690740615','2023-07-30 21:10:16',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6398,'4000','41690740615','2023-07-30 21:10:16',NULL,200.00,'','4','1','Good sold','1','','sales','31','','No',NULL,NULL,''),(6399,'1000','41690743178','2023-07-30 21:53:00',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6400,'4000','41690743178','2023-07-30 21:53:00',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6401,'1000','41690743518','2023-07-30 21:58:45',580.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6402,'4000','41690743518','2023-07-30 21:58:45',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(6403,'4000','41690743518','2023-07-30 21:58:38',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(6404,'1000','41690744053','2023-07-30 22:07:34',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6405,'4000','41690744053','2023-07-30 22:07:34',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6406,'1000','41690797528','2023-07-31 12:58:49',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6407,'4000','41690797528','2023-07-31 12:58:49',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(6408,'1000','41690799237','2023-07-31 13:27:18',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6409,'4000','41690799237','2023-07-31 13:27:18',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6410,'1110','41690808390','2023-07-31 16:00:01',NULL,0.00,'','4','1','Inventory sold','1','','sales','21','','No',NULL,NULL,''),(6411,'1110','41690808390','2023-07-31 15:59:50',NULL,150.00,'','4','1','Inventory sold','1','','sales','53','','No',NULL,NULL,''),(6412,'5500','41690808390','2023-07-31 16:00:00',150.00,NULL,'','4','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6413,'1000','41690808390','2023-07-31 16:00:01',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6414,'4000','41690808390','2023-07-31 16:00:01',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6415,'4000','41690808390','2023-07-31 15:59:50',NULL,200.00,'','4','1','Good sold','1','','sales','53','','No',NULL,NULL,''),(6416,'1000','41690808630','2023-07-31 16:03:51',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6417,'4000','41690808630','2023-07-31 16:03:51',NULL,200.00,'','4','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(6418,'1000','41690809721','2023-07-31 16:22:03',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6419,'4000','41690809721','2023-07-31 16:22:03',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(6420,'1000','41690815115','2023-07-31 17:51:59',700.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6421,'4000','41690815115','2023-07-31 17:51:59',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6422,'4000','41690815115','2023-07-31 17:51:55',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6423,'1000','41690815416','2023-07-31 17:56:58',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6424,'4000','41690815416','2023-07-31 17:56:58',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6425,'1000','41690816908','2023-07-31 18:21:50',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6426,'4000','41690816908','2023-07-31 18:21:50',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6427,'1000','41690817369','2023-07-31 18:29:30',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6428,'4000','41690817369','2023-07-31 18:29:30',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(6429,'1000','41690818933','2023-07-31 18:55:54',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6430,'4000','41690818933','2023-07-31 18:55:54',NULL,300.00,'','4','1','Good sold','1','','sales','29','','No',NULL,NULL,''),(6431,'4000','41690818933','2023-07-31 18:55:33',NULL,100.00,'','4','1','Good sold','1','','sales','24','','No',NULL,NULL,''),(6432,'1000','41690821244','2023-07-31 19:34:05',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6433,'4000','41690821244','2023-07-31 19:34:05',NULL,200.00,'','4','1','Good sold','1','','sales','15','','No',NULL,NULL,''),(6434,'1000','41690822945','2023-07-31 20:02:27',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6435,'4000','41690822945','2023-07-31 20:02:27',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6436,'1000','41690824220','2023-07-31 20:23:41',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6437,'4000','41690824220','2023-07-31 20:23:41',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6438,'1000','41690824349','2023-07-31 20:25:50',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6439,'4000','41690824349','2023-07-31 20:25:50',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6440,'1000','41690826824','2023-07-31 21:07:05',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6441,'4000','41690826824','2023-07-31 21:07:05',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6442,'1000','41690827284','2023-07-31 21:14:45',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6443,'4000','41690827284','2023-07-31 21:14:45',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(6444,'1000','41690890242','2023-08-01 14:44:03',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6445,'4000','41690890242','2023-08-01 14:44:03',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6446,'1000','41690890251','2023-08-01 14:44:12',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6447,'4000','41690890251','2023-08-01 14:44:12',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6448,'1000','41690892455','2023-08-01 15:20:56',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6449,'4000','41690892455','2023-08-01 15:20:56',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(6450,'1000','41690901014','2023-08-01 17:43:35',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6451,'4000','41690901014','2023-08-01 17:43:35',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(6452,'1000','41690902740','2023-08-01 18:12:21',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6454,'1000','41690902740','2023-08-01 18:12:21',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6455,'4000','41690902740','2023-08-01 18:12:21',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(6456,'1000','41690908521','2023-08-01 19:48:48',650.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6457,'4000','41690908521','2023-08-01 19:48:48',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6458,'4000','41690908521','2023-08-01 19:48:41',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(6459,'1000','41690910472','2023-08-01 20:21:13',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6460,'4000','41690910472','2023-08-01 20:21:13',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(6461,'1000','41690914699','2023-08-01 21:31:40',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6462,'4000','41690914699','2023-08-01 21:31:40',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6463,'1000','41690915130','2023-08-01 21:38:55',560.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6464,'4000','41690915130','2023-08-01 21:38:55',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(6465,'4000','41690915130','2023-08-01 21:38:50',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(6466,'1000','41690958807','2023-08-02 09:46:48',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6467,'4000','41690958807','2023-08-02 09:46:48',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(6468,'1000','41690964352','2023-08-02 11:19:21',380.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6469,'4000','41690964352','2023-08-02 11:19:21',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(6470,'4000','41690964352','2023-08-02 11:19:12',NULL,100.00,'','4','1','Good sold','1','','sales','24','','No',NULL,NULL,''),(6471,'1000','41690969612','2023-08-02 12:47:02',500.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6472,'4000','41690969612','2023-08-02 12:47:02',NULL,300.00,'','4','1','Good sold','1','','sales','29','','No',NULL,NULL,''),(6473,'4000','41690969612','2023-08-02 12:46:52',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(6474,'1000','41690985430','2023-08-02 17:10:31',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6475,'4000','41690985430','2023-08-02 17:10:31',NULL,350.00,'','4','1','Good sold','1','','sales','54','','No',NULL,NULL,''),(6476,'1000','41690985539','2023-08-02 17:12:20',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6477,'4000','41690985539','2023-08-02 17:12:20',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6478,'1000','41690986416','2023-08-02 17:26:57',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6479,'4000','41690986416','2023-08-02 17:26:57',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(6480,'1000','41690986658','2023-08-02 17:30:59',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6481,'4000','41690986658','2023-08-02 17:30:59',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(6482,'1000','41690986669','2023-08-02 17:31:10',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6483,'4000','41690986669','2023-08-02 17:31:10',NULL,200.00,'','4','1','Good sold','1','','sales','15','','No',NULL,NULL,''),(6484,'1000','41690992520','2023-08-02 19:08:41',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6485,'4000','41690992520','2023-08-02 19:08:41',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(6486,'1000','41690992541','2023-08-02 19:09:02',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6487,'4000','41690992541','2023-08-02 19:09:02',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6488,'1000','41690993724','2023-08-02 19:28:51',550.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6491,'1000','41690994184','2023-08-02 19:36:26',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6492,'4000','41690994184','2023-08-02 19:36:26',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(6493,'1000','41690996529','2023-08-02 20:15:30',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6494,'4000','41690996529','2023-08-02 20:15:30',NULL,200.00,'','4','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(6495,'1000','41690993724','2023-08-02 19:28:51',900.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6496,'4000','41690993724','2023-08-02 19:28:51',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(6497,'4000','41690993724','2023-08-02 19:28:44',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6498,'4000','41690993724','2023-08-02 19:28:50',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6499,'1000','41691002041','2023-08-02 21:47:22',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6500,'4000','41691002041','2023-08-02 21:47:22',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6501,'1000','41691002066','2023-08-02 21:47:47',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6502,'4000','41691002066','2023-08-02 21:47:47',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(6503,'1000','41691003708','2023-08-02 22:15:09',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6504,'4000','41691003708','2023-08-02 22:15:09',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6505,'1000','41691008420','2023-08-02 23:33:41',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6506,'4000','41691008420','2023-08-02 23:33:41',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(6507,'1000','41691008445','2023-08-02 23:34:06',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6508,'4000','41691008445','2023-08-02 23:34:06',NULL,250.00,'','4','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(6509,'1000','41691064576','2023-08-03 15:09:38',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6510,'4000','41691064576','2023-08-03 15:09:38',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6511,'1000','41691064585','2023-08-03 15:09:47',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6513,'1000','41691064585','2023-08-03 15:09:47',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6514,'4000','41691064585','2023-08-03 15:09:47',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(6515,'4000','41691064585','2023-08-03 15:09:45',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6516,'1000','41691065722','2023-08-03 15:28:49',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6517,'4000','41691065722','2023-08-03 15:28:49',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(6518,'1000','41691066384','2023-08-03 15:39:45',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6519,'4000','41691066384','2023-08-03 15:39:45',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(6520,'1000','41691066427','2023-08-03 15:40:28',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6521,'4000','41691066427','2023-08-03 15:40:28',NULL,200.00,'','4','1','Good sold','1','','sales','16','','No',NULL,NULL,''),(6522,'1000','41691072517','2023-08-03 17:21:58',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6523,'4000','41691072517','2023-08-03 17:21:58',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(6524,'1000','41691072526','2023-08-03 17:22:07',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6525,'4000','41691072526','2023-08-03 17:22:07',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(6526,'1000','41691074360','2023-08-03 17:52:51',910.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6527,'4000','41691074360','2023-08-03 17:52:51',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6528,'4000','41691074360','2023-08-03 17:52:40',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(6529,'4000','41691074360','2023-08-03 17:52:47',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(6530,'1000','41691074387','2023-08-03 17:53:11',560.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6531,'4000','41691074387','2023-08-03 17:53:11',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(6532,'4000','41691074387','2023-08-03 17:53:07',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(6533,'1000','41691074403','2023-08-03 17:53:27',700.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6534,'4000','41691074403','2023-08-03 17:53:27',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6535,'4000','41691074403','2023-08-03 17:53:23',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6536,'1000','41691074441','2023-08-03 17:54:02',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6537,'4000','41691074441','2023-08-03 17:54:02',NULL,200.00,'','4','1','Good sold','1','','sales','16','','No',NULL,NULL,''),(6538,'1000','41691075770','2023-08-03 18:16:12',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6539,'4000','41691075770','2023-08-03 18:16:12',NULL,200.00,'','4','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(6540,'1000','41691075975','2023-08-03 18:19:36',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6541,'4000','41691075975','2023-08-03 18:19:36',NULL,250.00,'','4','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(6542,'1000','41691076795','2023-08-03 18:33:16',30.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6543,'4000','41691076795','2023-08-03 18:33:16',NULL,30.00,'','4','1','Good sold','1','','sales','58','','No',NULL,NULL,''),(6544,'1000','41691083402','2023-08-03 20:23:23',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6545,'4000','41691083402','2023-08-03 20:23:23',NULL,200.00,'','4','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(6546,'1000','41691084295','2023-08-03 20:38:21',480.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6547,'4000','41691084295','2023-08-03 20:38:21',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(6548,'4000','41691084295','2023-08-03 20:38:15',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(6549,'1000','41691091313','2023-08-03 22:35:14',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6550,'4000','41691091313','2023-08-03 22:35:14',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6551,'1000','41691092715','2023-08-03 22:58:36',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6552,'4000','41691092715','2023-08-03 22:58:36',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(6553,'1000','41691134855','2023-08-04 10:40:57',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6554,'4000','41691134855','2023-08-04 10:40:57',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(6555,'1000','41691134870','2023-08-04 10:41:12',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6556,'4000','41691134870','2023-08-04 10:41:12',NULL,250.00,'','4','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(6557,'1000','41691137409','2023-08-04 11:23:41',760.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6558,'4000','41691137409','2023-08-04 11:23:41',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(6559,'4000','41691137409','2023-08-04 11:23:29',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(6560,'4000','41691137409','2023-08-04 11:23:32',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(6561,'1000','41691154027','2023-08-04 16:00:28',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6562,'4000','41691154027','2023-08-04 16:00:28',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6563,'1000','41691154041','2023-08-04 16:00:45',700.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6564,'4000','41691154041','2023-08-04 16:00:45',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6565,'4000','41691154041','2023-08-04 16:00:41',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6566,'1000','41691154054','2023-08-04 16:00:56',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6567,'4000','41691154054','2023-08-04 16:00:56',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(6568,'1000','41691157971','2023-08-04 17:06:12',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6569,'4000','41691157971','2023-08-04 17:06:12',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6570,'1110','41691158234','2023-08-04 17:10:39',NULL,0.00,'','4','1','Inventory sold','1','','sales','16','','No',NULL,NULL,''),(6571,'1110','41691158234','2023-08-04 17:10:34',NULL,200.00,'','4','1','Inventory sold','1','','sales','62','','No',NULL,NULL,''),(6572,'5500','41691158234','2023-08-04 17:10:38',200.00,NULL,'','4','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6573,'1000','41691158234','2023-08-04 17:10:39',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6574,'4000','41691158234','2023-08-04 17:10:39',NULL,200.00,'','4','1','Good sold','1','','sales','16','','No',NULL,NULL,''),(6575,'4000','41691158234','2023-08-04 17:10:34',NULL,200.00,'','4','1','Good sold','1','','sales','62','','No',NULL,NULL,''),(6576,'1000','41691158302','2023-08-04 17:11:43',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6577,'4000','41691158302','2023-08-04 17:11:43',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(6578,'1000','61691159557','2023-08-04 17:32:46',450.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6579,'4000','61691159557','2023-08-04 17:32:46',NULL,250.00,'','6','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(6580,'4000','61691159557','2023-08-04 17:32:37',NULL,200.00,'','6','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(6581,'1000','61691162082','2023-08-04 18:14:57',1000.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6582,'4000','61691162082','2023-08-04 18:14:57',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6583,'4000','61691162082','2023-08-04 18:14:42',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6584,'4000','61691162082','2023-08-04 18:14:45',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6585,'4000','61691162082','2023-08-04 18:14:48',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6586,'4000','61691162082','2023-08-04 18:14:50',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6587,'1110','61691164144','2023-08-04 18:49:05',NULL,70.00,'','6','1','Inventory sold','1','','sales','60','','No',NULL,NULL,''),(6588,'5500','61691164144','2023-08-04 18:49:04',70.00,NULL,'','6','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6589,'1000','61691164144','2023-08-04 18:49:05',100.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6590,'4000','61691164144','2023-08-04 18:49:05',NULL,100.00,'','6','1','Good sold','1','','sales','60','','No',NULL,NULL,''),(6591,'1000','41691164623','2023-08-04 18:57:04',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6592,'4000','41691164623','2023-08-04 18:57:04',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6593,'1000','61691165050','2023-08-04 19:04:11',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6594,'4000','61691165050','2023-08-04 19:04:11',NULL,200.00,'','6','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(6595,'1000','61691167962','2023-08-04 19:52:43',280.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6596,'4000','61691167962','2023-08-04 19:52:43',NULL,280.00,'','6','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(6597,'1000','61691171001','2023-08-04 20:43:24',700.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6600,'1000','61691171034','2023-08-04 20:43:55',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6601,'4000','61691171034','2023-08-04 20:43:55',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6602,'1000','61691171001','2023-08-04 20:43:24',1050.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6603,'4000','61691171001','2023-08-04 20:43:24',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6604,'4000','61691171001','2023-08-04 20:43:21',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6605,'4000','61691171001','2023-08-04 20:43:23',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6606,'1000','41691225972','2023-08-05 11:59:34',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6607,'4000','41691225972','2023-08-05 11:59:34',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(6608,'1000','41691230407','2023-08-05 13:13:28',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6609,'4000','41691230407','2023-08-05 13:13:28',NULL,150.00,'','4','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(6610,'1000','41691231043','2023-08-05 13:24:04',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6611,'4000','41691231043','2023-08-05 13:24:04',NULL,200.00,'','4','1','Good sold','1','','sales','63','','No',NULL,NULL,''),(6612,'1000','41691235052','2023-08-05 14:30:53',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6613,'4000','41691235052','2023-08-05 14:30:53',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(6614,'1000','61691249904','2023-08-05 18:38:25',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6615,'4000','61691249904','2023-08-05 18:38:25',NULL,200.00,'','6','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(6616,'1000','61691251064','2023-08-05 18:57:46',250.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6617,'4000','61691251064','2023-08-05 18:57:46',NULL,250.00,'','6','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(6618,'1000','61691253038','2023-08-05 19:30:39',250.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6619,'4000','61691253038','2023-08-05 19:30:39',NULL,250.00,'','6','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(6620,'1000','61691253052','2023-08-05 19:30:53',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6621,'4000','61691253052','2023-08-05 19:30:53',NULL,200.00,'','6','1','Good sold','1','','sales','15','','No',NULL,NULL,''),(6622,'1000','61691253125','2023-08-05 19:32:06',280.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6623,'4000','61691253125','2023-08-05 19:32:06',NULL,280.00,'','6','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(6624,'1000','61691253153','2023-08-05 19:32:34',350.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6625,'4000','61691253153','2023-08-05 19:32:34',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6626,'1000','61691255362','2023-08-05 20:09:25',400.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6627,'4000','61691255362','2023-08-05 20:09:25',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6628,'4000','61691255362','2023-08-05 20:09:22',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6629,'1000','61691255414','2023-08-05 20:10:15',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6630,'4000','61691255414','2023-08-05 20:10:15',NULL,200.00,'','6','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(6631,'1000','61691257593','2023-08-05 20:46:34',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6632,'4000','61691257593','2023-08-05 20:46:34',NULL,200.00,'','6','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(6633,'1000','61691304599','2023-08-06 09:50:01',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6634,'4000','61691304599','2023-08-06 09:50:01',NULL,200.00,'','6','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(6635,'1000','61691309515','2023-08-06 11:11:56',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6636,'4000','61691309515','2023-08-06 11:11:56',NULL,200.00,'','6','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(6637,'1000','61691318522','2023-08-06 13:42:03',250.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6638,'4000','61691318522','2023-08-06 13:42:03',NULL,250.00,'','6','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(6639,'1000','61691323186','2023-08-06 15:00:12',700.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6640,'4000','61691323186','2023-08-06 15:00:12',NULL,250.00,'','6','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(6641,'4000','61691323186','2023-08-06 14:59:46',NULL,100.00,'','6','1','Good sold','1','','sales','24','','No',NULL,NULL,''),(6642,'4000','61691323186','2023-08-06 15:00:04',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6643,'1000','61691326212','2023-08-06 15:50:13',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6644,'4000','61691326212','2023-08-06 15:50:13',NULL,200.00,'','6','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(6645,'1110','61691326863','2023-08-06 16:01:50',NULL,0.00,'','6','1','Inventory sold','1','','sales','42','','No',NULL,NULL,''),(6646,'1110','61691326863','2023-08-06 16:01:03',NULL,150.00,'','6','1','Inventory sold','1','','sales','55','','No',NULL,NULL,''),(6647,'5500','61691326863','2023-08-06 16:01:49',150.00,NULL,'','6','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6648,'1000','61691326863','2023-08-06 16:01:50',800.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6649,'4000','61691326863','2023-08-06 16:01:50',NULL,600.00,'','6','1','Good sold','1','','sales','42','','No',NULL,NULL,''),(6650,'4000','61691326863','2023-08-06 16:01:03',NULL,200.00,'','6','1','Good sold','1','','sales','55','','No',NULL,NULL,''),(6651,'1000','61691327477','2023-08-06 16:11:18',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6652,'4000','61691327477','2023-08-06 16:11:18',NULL,200.00,'','6','1','Good sold','1','','sales','15','','No',NULL,NULL,''),(6653,'1000','61691332971','2023-08-06 17:42:52',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6654,'4000','61691332971','2023-08-06 17:42:52',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6655,'1000','61691336620','2023-08-06 18:43:46',480.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6656,'4000','61691336620','2023-08-06 18:43:46',NULL,280.00,'','6','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(6657,'4000','61691336620','2023-08-06 18:43:40',NULL,200.00,'','6','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(6658,'1000','61691343946','2023-08-06 20:45:47',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6659,'4000','61691343946','2023-08-06 20:45:47',NULL,200.00,'','6','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(6660,'1000','61691343964','2023-08-06 20:46:05',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6661,'4000','61691343964','2023-08-06 20:46:05',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6662,'1000','61691344474','2023-08-06 20:54:35',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6663,'4000','61691344474','2023-08-06 20:54:35',NULL,200.00,'','6','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(6664,'1000','61691346646','2023-08-06 21:30:47',250.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6665,'4000','61691346646','2023-08-06 21:30:47',NULL,250.00,'','6','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(6666,'1000','61691346676','2023-08-06 21:31:17',280.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6667,'4000','61691346676','2023-08-06 21:31:17',NULL,280.00,'','6','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(6668,'1000','61691346696','2023-08-06 21:31:37',250.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6669,'4000','61691346696','2023-08-06 21:31:37',NULL,250.00,'','6','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(6670,'1000','61691351476','2023-08-06 22:51:18',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6671,'4000','61691351476','2023-08-06 22:51:18',NULL,200.00,'','6','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(6672,'1000','61691351950','2023-08-06 22:59:11',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6673,'4000','61691351950','2023-08-06 22:59:11',NULL,200.00,'','6','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(6674,'1000','61691390484','2023-08-07 09:41:26',280.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6675,'4000','61691390484','2023-08-07 09:41:26',NULL,280.00,'','6','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(6676,'1000','61691391491','2023-08-07 09:58:12',280.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6677,'4000','61691391491','2023-08-07 09:58:12',NULL,280.00,'','6','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(6678,'1000','61691396637','2023-08-07 11:23:58',250.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6679,'4000','61691396637','2023-08-07 11:23:58',NULL,250.00,'','6','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(6680,'1000','61691396656','2023-08-07 11:24:17',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6681,'4000','61691396656','2023-08-07 11:24:17',NULL,200.00,'','6','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(6682,'1000','61691401137','2023-08-07 12:38:58',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6683,'4000','61691401137','2023-08-07 12:38:58',NULL,200.00,'','6','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(6684,'1000','61691401206','2023-08-07 12:40:40',1280.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6685,'4000','61691401206','2023-08-07 12:40:40',NULL,280.00,'','6','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(6686,'4000','61691401206','2023-08-07 12:40:06',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6687,'4000','61691401206','2023-08-07 12:40:15',NULL,200.00,'','6','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(6688,'4000','61691401206','2023-08-07 12:40:29',NULL,200.00,'','6','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(6689,'4000','61691401206','2023-08-07 12:40:32',NULL,200.00,'','6','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(6690,'4000','61691401206','2023-08-07 12:40:36',NULL,200.00,'','6','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(6691,'1000','41691420453','2023-08-07 18:00:57',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6692,'4000','41691420453','2023-08-07 18:00:57',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(6693,'4000','41691420453','2023-08-07 18:00:53',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(6694,'1000','61691420626','2023-08-07 18:03:47',350.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6695,'4000','61691420626','2023-08-07 18:03:47',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6696,'1000','41691422826','2023-08-07 18:40:27',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6697,'4000','41691422826','2023-08-07 18:40:27',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(6698,'1000','41691424538','2023-08-07 19:09:00',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6699,'4000','41691424538','2023-08-07 19:09:00',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(6700,'1000','41691424565','2023-08-07 19:09:26',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6701,'4000','41691424565','2023-08-07 19:09:26',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6702,'1000','41691427703','2023-08-07 20:01:44',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6703,'4000','41691427703','2023-08-07 20:01:44',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6704,'1000','41691428700','2023-08-07 20:18:21',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6705,'4000','41691428700','2023-08-07 20:18:21',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6706,'1000','41691432470','2023-08-07 21:21:11',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6707,'4000','41691432470','2023-08-07 21:21:11',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6708,'1000','41691433259','2023-08-07 21:34:20',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6709,'4000','41691433259','2023-08-07 21:34:20',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6710,'1000','41691433274','2023-08-07 21:34:35',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6711,'4000','41691433274','2023-08-07 21:34:35',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(6712,'1000','41691434400','2023-08-07 21:53:21',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6713,'4000','41691434400','2023-08-07 21:53:21',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6714,'1000','61691476059','2023-08-08 09:28:10',1280.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6721,'1000','61691476059','2023-08-08 09:28:10',1480.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6722,'4000','61691476059','2023-08-08 09:28:10',NULL,280.00,'','6','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(6723,'4000','61691476059','2023-08-08 09:27:39',NULL,200.00,'','6','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(6724,'4000','61691476059','2023-08-08 09:27:49',NULL,200.00,'','6','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(6725,'4000','61691476059','2023-08-08 09:27:52',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6726,'4000','61691476059','2023-08-08 09:28:01',NULL,200.00,'','6','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(6727,'4000','61691476059','2023-08-08 09:28:03',NULL,200.00,'','6','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(6728,'4000','61691476059','2023-08-08 09:28:09',NULL,200.00,'','6','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(6729,'1000','61691490524','2023-08-08 13:28:45',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6730,'4000','61691490524','2023-08-08 13:28:45',NULL,200.00,'','6','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(6731,'1000','61691491230','2023-08-08 13:40:31',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6732,'4000','61691491230','2023-08-08 13:40:31',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6733,'1000','41691495324','2023-08-08 14:48:45',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6734,'4000','41691495324','2023-08-08 14:48:45',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6735,'1000','41691501449','2023-08-08 16:30:50',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6736,'4000','41691501449','2023-08-08 16:30:50',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(6737,'1000','41691503477','2023-08-08 17:04:39',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6738,'4000','41691503477','2023-08-08 17:04:39',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(6739,'1000','41691503489','2023-08-08 17:04:50',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6740,'4000','41691503489','2023-08-08 17:04:50',NULL,250.00,'','4','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(6741,'1000','41691509580','2023-08-08 18:46:21',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6742,'4000','41691509580','2023-08-08 18:46:21',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(6743,'1000','41691513012','2023-08-08 19:43:33',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6744,'4000','41691513012','2023-08-08 19:43:33',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(6745,'1000','41691513804','2023-08-08 19:56:52',560.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6746,'4000','41691513804','2023-08-08 19:56:52',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(6747,'4000','41691513804','2023-08-08 19:56:46',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(6748,'1000','41691515649','2023-08-08 20:27:30',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6749,'4000','41691515649','2023-08-08 20:27:30',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(6750,'1000','41691516919','2023-08-08 20:48:41',600.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6751,'4000','41691516919','2023-08-08 20:48:41',NULL,600.00,'','4','1','Good sold','1','','sales','42','','No',NULL,NULL,''),(6752,'1000','41691518822','2023-08-08 21:20:23',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6753,'4000','41691518822','2023-08-08 21:20:23',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6754,'1000','41691518832','2023-08-08 21:20:33',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6755,'4000','41691518832','2023-08-08 21:20:33',NULL,200.00,'','4','1','Good sold','1','','sales','19','','No',NULL,NULL,''),(6756,'1000','41691521713','2023-08-08 22:08:40',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6757,'4000','41691521713','2023-08-08 22:08:40',NULL,200.00,'','4','1','Good sold','1','','sales','16','','No',NULL,NULL,''),(6758,'4000','41691521713','2023-08-08 22:08:33',NULL,200.00,'','4','1','Good sold','1','','sales','63','','No',NULL,NULL,''),(6759,'1000','41691563071','2023-08-09 09:37:52',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6760,'4000','41691563071','2023-08-09 09:37:52',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(6761,'1000','41691564307','2023-08-09 09:58:28',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6762,'4000','41691564307','2023-08-09 09:58:28',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6763,'1000','41691567676','2023-08-09 10:54:47',380.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6764,'4000','41691567676','2023-08-09 10:54:47',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(6765,'4000','41691567676','2023-08-09 10:54:36',NULL,100.00,'','4','1','Good sold','1','','sales','24','','No',NULL,NULL,''),(6766,'1000','41691568480','2023-08-09 11:08:01',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6767,'4000','41691568480','2023-08-09 11:08:01',NULL,150.00,'','4','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(6768,'1000','41691570944','2023-08-09 11:49:05',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6769,'4000','41691570944','2023-08-09 11:49:05',NULL,350.00,'','4','1','Good sold','1','','sales','54','','No',NULL,NULL,''),(6770,'1000','41691587217','2023-08-09 16:20:18',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6771,'4000','41691587217','2023-08-09 16:20:18',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(6772,'1000','41691587988','2023-08-09 16:33:09',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6773,'4000','41691587988','2023-08-09 16:33:09',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(6774,'1000','41691601327','2023-08-09 20:15:28',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6775,'4000','41691601327','2023-08-09 20:15:28',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(6776,'1000','41691649343','2023-08-10 09:35:44',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6777,'4000','41691649343','2023-08-10 09:35:44',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(6778,'1000','41691651555','2023-08-10 10:12:43',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6779,'4000','41691651555','2023-08-10 10:12:43',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6780,'4000','41691651555','2023-08-10 10:12:36',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(6781,'1000','41691653467','2023-08-10 10:44:29',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6782,'4000','41691653467','2023-08-10 10:44:29',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(6783,'1000','41691664289','2023-08-10 13:45:23',760.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6784,'4000','41691664289','2023-08-10 13:45:23',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(6785,'4000','41691664289','2023-08-10 13:44:53',NULL,100.00,'','4','1','Good sold','1','','sales','24','','No',NULL,NULL,''),(6786,'4000','41691664289','2023-08-10 13:45:03',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(6787,'4000','41691664289','2023-08-10 13:45:09',NULL,100.00,'','4','1','Good sold','1','','sales','26','','No',NULL,NULL,''),(6788,'1000','41691670672','2023-08-10 15:31:13',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6789,'4000','41691670672','2023-08-10 15:31:13',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6790,'1000','61691673825','2023-08-10 16:23:46',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6791,'4000','61691673825','2023-08-10 16:23:46',NULL,200.00,'','6','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(6792,'1000','41691674744','2023-08-10 16:39:05',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6793,'4000','41691674744','2023-08-10 16:39:05',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(6794,'1000','41691679289','2023-08-10 17:54:50',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6795,'4000','41691679289','2023-08-10 17:54:50',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(6796,'1000','41691680114','2023-08-10 18:08:44',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6797,'4000','41691680114','2023-08-10 18:08:44',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(6798,'4000','41691680114','2023-08-10 18:08:35',NULL,100.00,'','4','1','Good sold','1','','sales','26','','No',NULL,NULL,''),(6799,'1000','61691683340','2023-08-10 19:02:24',500.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6800,'4000','61691683340','2023-08-10 19:02:24',NULL,250.00,'','6','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(6801,'4000','61691683340','2023-08-10 19:02:20',NULL,250.00,'','6','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(6802,'1000','61691684232','2023-08-10 19:17:13',150.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6803,'4000','61691684232','2023-08-10 19:17:13',NULL,150.00,'','6','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(6804,'1000','61691686117','2023-08-10 19:48:38',350.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6805,'4000','61691686117','2023-08-10 19:48:38',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6806,'1000','61691692465','2023-08-10 21:34:26',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6807,'4000','61691692465','2023-08-10 21:34:26',NULL,200.00,'','6','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(6808,'1000','61691739828','2023-08-11 10:43:49',280.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6809,'4000','61691739828','2023-08-11 10:43:49',NULL,280.00,'','6','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(6810,'1000','61691739840','2023-08-11 10:44:01',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6811,'4000','61691739840','2023-08-11 10:44:01',NULL,200.00,'','6','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(6812,'1000','61691749855','2023-08-11 13:30:57',280.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6813,'4000','61691749855','2023-08-11 13:30:57',NULL,280.00,'','6','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(6814,'1000','61691753057','2023-08-11 14:24:19',150.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6815,'4000','61691753057','2023-08-11 14:24:19',NULL,150.00,'','6','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(6816,'1000','61691756946','2023-08-11 15:29:07',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6817,'4000','61691756946','2023-08-11 15:29:07',NULL,200.00,'','6','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(6818,'1000','41691767034','2023-08-11 18:17:16',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6819,'4000','41691767034','2023-08-11 18:17:16',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6820,'1000','41691768638','2023-08-11 18:43:59',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6821,'4000','41691768638','2023-08-11 18:43:59',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(6822,'1000','41691774475','2023-08-11 20:21:28',450.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6823,'4000','41691774475','2023-08-11 20:21:28',NULL,150.00,'','4','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(6824,'4000','41691774475','2023-08-11 20:21:15',NULL,150.00,'','4','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(6825,'4000','41691774475','2023-08-11 20:21:20',NULL,150.00,'','4','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(6826,'1000','41691776324','2023-08-11 20:52:12',380.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6827,'4000','41691776324','2023-08-11 20:52:12',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(6828,'4000','41691776324','2023-08-11 20:52:04',NULL,100.00,'','4','1','Good sold','1','','sales','26','','No',NULL,NULL,''),(6829,'1110','41691777973','2023-08-11 21:19:34',NULL,70.00,'','4','1','Inventory sold','1','','sales','60','','No',NULL,NULL,''),(6830,'5500','41691777973','2023-08-11 21:19:33',70.00,NULL,'','4','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6831,'1000','41691777973','2023-08-11 21:19:34',100.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6832,'4000','41691777973','2023-08-11 21:19:34',NULL,100.00,'','4','1','Good sold','1','','sales','60','','No',NULL,NULL,''),(6833,'1000','41691778969','2023-08-11 21:36:12',560.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6834,'4000','41691778969','2023-08-11 21:36:12',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(6835,'4000','41691778969','2023-08-11 21:36:09',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(6836,'1000','61691824544','2023-08-12 10:15:45',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6837,'4000','61691824544','2023-08-12 10:15:45',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6838,'1000','61691824555','2023-08-12 10:15:56',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6839,'4000','61691824555','2023-08-12 10:15:56',NULL,200.00,'','6','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(6840,'1000','61691828824','2023-08-12 11:27:06',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6841,'4000','61691828824','2023-08-12 11:27:06',NULL,200.00,'','6','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(6842,'1000','61691833781','2023-08-12 12:49:45',700.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6843,'4000','61691833781','2023-08-12 12:49:45',NULL,350.00,'','6','1','Good sold','1','','sales','54','','No',NULL,NULL,''),(6844,'4000','61691833781','2023-08-12 12:49:41',NULL,350.00,'','6','1','Good sold','1','','sales','54','','No',NULL,NULL,''),(6845,'1110','61691839815','2023-08-12 14:30:16',NULL,150.00,'','6','1','Inventory sold','1','','sales','55','','No',NULL,NULL,''),(6846,'5500','61691839815','2023-08-12 14:30:15',150.00,NULL,'','6','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(6847,'1000','61691839815','2023-08-12 14:30:16',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6848,'4000','61691839815','2023-08-12 14:30:16',NULL,200.00,'','6','1','Good sold','1','','sales','55','','No',NULL,NULL,''),(6849,'1000','61691845818','2023-08-12 16:10:19',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6850,'4000','61691845818','2023-08-12 16:10:19',NULL,200.00,'','6','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(6851,'1000','61691846544','2023-08-12 16:22:28',600.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6852,'4000','61691846544','2023-08-12 16:22:28',NULL,300.00,'','6','1','Good sold','1','','sales','29','','No',NULL,NULL,''),(6853,'4000','61691846544','2023-08-12 16:22:24',NULL,300.00,'','6','1','Good sold','1','','sales','29','','No',NULL,NULL,''),(6854,'1000','41691853549','2023-08-12 18:19:10',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6855,'4000','41691853549','2023-08-12 18:19:10',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6856,'1000','41691857428','2023-08-12 19:23:49',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6857,'4000','41691857428','2023-08-12 19:23:49',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6858,'1000','41691857442','2023-08-12 19:24:43',680.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6859,'4000','41691857442','2023-08-12 19:24:43',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(6860,'4000','41691857442','2023-08-12 19:24:02',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(6861,'4000','41691857442','2023-08-12 19:24:28',NULL,100.00,'','4','1','Good sold','1','','sales','26','','No',NULL,NULL,''),(6862,'1000','41691857658','2023-08-12 19:27:39',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6863,'4000','41691857658','2023-08-12 19:27:39',NULL,300.00,'','4','1','Good sold','1','','sales','29','','No',NULL,NULL,''),(6864,'1000','41691857690','2023-08-12 19:28:11',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6865,'4000','41691857690','2023-08-12 19:28:11',NULL,150.00,'','4','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(6866,'1000','41691859778','2023-08-12 20:02:59',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6867,'4000','41691859778','2023-08-12 20:02:59',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(6868,'1000','41691863692','2023-08-12 21:08:13',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6869,'4000','41691863692','2023-08-12 21:08:13',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(6870,'1000','41691867379','2023-08-12 22:09:57',600.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6871,'4000','41691867379','2023-08-12 22:09:57',NULL,600.00,'','4','1','Good sold','1','','sales','40','','No',NULL,NULL,''),(6872,'1000','41691868828','2023-08-12 22:33:56',480.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6873,'4000','41691868828','2023-08-12 22:33:56',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(6874,'4000','41691868828','2023-08-12 22:33:48',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(6875,'1000','41691915290','2023-08-13 11:28:12',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6876,'4000','41691915290','2023-08-13 11:28:12',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(6877,'1000','41691919355','2023-08-13 12:35:56',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6878,'4000','41691919355','2023-08-13 12:35:56',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(6879,'1000','41691925677','2023-08-13 14:21:26',610.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6880,'4000','41691925677','2023-08-13 14:21:26',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(6881,'4000','41691925677','2023-08-13 14:21:18',NULL,330.00,'','4','1','Good sold','1','','sales','30','','No',NULL,NULL,''),(6882,'1000','41691933005','2023-08-13 16:23:26',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6883,'4000','41691933005','2023-08-13 16:23:26',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6884,'1000','41691936994','2023-08-13 17:29:56',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6885,'4000','41691936994','2023-08-13 17:29:56',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(6886,'1000','61691939429','2023-08-13 18:10:31',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6887,'4000','61691939429','2023-08-13 18:10:31',NULL,200.00,'','6','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(6888,'1000','61691948077','2023-08-13 20:34:39',350.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6889,'4000','61691948077','2023-08-13 20:34:39',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6890,'1000','61691948093','2023-08-13 20:34:57',560.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6891,'4000','61691948093','2023-08-13 20:34:57',NULL,280.00,'','6','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(6892,'4000','61691948093','2023-08-13 20:34:53',NULL,280.00,'','6','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(6893,'1000','61691950558','2023-08-13 21:15:59',350.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6895,'1000','61691951990','2023-08-13 21:39:52',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6897,'1000','61691951990','2023-08-13 21:39:52',450.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6898,'4000','61691951990','2023-08-13 21:39:52',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6899,'4000','61691951990','2023-08-13 21:39:50',NULL,250.00,'','6','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(6900,'1000','61691952929','2023-08-13 21:55:30',250.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6901,'4000','61691952929','2023-08-13 21:55:30',NULL,250.00,'','6','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(6902,'1000','61691953763','2023-08-13 22:09:24',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6903,'4000','61691953763','2023-08-13 22:09:24',NULL,200.00,'','6','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(6904,'1000','61691950558','2023-08-13 21:15:59',700.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6905,'4000','61691950558','2023-08-13 21:15:59',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6906,'4000','61691950558','2023-08-13 21:15:58',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6907,'1000','61691954726','2023-08-13 22:25:27',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6908,'4000','61691954726','2023-08-13 22:25:27',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6909,'1000','61691957658','2023-08-13 23:14:19',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6910,'4000','61691957658','2023-08-13 23:14:19',NULL,200.00,'','6','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(6911,'1000','41692019813','2023-08-14 16:30:14',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6912,'4000','41692019813','2023-08-14 16:30:14',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(6913,'1000','61692023703','2023-08-14 17:35:04',280.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6914,'4000','61692023703','2023-08-14 17:35:04',NULL,280.00,'','6','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(6915,'1000','61692031831','2023-08-14 19:50:35',700.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6916,'4000','61692031831','2023-08-14 19:50:35',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6917,'4000','61692031831','2023-08-14 19:50:31',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6918,'1000','61692031854','2023-08-14 19:50:55',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6919,'4000','61692031854','2023-08-14 19:50:55',NULL,200.00,'','6','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(6920,'1000','61692037255','2023-08-14 21:20:56',250.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6921,'4000','61692037255','2023-08-14 21:20:56',NULL,250.00,'','6','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(6922,'1000','41692097327','2023-08-15 14:02:08',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6923,'4000','41692097327','2023-08-15 14:02:08',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(6924,'1000','41692100856','2023-08-15 15:00:57',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6925,'4000','41692100856','2023-08-15 15:00:57',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(6926,'1000','41692100908','2023-08-15 15:01:49',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6927,'4000','41692100908','2023-08-15 15:01:49',NULL,150.00,'','4','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(6928,'1000','41692107288','2023-08-15 16:48:09',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6929,'4000','41692107288','2023-08-15 16:48:09',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(6930,'1000','61692110141','2023-08-15 17:35:42',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6931,'4000','61692110141','2023-08-15 17:35:42',NULL,200.00,'','6','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(6932,'1000','61692114163','2023-08-15 18:42:44',30.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6933,'4000','61692114163','2023-08-15 18:42:44',NULL,30.00,'','6','1','Good sold','1','','sales','58','','No',NULL,NULL,''),(6934,'1000','61692115607','2023-08-15 19:06:48',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6935,'4000','61692115607','2023-08-15 19:06:48',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6936,'1000','61692115617','2023-08-15 19:06:58',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6937,'4000','61692115617','2023-08-15 19:06:58',NULL,200.00,'','6','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(6938,'1000','61692118761','2023-08-15 19:59:22',350.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6939,'4000','61692118761','2023-08-15 19:59:22',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6940,'1000','41692126614','2023-08-15 22:10:15',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6941,'4000','41692126614','2023-08-15 22:10:15',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(6942,'1000','61692174519','2023-08-16 11:28:48',480.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6943,'4000','61692174519','2023-08-16 11:28:48',NULL,280.00,'','6','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(6944,'4000','61692174519','2023-08-16 11:28:39',NULL,200.00,'','6','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(6945,'1000','61692175178','2023-08-16 11:39:39',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6946,'4000','61692175178','2023-08-16 11:39:39',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6947,'1000','61692176694','2023-08-16 12:04:56',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6948,'4000','61692176694','2023-08-16 12:04:56',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6949,'1000','61692179757','2023-08-16 12:55:58',250.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6950,'4000','61692179757','2023-08-16 12:55:58',NULL,250.00,'','6','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(6951,'1000','61692180440','2023-08-16 13:07:22',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6952,'4000','61692180440','2023-08-16 13:07:22',NULL,200.00,'','6','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(6953,'1000','61692197813','2023-08-16 17:56:54',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6954,'4000','61692197813','2023-08-16 17:56:54',NULL,200.00,'','6','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(6955,'1000','61692199680','2023-08-16 18:28:01',250.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6956,'4000','61692199680','2023-08-16 18:28:01',NULL,250.00,'','6','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(6957,'1000','61692202390','2023-08-16 19:13:14',500.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6958,'4000','61692202390','2023-08-16 19:13:14',NULL,250.00,'','6','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(6959,'4000','61692202390','2023-08-16 19:13:10',NULL,250.00,'','6','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(6960,'1000','61692207045','2023-08-16 20:30:47',300.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6961,'4000','61692207045','2023-08-16 20:30:47',NULL,300.00,'','6','1','Good sold','1','','sales','29','','No',NULL,NULL,''),(6962,'1000','61692210494','2023-08-16 21:28:15',250.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6963,'4000','61692210494','2023-08-16 21:28:15',NULL,250.00,'','6','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(6964,'1000','61692258959','2023-08-17 10:56:12',840.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6965,'4000','61692258959','2023-08-17 10:56:12',NULL,280.00,'','6','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(6966,'4000','61692258959','2023-08-17 10:55:59',NULL,280.00,'','6','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(6967,'4000','61692258959','2023-08-17 10:56:08',NULL,280.00,'','6','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(6968,'1000','41692282128','2023-08-17 17:22:09',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6969,'4000','41692282128','2023-08-17 17:22:09',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(6970,'1000','61692283928','2023-08-17 17:52:09',150.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6971,'4000','61692283928','2023-08-17 17:52:09',NULL,150.00,'','6','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(6972,'1000','61692284806','2023-08-17 18:06:47',250.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6973,'4000','61692284806','2023-08-17 18:06:47',NULL,250.00,'','6','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(6974,'1000','61692284819','2023-08-17 18:07:00',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6975,'4000','61692284819','2023-08-17 18:07:00',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(6976,'1000','61692284926','2023-08-17 18:08:47',280.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6977,'4000','61692284926','2023-08-17 18:08:47',NULL,280.00,'','6','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(6978,'1000','41692291831','2023-08-17 20:04:00',630.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6979,'4000','41692291831','2023-08-17 20:04:00',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(6980,'4000','41692291831','2023-08-17 20:03:51',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6981,'1000','41692295132','2023-08-17 20:58:53',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6982,'4000','41692295132','2023-08-17 20:58:53',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(6983,'1000','41692295795','2023-08-17 21:09:56',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6984,'4000','41692295795','2023-08-17 21:09:56',NULL,150.00,'','4','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(6985,'1000','41692298373','2023-08-17 21:52:54',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6986,'4000','41692298373','2023-08-17 21:52:54',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(6987,'1000','41692355194','2023-08-18 13:39:55',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6988,'4000','41692355194','2023-08-18 13:39:55',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(6989,'1000','41692367456','2023-08-18 17:04:18',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6990,'4000','41692367456','2023-08-18 17:04:18',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(6991,'1000','41692371004','2023-08-18 18:03:26',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6992,'4000','41692371004','2023-08-18 18:03:26',NULL,200.00,'','4','1','Good sold','1','','sales','16','','No',NULL,NULL,''),(6993,'1000','61692374398','2023-08-18 18:59:59',300.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6994,'4000','61692374398','2023-08-18 18:59:59',NULL,300.00,'','6','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(6995,'1000','61692374409','2023-08-18 19:00:11',350.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6996,'4000','61692374409','2023-08-18 19:00:11',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6997,'1000','61692384836','2023-08-18 21:53:58',350.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(6998,'4000','61692384836','2023-08-18 21:53:58',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(6999,'1000','61692385578','2023-08-18 22:06:19',350.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7000,'4000','61692385578','2023-08-18 22:06:19',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7001,'1000','61692386705','2023-08-18 22:25:06',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7002,'4000','61692386705','2023-08-18 22:25:06',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7003,'1000','61692386817','2023-08-18 22:26:58',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7004,'4000','61692386817','2023-08-18 22:26:58',NULL,200.00,'','6','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(7005,'1000','61692389714','2023-08-18 23:15:16',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7006,'4000','61692389714','2023-08-18 23:15:16',NULL,200.00,'','6','1','Good sold','1','','sales','15','','No',NULL,NULL,''),(7007,'1000','61692391430','2023-08-18 23:43:51',350.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7008,'4000','61692391430','2023-08-18 23:43:51',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7009,'1000','41692435318','2023-08-19 11:55:19',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7010,'4000','41692435318','2023-08-19 11:55:19',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7011,'1000','41692450267','2023-08-19 16:04:35',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7012,'4000','41692450267','2023-08-19 16:04:35',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(7013,'4000','41692450267','2023-08-19 16:04:27',NULL,100.00,'','4','1','Good sold','1','','sales','27','','No',NULL,NULL,''),(7014,'1000','41692451809','2023-08-19 16:30:10',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7015,'4000','41692451809','2023-08-19 16:30:10',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(7016,'1000','41692452084','2023-08-19 16:34:52',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7017,'4000','41692452084','2023-08-19 16:34:52',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(7018,'4000','41692452084','2023-08-19 16:34:44',NULL,100.00,'','4','1','Good sold','1','','sales','26','','No',NULL,NULL,''),(7019,'1000','61692455941','2023-08-19 17:39:02',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7020,'4000','61692455941','2023-08-19 17:39:02',NULL,200.00,'','6','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(7021,'1000','61692456774','2023-08-19 17:52:55',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7022,'4000','61692456774','2023-08-19 17:52:55',NULL,200.00,'','6','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(7023,'1000','61692462562','2023-08-19 19:29:24',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7024,'4000','61692462562','2023-08-19 19:29:24',NULL,200.00,'','6','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(7025,'1000','61692468902','2023-08-19 21:15:07',400.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7026,'4000','61692468902','2023-08-19 21:15:07',NULL,200.00,'','6','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(7027,'4000','61692468902','2023-08-19 21:15:02',NULL,200.00,'','6','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(7028,'1000','61692475931','2023-08-19 23:12:12',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7029,'4000','61692475931','2023-08-19 23:12:12',NULL,200.00,'','6','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(7030,'1000','61692478066','2023-08-19 23:47:47',350.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7031,'4000','61692478066','2023-08-19 23:47:47',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7032,'1000','41692536241','2023-08-20 15:57:22',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7033,'4000','41692536241','2023-08-20 15:57:22',NULL,150.00,'','4','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(7034,'1000','41692540702','2023-08-20 17:11:43',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7035,'4000','41692540702','2023-08-20 17:11:43',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(7036,'1000','41692548605','2023-08-20 19:23:26',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7037,'4000','41692548605','2023-08-20 19:23:26',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7038,'1000','41692549334','2023-08-20 19:35:36',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7039,'4000','41692549334','2023-08-20 19:35:36',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(7040,'1000','41692556193','2023-08-20 21:30:35',560.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7041,'4000','41692556193','2023-08-20 21:30:35',NULL,280.00,'','4','1','Good sold','1','','sales','6','','No',NULL,NULL,''),(7042,'4000','41692556193','2023-08-20 21:29:53',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(7043,'1000','41692598507','2023-08-21 09:15:08',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7044,'4000','41692598507','2023-08-21 09:15:08',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(7045,'1000','41692601713','2023-08-21 10:08:34',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7046,'4000','41692601713','2023-08-21 10:08:34',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7047,'1000','41692608572','2023-08-21 12:02:53',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7048,'4000','41692608572','2023-08-21 12:02:53',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(7049,'1000','41692625830','2023-08-21 16:50:31',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7050,'4000','41692625830','2023-08-21 16:50:31',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(7051,'1000','61692625983','2023-08-21 16:53:04',280.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7052,'4000','61692625983','2023-08-21 16:53:04',NULL,280.00,'','6','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(7053,'1000','61692638955','2023-08-21 20:29:16',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7054,'4000','61692638955','2023-08-21 20:29:16',NULL,200.00,'','6','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(7055,'1000','61692694819','2023-08-22 12:00:20',350.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7056,'4000','61692694819','2023-08-22 12:00:20',NULL,350.00,'','6','1','Good sold','1','','sales','54','','No',NULL,NULL,''),(7057,'1000','61692703504','2023-08-22 14:25:05',350.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7058,'4000','61692703504','2023-08-22 14:25:05',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7059,'1000','61692703515','2023-08-22 14:25:16',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7060,'4000','61692703515','2023-08-22 14:25:16',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7061,'1000','41692717155','2023-08-22 18:12:36',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7062,'4000','41692717155','2023-08-22 18:12:36',NULL,250.00,'','4','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(7063,'1000','41692718163','2023-08-22 18:29:24',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7064,'4000','41692718163','2023-08-22 18:29:24',NULL,250.00,'','4','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(7065,'1000','41692719737','2023-08-22 18:55:42',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7066,'4000','41692719737','2023-08-22 18:55:42',NULL,150.00,'','4','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(7067,'4000','41692719737','2023-08-22 18:55:37',NULL,150.00,'','4','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(7068,'1000','41692720555','2023-08-22 19:09:16',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7069,'4000','41692720555','2023-08-22 19:09:16',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7070,'1000','41692720566','2023-08-22 19:09:33',550.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7071,'4000','41692720566','2023-08-22 19:09:33',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7072,'4000','41692720566','2023-08-22 19:09:26',NULL,200.00,'','4','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(7073,'1000','41692722100','2023-08-22 19:35:01',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7074,'4000','41692722100','2023-08-22 19:35:01',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7075,'1000','41692731519','2023-08-22 22:12:16',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7076,'4000','41692731519','2023-08-22 22:12:16',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(7077,'1000','41692731548','2023-08-22 22:12:29',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7078,'4000','41692731548','2023-08-22 22:12:29',NULL,280.00,'','4','1','Good sold','1','','sales','6','','No',NULL,NULL,''),(7079,'1000','41692731570','2023-08-22 22:12:51',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7080,'4000','41692731570','2023-08-22 22:12:51',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(7081,'1000','41692731781','2023-08-22 22:16:22',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7082,'4000','41692731781','2023-08-22 22:16:22',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7083,'1000','61692809060','2023-08-23 19:44:21',350.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7084,'4000','61692809060','2023-08-23 19:44:21',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7085,'1000','61692809070','2023-08-23 19:44:31',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7086,'4000','61692809070','2023-08-23 19:44:31',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7087,'1000','61692809079','2023-08-23 19:44:40',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7088,'4000','61692809079','2023-08-23 19:44:40',NULL,200.00,'','6','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(7089,'1000','61692809087','2023-08-23 19:44:48',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7090,'4000','61692809087','2023-08-23 19:44:48',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7091,'1000','61692815044','2023-08-23 21:24:05',250.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7092,'4000','61692815044','2023-08-23 21:24:05',NULL,250.00,'','6','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(7093,'1000','61692816780','2023-08-23 21:53:01',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7094,'4000','61692816780','2023-08-23 21:53:01',NULL,200.00,'','6','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(7095,'1000','61692874299','2023-08-24 13:51:40',350.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7096,'4000','61692874299','2023-08-24 13:51:40',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7097,'1000','61692881001','2023-08-24 15:43:22',250.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7098,'4000','61692881001','2023-08-24 15:43:22',NULL,250.00,'','6','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(7099,'1000','61692881015','2023-08-24 15:43:36',250.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7100,'4000','61692881015','2023-08-24 15:43:36',NULL,250.00,'','6','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(7101,'1000','41692882179','2023-08-24 16:03:00',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7102,'4000','41692882179','2023-08-24 16:03:00',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7103,'1000','61692887639','2023-08-24 17:34:00',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7104,'4000','61692887639','2023-08-24 17:34:00',NULL,200.00,'','6','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(7105,'1000','61692890966','2023-08-24 18:29:27',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7106,'4000','61692890966','2023-08-24 18:29:27',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7107,'1000','61692890979','2023-08-24 18:30:15',660.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7108,'4000','61692890979','2023-08-24 18:30:15',NULL,280.00,'','6','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(7109,'4000','61692890979','2023-08-24 18:29:39',NULL,280.00,'','6','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(7110,'4000','61692890979','2023-08-24 18:29:50',NULL,100.00,'','6','1','Good sold','1','','sales','24','','No',NULL,NULL,''),(7111,'1000','61692891065','2023-08-24 18:31:13',550.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7112,'4000','61692891065','2023-08-24 18:31:13',NULL,200.00,'','6','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(7113,'4000','61692891065','2023-08-24 18:31:05',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7114,'1000','41692899008','2023-08-24 20:43:30',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7115,'4000','41692899008','2023-08-24 20:43:30',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7116,'1000','41692899758','2023-08-24 20:55:59',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7117,'4000','41692899758','2023-08-24 20:55:59',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7118,'1000','41692901410','2023-08-24 21:23:32',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7119,'4000','41692901410','2023-08-24 21:23:32',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7120,'1000','41693155375','2023-08-27 19:56:38',1050.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7121,'4000','41693155375','2023-08-27 19:56:38',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7122,'4000','41693155375','2023-08-27 19:56:15',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7123,'4000','41693155375','2023-08-27 19:56:16',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7124,'1000','41693155419','2023-08-27 19:57:00',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7125,'4000','41693155419','2023-08-27 19:57:00',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7126,'1000','41693156747','2023-08-27 20:19:08',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7127,'4000','41693156747','2023-08-27 20:19:08',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7128,'1000','41693157578','2023-08-27 20:33:00',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7129,'4000','41693157578','2023-08-27 20:33:00',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7130,'1000','41693159005','2023-08-27 20:56:46',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7131,'4000','41693159005','2023-08-27 20:56:46',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7132,'1000','41693159764','2023-08-27 21:09:25',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7133,'4000','41693159764','2023-08-27 21:09:25',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7134,'1000','41693161645','2023-08-27 21:40:46',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7135,'4000','41693161645','2023-08-27 21:40:46',NULL,250.00,'','4','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(7136,'1000','41693161704','2023-08-27 21:41:45',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7137,'4000','41693161704','2023-08-27 21:41:45',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(7138,'1000','41693161752','2023-08-27 21:42:33',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7139,'4000','41693161752','2023-08-27 21:42:33',NULL,300.00,'','4','1','Good sold','1','','sales','39','','No',NULL,NULL,''),(7140,'1000','41693221693','2023-08-28 14:21:35',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7141,'4000','41693221693','2023-08-28 14:21:35',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(7142,'1000','41693221710','2023-08-28 14:23:18',1600.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7143,'4000','41693221710','2023-08-28 14:23:18',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(7144,'4000','41693221710','2023-08-28 14:21:50',NULL,300.00,'','4','1','Good sold','1','','sales','29','','No',NULL,NULL,''),(7145,'4000','41693221710','2023-08-28 14:22:07',NULL,300.00,'','4','1','Good sold','1','','sales','29','','No',NULL,NULL,''),(7146,'4000','41693221710','2023-08-28 14:22:10',NULL,200.00,'','4','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(7147,'4000','41693221710','2023-08-28 14:22:43',NULL,200.00,'','4','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(7148,'4000','41693221710','2023-08-28 14:22:47',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(7149,'1000','61693231504','2023-08-28 17:05:05',250.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7150,'4000','61693231504','2023-08-28 17:05:05',NULL,250.00,'','6','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(7151,'1000','61693236205','2023-08-28 18:23:26',250.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7152,'4000','61693236205','2023-08-28 18:23:26',NULL,250.00,'','6','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(7153,'1000','61693237406','2023-08-28 18:43:28',350.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7154,'4000','61693237406','2023-08-28 18:43:28',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7155,'1000','61693237417','2023-08-28 18:43:38',350.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7156,'4000','61693237417','2023-08-28 18:43:38',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7157,'1000','61693240898','2023-08-28 19:41:39',250.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7158,'4000','61693240898','2023-08-28 19:41:39',NULL,250.00,'','6','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(7159,'1000','61693244387','2023-08-28 20:39:48',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7160,'4000','61693244387','2023-08-28 20:39:48',NULL,200.00,'','6','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(7161,'1000','61693246618','2023-08-28 21:17:00',150.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7162,'4000','61693246618','2023-08-28 21:17:00',NULL,150.00,'','6','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(7163,'1000','61693246626','2023-08-28 21:17:07',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7164,'4000','61693246626','2023-08-28 21:17:07',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7165,'1000','61693246652','2023-08-28 21:17:33',250.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7166,'4000','61693246652','2023-08-28 21:17:33',NULL,250.00,'','6','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(7167,'1000','61693246665','2023-08-28 21:17:46',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7168,'4000','61693246665','2023-08-28 21:17:46',NULL,200.00,'','6','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(7169,'1000','41693298181','2023-08-29 11:36:23',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7170,'4000','41693298181','2023-08-29 11:36:23',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7171,'1000','41693305919','2023-08-29 13:45:20',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7172,'4000','41693305919','2023-08-29 13:45:20',NULL,250.00,'','4','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(7173,'1000','41693315830','2023-08-29 16:30:32',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7174,'4000','41693315830','2023-08-29 16:30:32',NULL,150.00,'','4','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(7175,'1000','61693316439','2023-08-29 16:40:40',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7176,'4000','61693316439','2023-08-29 16:40:40',NULL,200.00,'','6','1','Good sold','1','','sales','31','','No',NULL,NULL,''),(7177,'1000','41693319374','2023-08-29 17:29:36',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7178,'4000','41693319374','2023-08-29 17:29:36',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7179,'1000','61693320864','2023-08-29 17:54:25',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7180,'4000','61693320864','2023-08-29 17:54:25',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7181,'1000','61693320876','2023-08-29 17:54:37',280.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7182,'4000','61693320876','2023-08-29 17:54:37',NULL,280.00,'','6','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(7183,'1000','61693320899','2023-08-29 17:55:00',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7184,'4000','61693320899','2023-08-29 17:55:00',NULL,200.00,'','6','1','Good sold','1','','sales','16','','No',NULL,NULL,''),(7185,'1000','61693323933','2023-08-29 18:45:49',680.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7189,'1000','61693325415','2023-08-29 19:10:16',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7190,'4000','61693325415','2023-08-29 19:10:16',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7191,'1000','61693325429','2023-08-29 19:10:30',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7192,'4000','61693325429','2023-08-29 19:10:30',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7193,'1000','61693323933','2023-08-29 18:45:49',930.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7194,'4000','61693323933','2023-08-29 18:45:49',NULL,280.00,'','6','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(7195,'4000','61693323933','2023-08-29 18:45:33',NULL,200.00,'','6','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(7196,'4000','61693323933','2023-08-29 18:45:45',NULL,200.00,'','6','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(7197,'4000','61693323933','2023-08-29 18:45:47',NULL,250.00,'','6','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(7198,'1000','61693329001','2023-08-29 20:10:02',350.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7199,'4000','61693329001','2023-08-29 20:10:02',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7200,'1000','61693330291','2023-08-29 20:31:32',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7201,'4000','61693330291','2023-08-29 20:31:32',NULL,200.00,'','6','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(7202,'1000','61693332588','2023-08-29 21:09:50',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7203,'4000','61693332588','2023-08-29 21:09:50',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7204,'1000','61693332598','2023-08-29 21:09:59',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7205,'4000','61693332598','2023-08-29 21:09:59',NULL,200.00,'','6','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(7206,'1000','61693336009','2023-08-29 22:06:50',350.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7207,'4000','61693336009','2023-08-29 22:06:50',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7208,'1000','61693336041','2023-08-29 22:07:22',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7209,'4000','61693336041','2023-08-29 22:07:22',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7210,'1000','61693337369','2023-08-29 22:29:30',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7211,'4000','61693337369','2023-08-29 22:29:30',NULL,200.00,'','6','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(7212,'1000','61693376930','2023-08-30 09:29:02',550.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7213,'4000','61693376930','2023-08-30 09:29:02',NULL,350.00,'','6','1','Good sold','1','','sales','54','','No',NULL,NULL,''),(7214,'4000','61693376930','2023-08-30 09:28:50',NULL,200.00,'','6','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(7215,'1000','61693378980','2023-08-30 10:03:06',480.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7216,'4000','61693378980','2023-08-30 10:03:06',NULL,280.00,'','6','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(7217,'4000','61693378980','2023-08-30 10:03:00',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7218,'1000','61693380476','2023-08-30 10:28:01',560.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7219,'4000','61693380476','2023-08-30 10:28:01',NULL,280.00,'','6','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(7220,'4000','61693380476','2023-08-30 10:27:56',NULL,280.00,'','6','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(7221,'1000','61693383291','2023-08-30 11:14:56',700.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7222,'4000','61693383291','2023-08-30 11:14:56',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7223,'4000','61693383291','2023-08-30 11:14:51',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7224,'1000','61693383311','2023-08-30 11:15:23',600.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7225,'4000','61693383311','2023-08-30 11:15:23',NULL,200.00,'','6','1','Good sold','1','','sales','15','','No',NULL,NULL,''),(7226,'4000','61693383311','2023-08-30 11:15:11',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7227,'4000','61693383311','2023-08-30 11:15:16',NULL,200.00,'','6','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(7228,'1000','61693384843','2023-08-30 11:40:45',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7229,'4000','61693384843','2023-08-30 11:40:45',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7230,'1000','61693408002','2023-08-30 18:06:46',450.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7231,'4000','61693408002','2023-08-30 18:06:46',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7232,'4000','61693408002','2023-08-30 18:06:42',NULL,250.00,'','6','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(7233,'1000','61693408495','2023-08-30 18:14:56',250.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7234,'4000','61693408495','2023-08-30 18:14:56',NULL,250.00,'','6','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(7235,'1000','61693417101','2023-08-30 20:38:22',280.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7236,'4000','61693417101','2023-08-30 20:38:22',NULL,280.00,'','6','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(7237,'1000','61693417117','2023-08-30 20:38:45',350.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7238,'4000','61693417117','2023-08-30 20:38:45',NULL,150.00,'','6','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(7239,'4000','61693417117','2023-08-30 20:38:37',NULL,200.00,'','6','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(7240,'1000','61693417143','2023-08-30 20:39:12',450.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7243,'1110','61693417160','2023-08-30 20:39:24',NULL,150.00,'','6','1','Inventory sold','1','','sales','55','','No',NULL,NULL,''),(7244,'1110','61693417160','2023-08-30 20:39:20',NULL,0.00,'','6','1','Inventory sold','1','','sales','21','','No',NULL,NULL,''),(7245,'5500','61693417160','2023-08-30 20:39:23',150.00,NULL,'','6','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7246,'1000','61693417160','2023-08-30 20:39:24',400.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7247,'4000','61693417160','2023-08-30 20:39:24',NULL,200.00,'','6','1','Good sold','1','','sales','55','','No',NULL,NULL,''),(7248,'4000','61693417160','2023-08-30 20:39:20',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7249,'1000','61693417143','2023-08-30 20:39:12',650.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7253,'1000','61693417468','2023-08-30 20:44:29',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7254,'4000','61693417468','2023-08-30 20:44:29',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7255,'1000','61693417143','2023-08-30 20:39:12',850.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7256,'4000','61693417143','2023-08-30 20:39:12',NULL,250.00,'','6','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(7257,'4000','61693417143','2023-08-30 20:39:03',NULL,200.00,'','6','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(7258,'4000','61693417143','2023-08-30 20:39:11',NULL,200.00,'','6','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(7259,'4000','61693417143','2023-08-30 20:40:17',NULL,200.00,'','6','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(7260,'1000','61693420841','2023-08-30 21:40:46',840.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7261,'4000','61693420841','2023-08-30 21:40:46',NULL,280.00,'','6','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(7262,'4000','61693420841','2023-08-30 21:40:41',NULL,280.00,'','6','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(7263,'4000','61693420841','2023-08-30 21:40:43',NULL,280.00,'','6','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(7264,'1000','61693476232','2023-08-31 13:04:13',1150.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7265,'4000','61693476232','2023-08-31 13:04:13',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7266,'4000','61693476232','2023-08-31 13:03:52',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7267,'4000','61693476232','2023-08-31 13:03:53',NULL,200.00,'','6','1','Good sold','1','','sales','16','','No',NULL,NULL,''),(7268,'4000','61693476232','2023-08-31 13:04:01',NULL,250.00,'','6','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(7269,'1000','61693476269','2023-08-31 13:04:38',400.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7270,'4000','61693476269','2023-08-31 13:04:38',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7271,'4000','61693476269','2023-08-31 13:04:29',NULL,200.00,'','6','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(7272,'1000','61693481931','2023-08-31 14:39:00',550.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7273,'4000','61693481931','2023-08-31 14:39:00',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7274,'4000','61693481931','2023-08-31 14:38:51',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7275,'1000','61693482959','2023-08-31 14:56:06',400.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7276,'4000','61693482959','2023-08-31 14:56:06',NULL,200.00,'','6','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(7277,'4000','61693482959','2023-08-31 14:55:59',NULL,200.00,'','6','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(7278,'1000','41693497281','2023-08-31 18:54:43',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7279,'4000','41693497281','2023-08-31 18:54:43',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(7280,'1000','41693498587','2023-08-31 19:16:28',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7281,'4000','41693498587','2023-08-31 19:16:28',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7282,'1000','41693498641','2023-08-31 19:17:22',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7283,'4000','41693498641','2023-08-31 19:17:22',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(7284,'1000','41693506267','2023-08-31 21:24:28',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7285,'4000','41693506267','2023-08-31 21:24:28',NULL,300.00,'','4','1','Good sold','1','','sales','39','','No',NULL,NULL,''),(7286,'1000','41693508535','2023-08-31 22:02:16',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7287,'4000','41693508535','2023-08-31 22:02:16',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(7288,'1000','41693575924','2023-09-01 16:45:25',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7289,'4000','41693575924','2023-09-01 16:45:25',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(7290,'1000','61693587101','2023-09-01 19:51:42',280.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7291,'4000','61693587101','2023-09-01 19:51:42',NULL,280.00,'','6','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(7292,'1000','61693587113','2023-09-01 19:51:54',280.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7293,'4000','61693587113','2023-09-01 19:51:54',NULL,280.00,'','6','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(7294,'1000','61693587129','2023-09-01 19:52:15',450.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7295,'4000','61693587129','2023-09-01 19:52:15',NULL,250.00,'','6','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(7296,'4000','61693587129','2023-09-01 19:52:09',NULL,200.00,'','6','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(7297,'1000','61693595399','2023-09-01 22:10:01',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7298,'4000','61693595399','2023-09-01 22:10:01',NULL,200.00,'','6','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(7299,'1000','61693595417','2023-09-01 22:10:19',350.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7300,'4000','61693595417','2023-09-01 22:10:19',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7301,'1000','61693597814','2023-09-01 22:50:17',560.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7302,'4000','61693597814','2023-09-01 22:50:17',NULL,280.00,'','6','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(7303,'4000','61693597814','2023-09-01 22:50:14',NULL,280.00,'','6','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(7304,'1000','41693647497','2023-09-02 12:38:31',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7305,'4000','41693647497','2023-09-02 12:38:31',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(7306,'4000','41693647497','2023-09-02 12:38:17',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(7307,'1000','41693651953','2023-09-02 13:52:34',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7308,'4000','41693651953','2023-09-02 13:52:34',NULL,250.00,'','4','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(7309,'1000','41693653020','2023-09-02 14:10:26',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7310,'4000','41693653020','2023-09-02 14:10:26',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7311,'1000','61693667429','2023-09-02 18:10:31',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7312,'4000','61693667429','2023-09-02 18:10:31',NULL,200.00,'','6','1','Good sold','1','','sales','15','','No',NULL,NULL,''),(7313,'1000','61693674780','2023-09-02 20:13:02',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7314,'4000','61693674780','2023-09-02 20:13:02',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7315,'1000','61693675337','2023-09-02 20:22:23',300.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7316,'4000','61693675337','2023-09-02 20:22:23',NULL,200.00,'','6','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(7317,'4000','61693675337','2023-09-02 20:22:17',NULL,100.00,'','6','1','Good sold','1','','sales','24','','No',NULL,NULL,''),(7318,'1000','61693677142','2023-09-02 20:52:23',350.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7319,'4000','61693677142','2023-09-02 20:52:23',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7320,'1000','41693761467','2023-09-03 20:17:48',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7321,'4000','41693761467','2023-09-03 20:17:48',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7322,'1000','41693763252','2023-09-03 20:47:33',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7323,'4000','41693763252','2023-09-03 20:47:33',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7324,'1000','41693763757','2023-09-03 20:55:59',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7325,'4000','41693763757','2023-09-03 20:55:59',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(7326,'1000','41693815459','2023-09-04 11:17:41',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7327,'4000','41693815459','2023-09-04 11:17:41',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(7328,'1000','41693834559','2023-09-04 16:36:01',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7329,'4000','41693834559','2023-09-04 16:36:01',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(7330,'1000','61693841920','2023-09-04 18:38:41',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7331,'4000','61693841920','2023-09-04 18:38:41',NULL,200.00,'','6','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(7332,'1000','61693845422','2023-09-04 19:37:03',280.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7333,'4000','61693845422','2023-09-04 19:37:03',NULL,280.00,'','6','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(7334,'1000','61693849080','2023-09-04 20:38:01',350.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7335,'4000','61693849080','2023-09-04 20:38:01',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7336,'1000','61693853233','2023-09-04 21:47:15',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7337,'4000','61693853233','2023-09-04 21:47:15',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7338,'1000','61693898969','2023-09-05 10:29:31',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7339,'4000','61693898969','2023-09-05 10:29:31',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7340,'1000','61693898979','2023-09-05 10:29:40',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7341,'4000','61693898979','2023-09-05 10:29:40',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7342,'1000','41693926256','2023-09-05 18:04:25',450.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7343,'4000','41693926256','2023-09-05 18:04:25',NULL,150.00,'','4','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(7344,'4000','41693926256','2023-09-05 18:04:16',NULL,150.00,'','4','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(7345,'4000','41693926256','2023-09-05 18:04:21',NULL,150.00,'','4','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(7346,'1000','41693929021','2023-09-05 18:50:23',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7347,'4000','41693929021','2023-09-05 18:50:23',NULL,250.00,'','4','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(7348,'1000','41693936116','2023-09-05 20:48:38',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7349,'4000','41693936116','2023-09-05 20:48:38',NULL,250.00,'','4','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(7350,'1000','41693937798','2023-09-05 21:17:01',530.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7351,'4000','41693937798','2023-09-05 21:17:01',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(7352,'4000','41693937798','2023-09-05 21:16:38',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(7353,'1000','41693937843','2023-09-05 21:17:24',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7354,'4000','41693937843','2023-09-05 21:17:24',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(7355,'1000','41693937916','2023-09-05 21:18:37',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7356,'4000','41693937916','2023-09-05 21:18:37',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7357,'1000','41693938005','2023-09-05 21:20:06',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7358,'4000','41693938005','2023-09-05 21:20:06',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(7359,'1000','61694016328','2023-09-06 19:05:36',300.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7360,'4000','61694016328','2023-09-06 19:05:36',NULL,200.00,'','6','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(7361,'4000','61694016328','2023-09-06 19:05:28',NULL,100.00,'','6','1','Good sold','1','','sales','26','','No',NULL,NULL,''),(7362,'1000','61694016347','2023-09-06 19:05:48',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7363,'4000','61694016347','2023-09-06 19:05:48',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7364,'1000','61694020196','2023-09-06 20:09:57',280.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7365,'4000','61694020196','2023-09-06 20:09:57',NULL,280.00,'','6','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(7366,'1000','61694022356','2023-09-06 20:45:57',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7367,'4000','61694022356','2023-09-06 20:45:57',NULL,200.00,'','6','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(7368,'1000','61694022374','2023-09-06 20:46:15',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7369,'4000','61694022374','2023-09-06 20:46:15',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7370,'1000','61694070780','2023-09-07 10:13:02',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7371,'4000','61694070780','2023-09-07 10:13:02',NULL,200.00,'','6','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(7372,'1000','61694076128','2023-09-07 11:42:09',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7373,'4000','61694076128','2023-09-07 11:42:09',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7374,'1000','61694087288','2023-09-07 14:48:09',350.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7375,'4000','61694087288','2023-09-07 14:48:09',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7376,'1000','61694091210','2023-09-07 15:53:31',280.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7377,'4000','61694091210','2023-09-07 15:53:31',NULL,280.00,'','6','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(7378,'1000','41694091609','2023-09-07 16:00:10',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7379,'4000','41694091609','2023-09-07 16:00:10',NULL,200.00,'','4','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(7380,'1000','41694091741','2023-09-07 16:02:22',30.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7381,'4000','41694091741','2023-09-07 16:02:22',NULL,30.00,'','4','1','Good sold','1','','sales','58','','No',NULL,NULL,''),(7382,'1000','41694095126','2023-09-07 16:58:47',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7383,'4000','41694095126','2023-09-07 16:58:47',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(7384,'1000','61694095849','2023-09-07 17:10:50',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7385,'4000','61694095849','2023-09-07 17:10:50',NULL,200.00,'','6','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(7386,'1000','41694096741','2023-09-07 17:25:43',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7387,'4000','41694096741','2023-09-07 17:25:43',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(7388,'1000','41694102320','2023-09-07 18:58:41',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7389,'4000','41694102320','2023-09-07 18:58:41',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(7390,'1000','41694102338','2023-09-07 18:59:00',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7391,'4000','41694102338','2023-09-07 18:59:00',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7392,'1000','41694104908','2023-09-07 19:41:49',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7393,'4000','41694104908','2023-09-07 19:41:49',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7394,'1000','41694106216','2023-09-07 20:03:44',480.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7395,'4000','41694106216','2023-09-07 20:03:44',NULL,200.00,'','4','1','Good sold','1','','sales','15','','No',NULL,NULL,''),(7396,'4000','41694106216','2023-09-07 20:03:36',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(7397,'1000','41694107234','2023-09-07 20:20:35',30.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7398,'4000','41694107234','2023-09-07 20:20:35',NULL,30.00,'','4','1','Good sold','1','','sales','58','','No',NULL,NULL,''),(7399,'1000','41694108486','2023-09-07 20:41:32',480.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7400,'4000','41694108486','2023-09-07 20:41:32',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(7401,'4000','41694108486','2023-09-07 20:41:26',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(7402,'1000','41694110655','2023-09-07 21:17:40',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7403,'4000','41694110655','2023-09-07 21:17:40',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(7404,'4000','41694110655','2023-09-07 21:17:35',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(7405,'1000','41694112638','2023-09-07 21:50:39',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7406,'4000','41694112638','2023-09-07 21:50:39',NULL,150.00,'','4','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(7407,'1000','61694155819','2023-09-08 09:50:20',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7408,'4000','61694155819','2023-09-08 09:50:20',NULL,200.00,'','6','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(7409,'1000','61694164499','2023-09-08 12:15:01',280.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7410,'4000','61694164499','2023-09-08 12:15:01',NULL,280.00,'','6','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(7411,'1000','61694167692','2023-09-08 13:08:16',500.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7412,'4000','61694167692','2023-09-08 13:08:16',NULL,250.00,'','6','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(7413,'4000','61694167692','2023-09-08 13:08:12',NULL,250.00,'','6','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(7414,'1000','61694173219','2023-09-08 14:40:21',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7415,'4000','61694173219','2023-09-08 14:40:21',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7416,'1000','61694173231','2023-09-08 14:40:32',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7417,'4000','61694173231','2023-09-08 14:40:32',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7418,'1000','61694175981','2023-09-08 15:26:31',300.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7419,'4000','61694175981','2023-09-08 15:26:31',NULL,200.00,'','6','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(7420,'4000','61694175981','2023-09-08 15:26:21',NULL,100.00,'','6','1','Good sold','1','','sales','26','','No',NULL,NULL,''),(7421,'1000','61694176667','2023-09-08 15:37:48',350.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7422,'4000','61694176667','2023-09-08 15:37:48',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7423,'1000','41694184444','2023-09-08 17:47:27',560.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7424,'4000','41694184444','2023-09-08 17:47:27',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(7425,'4000','41694184444','2023-09-08 17:47:24',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(7426,'1000','41694184490','2023-09-08 17:48:20',500.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7427,'4000','41694184490','2023-09-08 17:48:20',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(7428,'4000','41694184490','2023-09-08 17:48:10',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(7429,'1000','41694184587','2023-09-08 17:49:48',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7430,'4000','41694184587','2023-09-08 17:49:48',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7431,'1000','41694184623','2023-09-08 17:50:24',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7432,'4000','41694184623','2023-09-08 17:50:24',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7433,'1000','41694184641','2023-09-08 17:50:42',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7434,'4000','41694184641','2023-09-08 17:50:42',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(7435,'1000','41694188651','2023-09-08 18:57:33',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7436,'4000','41694188651','2023-09-08 18:57:33',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(7437,'1000','41694190327','2023-09-08 19:25:28',600.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7438,'4000','41694190327','2023-09-08 19:25:28',NULL,600.00,'','4','1','Good sold','1','','sales','40','','No',NULL,NULL,''),(7439,'1000','41694193606','2023-09-08 20:20:09',560.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7440,'4000','41694193606','2023-09-08 20:20:09',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(7441,'4000','41694193606','2023-09-08 20:20:06',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(7442,'1000','41694193621','2023-09-08 20:20:22',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7443,'4000','41694193621','2023-09-08 20:20:22',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(7444,'1000','41694193927','2023-09-08 20:25:28',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7445,'4000','41694193927','2023-09-08 20:25:28',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(7446,'1000','41694194171','2023-09-08 20:29:32',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7447,'4000','41694194171','2023-09-08 20:29:32',NULL,150.00,'','4','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(7448,'1000','41694194996','2023-09-08 20:43:17',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7449,'4000','41694194996','2023-09-08 20:43:17',NULL,250.00,'','4','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(7450,'1000','41694197410','2023-09-08 21:23:59',530.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7451,'4000','41694197410','2023-09-08 21:23:59',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(7452,'4000','41694197410','2023-09-08 21:23:30',NULL,250.00,'','4','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(7453,'1000','41694201266','2023-09-08 22:27:47',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7454,'4000','41694201266','2023-09-08 22:27:47',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7455,'1000','41694201301','2023-09-08 22:28:22',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7456,'4000','41694201301','2023-09-08 22:28:22',NULL,250.00,'','4','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(7457,'1000','41694201355','2023-09-08 22:29:16',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7458,'4000','41694201355','2023-09-08 22:29:16',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(7459,'1000','41694201368','2023-09-08 22:29:30',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7460,'4000','41694201368','2023-09-08 22:29:30',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(7461,'1000','61694246574','2023-09-09 11:02:55',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7462,'4000','61694246574','2023-09-09 11:02:55',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7463,'1000','61694246585','2023-09-09 11:03:06',350.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7464,'4000','61694246585','2023-09-09 11:03:06',NULL,350.00,'','6','1','Good sold','1','','sales','54','','No',NULL,NULL,''),(7465,'1000','61694252597','2023-09-09 12:43:18',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7466,'4000','61694252597','2023-09-09 12:43:18',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7467,'1000','61694253258','2023-09-09 12:54:21',500.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7468,'4000','61694253258','2023-09-09 12:54:21',NULL,250.00,'','6','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(7469,'4000','61694253258','2023-09-09 12:54:18',NULL,250.00,'','6','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(7470,'1000','61694259084','2023-09-09 14:31:25',600.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7471,'4000','61694259084','2023-09-09 14:31:25',NULL,600.00,'','6','1','Good sold','1','','sales','40','','No',NULL,NULL,''),(7472,'1000','61694259095','2023-09-09 14:31:36',280.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7473,'4000','61694259095','2023-09-09 14:31:36',NULL,280.00,'','6','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(7474,'1000','61694262252','2023-09-09 15:24:14',280.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7475,'4000','61694262252','2023-09-09 15:24:14',NULL,280.00,'','6','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(7476,'1000','61694262265','2023-09-09 15:24:43',800.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7477,'4000','61694262265','2023-09-09 15:24:43',NULL,200.00,'','6','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(7478,'4000','61694262265','2023-09-09 15:24:25',NULL,200.00,'','6','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(7479,'4000','61694262265','2023-09-09 15:24:28',NULL,200.00,'','6','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(7480,'4000','61694262265','2023-09-09 15:24:35',NULL,200.00,'','6','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(7481,'1000','41694264638','2023-09-09 16:04:06',480.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7482,'4000','41694264638','2023-09-09 16:04:06',NULL,200.00,'','4','1','Good sold','1','','sales','16','','No',NULL,NULL,''),(7483,'4000','41694264638','2023-09-09 16:03:58',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(7484,'1000','61694266083','2023-09-09 16:28:04',350.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7485,'4000','61694266083','2023-09-09 16:28:04',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7486,'1000','41694266292','2023-09-09 16:31:40',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7487,'4000','41694266292','2023-09-09 16:31:40',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7488,'1000','61694267327','2023-09-09 16:48:50',400.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7489,'4000','61694267327','2023-09-09 16:48:50',NULL,250.00,'','6','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(7490,'4000','61694267327','2023-09-09 16:48:47',NULL,150.00,'','6','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(7491,'1000','41694268687','2023-09-09 17:11:28',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7492,'4000','41694268687','2023-09-09 17:11:28',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7493,'1000','41694271318','2023-09-09 17:55:19',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7494,'4000','41694271318','2023-09-09 17:55:19',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7495,'1000','41694272741','2023-09-09 18:19:02',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7496,'4000','41694272741','2023-09-09 18:19:02',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7497,'1000','61694272781','2023-09-09 18:20:00',400.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7498,'4000','61694272781','2023-09-09 18:20:00',NULL,150.00,'','6','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(7499,'4000','61694272781','2023-09-09 18:19:41',NULL,250.00,'','6','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(7500,'1000','41694272948','2023-09-09 18:22:33',560.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7501,'4000','41694272948','2023-09-09 18:22:33',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(7502,'4000','41694272948','2023-09-09 18:22:29',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(7503,'1000','41694277661','2023-09-09 19:41:02',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7504,'4000','41694277661','2023-09-09 19:41:02',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(7505,'1000','41694279682','2023-09-09 20:14:43',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7506,'4000','41694279682','2023-09-09 20:14:43',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7507,'1000','41694282100','2023-09-09 20:55:02',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7508,'4000','41694282100','2023-09-09 20:55:02',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(7509,'1000','41694282785','2023-09-09 21:06:26',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7510,'4000','41694282785','2023-09-09 21:06:26',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(7511,'1000','41694284220','2023-09-09 21:30:21',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7512,'4000','41694284220','2023-09-09 21:30:21',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(7513,'1000','41694286398','2023-09-09 22:06:42',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7514,'4000','41694286398','2023-09-09 22:06:42',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(7515,'4000','41694286398','2023-09-09 22:06:38',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(7516,'1000','41694342796','2023-09-10 13:46:37',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7517,'4000','41694342796','2023-09-10 13:46:37',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(7518,'1000','41694345646','2023-09-10 14:34:13',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7519,'4000','41694345646','2023-09-10 14:34:13',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7520,'4000','41694345646','2023-09-10 14:34:06',NULL,200.00,'','4','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(7521,'1000','41694345871','2023-09-10 14:37:52',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7522,'4000','41694345871','2023-09-10 14:37:52',NULL,150.00,'','4','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(7523,'1000','41694347412','2023-09-10 15:03:40',430.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7524,'4000','41694347412','2023-09-10 15:03:40',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(7525,'4000','41694347412','2023-09-10 15:03:32',NULL,150.00,'','4','1','Good sold','1','','sales','61','','No',NULL,NULL,''),(7526,'1000','41694361656','2023-09-10 19:01:01',700.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7527,'4000','41694361656','2023-09-10 19:01:01',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7528,'4000','41694361656','2023-09-10 19:00:56',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7529,'1000','41694365571','2023-09-10 20:06:12',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7530,'4000','41694365571','2023-09-10 20:06:12',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(7531,'1000','41694367569','2023-09-10 20:39:33',1200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7532,'4000','41694367569','2023-09-10 20:39:33',NULL,600.00,'','4','1','Good sold','1','','sales','42','','No',NULL,NULL,''),(7533,'4000','41694367569','2023-09-10 20:39:29',NULL,600.00,'','4','1','Good sold','1','','sales','42','','No',NULL,NULL,''),(7534,'1000','41694427365','2023-09-11 13:16:10',700.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7535,'4000','41694427365','2023-09-11 13:16:10',NULL,350.00,'','4','1','Good sold','1','','sales','54','','No',NULL,NULL,''),(7536,'4000','41694427365','2023-09-11 13:16:05',NULL,350.00,'','4','1','Good sold','1','','sales','54','','No',NULL,NULL,''),(7537,'1000','41694441007','2023-09-11 17:03:28',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7538,'4000','41694441007','2023-09-11 17:03:28',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(7539,'1000','41694521860','2023-09-12 15:31:01',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7540,'4000','41694521860','2023-09-12 15:31:01',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(7541,'1000','61694530537','2023-09-12 17:55:38',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7542,'4000','61694530537','2023-09-12 17:55:38',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7543,'1000','61694530557','2023-09-12 17:55:58',150.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7544,'4000','61694530557','2023-09-12 17:55:58',NULL,150.00,'','6','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(7545,'1000','61694531686','2023-09-12 18:14:47',280.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7546,'4000','61694531686','2023-09-12 18:14:47',NULL,280.00,'','6','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(7547,'1000','61694533549','2023-09-12 18:45:50',150.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7548,'4000','61694533549','2023-09-12 18:45:50',NULL,150.00,'','6','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(7549,'1000','61694533566','2023-09-12 18:46:09',350.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7550,'4000','61694533566','2023-09-12 18:46:09',NULL,150.00,'','6','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(7551,'4000','61694533566','2023-09-12 18:46:06',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7552,'1000','61694537291','2023-09-12 19:48:12',150.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7554,'1000','61694537291','2023-09-12 19:48:12',330.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7555,'4000','61694537291','2023-09-12 19:48:12',NULL,150.00,'','6','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(7556,'4000','61694537291','2023-09-12 19:48:11',NULL,150.00,'','6','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(7557,'4000','61694537291','2023-09-12 20:36:46',NULL,30.00,'','6','1','Good sold','1','','sales','58','','No',NULL,NULL,''),(7558,'1000','61694542100','2023-09-12 21:08:21',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7559,'4000','61694542100','2023-09-12 21:08:21',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7560,'1000','61694542109','2023-09-12 21:08:30',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7561,'4000','61694542109','2023-09-12 21:08:30',NULL,200.00,'','6','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(7562,'1000','61694542887','2023-09-12 21:21:29',150.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7563,'4000','61694542887','2023-09-12 21:21:29',NULL,150.00,'','6','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(7564,'1000','61694543356','2023-09-12 21:29:17',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7565,'4000','61694543356','2023-09-12 21:29:17',NULL,200.00,'','6','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(7566,'1000','61694544064','2023-09-12 21:41:05',150.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7567,'4000','61694544064','2023-09-12 21:41:05',NULL,150.00,'','6','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(7568,'1000','61694596375','2023-09-13 12:13:02',430.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7569,'4000','61694596375','2023-09-13 12:13:02',NULL,330.00,'','6','1','Good sold','1','','sales','30','','No',NULL,NULL,''),(7570,'4000','61694596375','2023-09-13 12:12:55',NULL,100.00,'','6','1','Good sold','1','','sales','24','','No',NULL,NULL,''),(7571,'1000','61694596427','2023-09-13 12:13:48',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7572,'4000','61694596427','2023-09-13 12:13:48',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7573,'1000','61694597313','2023-09-13 12:28:35',250.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7574,'4000','61694597313','2023-09-13 12:28:35',NULL,250.00,'','6','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(7575,'1000','61694598848','2023-09-13 12:54:19',600.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7576,'4000','61694598848','2023-09-13 12:54:19',NULL,200.00,'','6','1','Good sold','1','','sales','9','','No',NULL,NULL,''),(7577,'4000','61694598848','2023-09-13 12:54:08',NULL,200.00,'','6','1','Good sold','1','','sales','9','','No',NULL,NULL,''),(7578,'4000','61694598848','2023-09-13 12:54:10',NULL,100.00,'','6','1','Good sold','1','','sales','26','','No',NULL,NULL,''),(7579,'4000','61694598848','2023-09-13 12:54:17',NULL,100.00,'','6','1','Good sold','1','','sales','26','','No',NULL,NULL,''),(7580,'1000','61694619501','2023-09-13 18:38:37',460.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7581,'4000','61694619501','2023-09-13 18:38:37',NULL,200.00,'','6','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(7582,'4000','61694619501','2023-09-13 18:38:21',NULL,200.00,'','6','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(7583,'4000','61694619501','2023-09-13 18:38:24',NULL,30.00,'','6','1','Good sold','1','','sales','58','','No',NULL,NULL,''),(7584,'4000','61694619501','2023-09-13 18:38:30',NULL,30.00,'','6','1','Good sold','1','','sales','58','','No',NULL,NULL,''),(7585,'1000','61694619533','2023-09-13 18:38:54',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7586,'4000','61694619533','2023-09-13 18:38:54',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7587,'1000','61694623799','2023-09-13 19:50:00',350.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7588,'4000','61694623799','2023-09-13 19:50:00',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7589,'1000','61694627484','2023-09-13 20:51:25',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7590,'4000','61694627484','2023-09-13 20:51:25',NULL,200.00,'','6','1','Good sold','1','','sales','9','','No',NULL,NULL,''),(7591,'1000','61694627504','2023-09-13 20:51:45',280.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7592,'4000','61694627504','2023-09-13 20:51:45',NULL,280.00,'','6','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(7593,'1000','61694627595','2023-09-13 20:53:16',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7594,'4000','61694627595','2023-09-13 20:53:16',NULL,200.00,'','6','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(7595,'1000','61694678798','2023-09-14 11:06:39',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7596,'4000','61694678798','2023-09-14 11:06:39',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7597,'1000','61694684269','2023-09-14 12:37:50',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7598,'4000','61694684269','2023-09-14 12:37:50',NULL,200.00,'','6','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(7599,'1000','61694686943','2023-09-14 13:22:24',300.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7600,'4000','61694686943','2023-09-14 13:22:24',NULL,300.00,'','6','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(7601,'1000','41694713305','2023-09-14 20:41:59',800.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7602,'4000','41694713305','2023-09-14 20:41:59',NULL,500.00,'','4','1','Good sold','1','','sales','44','','No',NULL,NULL,''),(7603,'4000','41694713305','2023-09-14 20:41:45',NULL,300.00,'','4','1','Good sold','1','','sales','29','','No',NULL,NULL,''),(7604,'1000','41694718259','2023-09-14 22:04:31',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7605,'4000','41694718259','2023-09-14 22:04:31',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(7606,'4000','41694718259','2023-09-14 22:04:19',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7607,'1000','41694772343','2023-09-15 13:05:44',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7608,'4000','41694772343','2023-09-15 13:05:44',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7609,'1110','61694791146','2023-09-15 18:19:07',NULL,150.00,'','6','1','Inventory sold','1','','sales','55','','No',NULL,NULL,''),(7610,'5500','61694791146','2023-09-15 18:19:06',150.00,NULL,'','6','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7611,'1000','61694791146','2023-09-15 18:19:07',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7612,'4000','61694791146','2023-09-15 18:19:07',NULL,200.00,'','6','1','Good sold','1','','sales','55','','No',NULL,NULL,''),(7613,'1000','61694791163','2023-09-15 18:19:24',350.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7614,'4000','61694791163','2023-09-15 18:19:24',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7615,'1000','61694796801','2023-09-15 19:53:24',400.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7616,'4000','61694796801','2023-09-15 19:53:24',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7617,'4000','61694796801','2023-09-15 19:53:21',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7618,'1000','61694803413','2023-09-15 21:43:34',350.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7619,'4000','61694803413','2023-09-15 21:43:34',NULL,350.00,'','6','1','Good sold','1','','sales','54','','No',NULL,NULL,''),(7620,'1000','61694803886','2023-09-15 21:51:28',350.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7621,'4000','61694803886','2023-09-15 21:51:28',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7622,'1000','61694805842','2023-09-15 22:24:04',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7623,'4000','61694805842','2023-09-15 22:24:04',NULL,200.00,'','6','1','Good sold','1','','sales','9','','No',NULL,NULL,''),(7624,'1000','61694808388','2023-09-15 23:06:29',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7625,'4000','61694808388','2023-09-15 23:06:29',NULL,200.00,'','6','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(7626,'1000','61694808475','2023-09-15 23:07:56',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7627,'4000','61694808475','2023-09-15 23:07:56',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7628,'1000','61694808522','2023-09-15 23:08:44',560.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7629,'4000','61694808522','2023-09-15 23:08:44',NULL,280.00,'','6','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(7630,'4000','61694808522','2023-09-15 23:08:42',NULL,280.00,'','6','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(7631,'1000','61694809017','2023-09-15 23:16:58',250.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7632,'4000','61694809017','2023-09-15 23:16:58',NULL,250.00,'','6','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(7633,'1000','41694850414','2023-09-16 10:47:05',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7634,'4000','41694850414','2023-09-16 10:47:05',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(7635,'1000','41694853972','2023-09-16 11:46:14',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7636,'4000','41694853972','2023-09-16 11:46:14',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7637,'1000','41694855093','2023-09-16 12:04:54',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7638,'4000','41694855093','2023-09-16 12:04:54',NULL,150.00,'','4','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(7639,'1000','41694855118','2023-09-16 12:05:19',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7640,'4000','41694855118','2023-09-16 12:05:19',NULL,150.00,'','4','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(7641,'1000','41694872622','2023-09-16 16:57:03',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7642,'4000','41694872622','2023-09-16 16:57:03',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(7643,'1000','61694877510','2023-09-16 18:18:31',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7644,'4000','61694877510','2023-09-16 18:18:31',NULL,200.00,'','6','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(7645,'1000','61694877519','2023-09-16 18:18:40',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7646,'4000','61694877519','2023-09-16 18:18:40',NULL,200.00,'','6','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(7647,'1000','61694877535','2023-09-16 18:18:57',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7648,'4000','61694877535','2023-09-16 18:18:57',NULL,200.00,'','6','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(7649,'1000','61694882431','2023-09-16 19:40:32',150.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7650,'4000','61694882431','2023-09-16 19:40:32',NULL,150.00,'','6','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(7651,'1000','61694884653','2023-09-16 20:17:34',350.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7653,'1000','61694886911','2023-09-16 20:55:14',400.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7654,'4000','61694886911','2023-09-16 20:55:14',NULL,200.00,'','6','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(7655,'4000','61694886911','2023-09-16 20:55:11',NULL,200.00,'','6','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(7656,'1000','61694886985','2023-09-16 20:56:36',760.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7657,'4000','61694886985','2023-09-16 20:56:36',NULL,280.00,'','6','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(7658,'4000','61694886985','2023-09-16 20:56:25',NULL,280.00,'','6','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(7659,'4000','61694886985','2023-09-16 20:56:26',NULL,100.00,'','6','1','Good sold','1','','sales','26','','No',NULL,NULL,''),(7660,'4000','61694886985','2023-09-16 20:56:34',NULL,100.00,'','6','1','Good sold','1','','sales','26','','No',NULL,NULL,''),(7661,'1000','61694888689','2023-09-16 21:24:50',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7662,'4000','61694888689','2023-09-16 21:24:50',NULL,200.00,'','6','1','Good sold','1','','sales','16','','No',NULL,NULL,''),(7663,'1000','61694884653','2023-09-16 20:17:34',700.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7664,'4000','61694884653','2023-09-16 20:17:34',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7665,'4000','61694884653','2023-09-16 20:17:33',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7666,'1000','61694889651','2023-09-16 21:40:52',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7667,'4000','61694889651','2023-09-16 21:40:52',NULL,200.00,'','6','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(7668,'1000','61694890790','2023-09-16 21:59:51',350.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7669,'4000','61694890790','2023-09-16 21:59:51',NULL,350.00,'','6','1','Good sold','1','','sales','54','','No',NULL,NULL,''),(7670,'1000','61694891855','2023-09-16 22:17:42',660.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7671,'4000','61694891855','2023-09-16 22:17:42',NULL,280.00,'','6','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(7672,'4000','61694891855','2023-09-16 22:17:35',NULL,280.00,'','6','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(7673,'4000','61694891855','2023-09-16 22:17:36',NULL,100.00,'','6','1','Good sold','1','','sales','25','','No',NULL,NULL,''),(7674,'1000','61694894704','2023-09-16 23:05:05',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7675,'4000','61694894704','2023-09-16 23:05:05',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7676,'1000','61694894750','2023-09-16 23:05:51',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7677,'4000','61694894750','2023-09-16 23:05:51',NULL,200.00,'','6','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(7678,'1000','41694937358','2023-09-17 10:55:59',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7679,'4000','41694937358','2023-09-17 10:55:59',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(7680,'1000','41694937586','2023-09-17 10:59:47',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7681,'4000','41694937586','2023-09-17 10:59:47',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(7682,'1000','61694963776','2023-09-17 18:17:08',830.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7683,'4000','61694963776','2023-09-17 18:17:08',NULL,200.00,'','6','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(7684,'4000','61694963776','2023-09-17 18:16:16',NULL,100.00,'','6','1','Good sold','1','','sales','26','','No',NULL,NULL,''),(7685,'4000','61694963776','2023-09-17 18:16:21',NULL,280.00,'','6','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(7686,'4000','61694963776','2023-09-17 18:17:00',NULL,250.00,'','6','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(7687,'1000','61694963839','2023-09-17 18:17:20',280.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7688,'4000','61694963839','2023-09-17 18:17:20',NULL,280.00,'','6','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(7689,'1000','61694963849','2023-09-17 18:17:30',350.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7690,'4000','61694963849','2023-09-17 18:17:30',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7691,'1000','61694963859','2023-09-17 18:17:41',700.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7692,'4000','61694963859','2023-09-17 18:17:41',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7693,'4000','61694963859','2023-09-17 18:17:39',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7694,'1000','61694968253','2023-09-17 19:30:55',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7695,'4000','61694968253','2023-09-17 19:30:55',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7696,'1000','61694970542','2023-09-17 20:09:04',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7697,'4000','61694970542','2023-09-17 20:09:04',NULL,200.00,'','6','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(7698,'1000','61695031938','2023-09-18 13:12:20',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7699,'4000','61695031938','2023-09-18 13:12:20',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7700,'1000','41695051514','2023-09-18 18:38:41',700.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7701,'4000','41695051514','2023-09-18 18:38:41',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7702,'4000','41695051514','2023-09-18 18:38:34',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7703,'1000','41695059811','2023-09-18 20:56:53',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7704,'4000','41695059811','2023-09-18 20:56:53',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7705,'1000','61695109985','2023-09-19 10:53:06',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7706,'4000','61695109985','2023-09-19 10:53:06',NULL,200.00,'','6','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(7707,'1000','61695110005','2023-09-19 10:53:34',800.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7708,'4000','61695110005','2023-09-19 10:53:34',NULL,200.00,'','6','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(7709,'4000','61695110005','2023-09-19 10:53:25',NULL,200.00,'','6','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(7710,'4000','61695110005','2023-09-19 10:53:28',NULL,200.00,'','6','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(7711,'4000','61695110005','2023-09-19 10:53:30',NULL,200.00,'','6','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(7712,'1000','61695116567','2023-09-19 12:42:48',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7713,'4000','61695116567','2023-09-19 12:42:48',NULL,200.00,'','6','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(7714,'1000','61695119328','2023-09-19 13:28:49',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7715,'4000','61695119328','2023-09-19 13:28:49',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7716,'1000','61695119465','2023-09-19 13:31:06',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7717,'4000','61695119465','2023-09-19 13:31:06',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7718,'1000','61695122018','2023-09-19 14:13:39',300.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7719,'4000','61695122018','2023-09-19 14:13:39',NULL,300.00,'','6','1','Good sold','1','','sales','29','','No',NULL,NULL,''),(7720,'1000','41695128830','2023-09-19 16:07:11',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7721,'4000','41695128830','2023-09-19 16:07:11',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7722,'1000','41695137015','2023-09-19 18:23:39',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7723,'4000','41695137015','2023-09-19 18:23:39',NULL,150.00,'','4','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(7724,'4000','41695137015','2023-09-19 18:23:35',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(7725,'1000','41695140807','2023-09-19 19:26:48',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7726,'4000','41695140807','2023-09-19 19:26:48',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7727,'1000','41695142698','2023-09-19 19:58:21',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7728,'4000','41695142698','2023-09-19 19:58:21',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7729,'4000','41695142698','2023-09-19 19:58:18',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7730,'1000','41695148049','2023-09-19 21:27:31',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7731,'4000','41695148049','2023-09-19 21:27:31',NULL,300.00,'','4','1','Good sold','1','','sales','29','','No',NULL,NULL,''),(7732,'1000','41695151059','2023-09-19 22:17:40',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7733,'4000','41695151059','2023-09-19 22:17:40',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(7734,'1000','41695151843','2023-09-19 22:30:44',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7735,'4000','41695151843','2023-09-19 22:30:44',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(7736,'1000','61695199029','2023-09-20 11:37:11',250.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7737,'4000','61695199029','2023-09-20 11:37:11',NULL,250.00,'','6','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(7738,'1000','61695201511','2023-09-20 12:18:32',350.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7739,'4000','61695201511','2023-09-20 12:18:32',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7740,'1000','61695209361','2023-09-20 14:29:22',150.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7741,'4000','61695209361','2023-09-20 14:29:22',NULL,150.00,'','6','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(7742,'1000','61695223091','2023-09-20 18:18:12',280.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7743,'4000','61695223091','2023-09-20 18:18:12',NULL,280.00,'','6','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(7744,'1000','61695223103','2023-09-20 18:18:24',250.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7745,'4000','61695223103','2023-09-20 18:18:24',NULL,250.00,'','6','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(7746,'1000','61695223114','2023-09-20 18:18:35',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7747,'4000','61695223114','2023-09-20 18:18:35',NULL,200.00,'','6','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(7748,'1000','61695225566','2023-09-20 18:59:28',700.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7749,'4000','61695225566','2023-09-20 18:59:28',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7750,'4000','61695225566','2023-09-20 18:59:26',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7751,'1000','61695225576','2023-09-20 18:59:38',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7752,'4000','61695225576','2023-09-20 18:59:38',NULL,200.00,'','6','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(7753,'1000','61695225587','2023-09-20 18:59:49',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7754,'4000','61695225587','2023-09-20 18:59:49',NULL,200.00,'','6','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(7755,'1000','61695230087','2023-09-20 20:14:48',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7756,'4000','61695230087','2023-09-20 20:14:48',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7757,'1000','61695230109','2023-09-20 20:15:10',250.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7758,'4000','61695230109','2023-09-20 20:15:10',NULL,250.00,'','6','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(7759,'1000','61695232551','2023-09-20 20:55:55',400.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7760,'4000','61695232551','2023-09-20 20:55:55',NULL,200.00,'','6','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(7761,'4000','61695232551','2023-09-20 20:55:51',NULL,200.00,'','6','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(7762,'1000','61695232564','2023-09-20 20:56:05',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7763,'4000','61695232564','2023-09-20 20:56:05',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7764,'1000','61695235534','2023-09-20 21:45:39',350.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7765,'4000','61695235534','2023-09-20 21:45:39',NULL,150.00,'','6','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(7766,'4000','61695235534','2023-09-20 21:45:34',NULL,200.00,'','6','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(7767,'1000','61695281346','2023-09-21 10:29:07',600.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7768,'4000','61695281346','2023-09-21 10:29:07',NULL,600.00,'','6','1','Good sold','1','','sales','40','','No',NULL,NULL,''),(7769,'1000','61695281356','2023-09-21 10:29:18',250.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7770,'4000','61695281356','2023-09-21 10:29:18',NULL,250.00,'','6','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(7771,'1000','61695290481','2023-09-21 13:01:22',250.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7772,'4000','61695290481','2023-09-21 13:01:22',NULL,250.00,'','6','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(7773,'1000','61695293086','2023-09-21 13:44:47',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7774,'4000','61695293086','2023-09-21 13:44:47',NULL,200.00,'','6','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(7775,'1000','41695309036','2023-09-21 18:10:58',600.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7776,'4000','41695309036','2023-09-21 18:10:58',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(7777,'4000','41695309036','2023-09-21 18:10:36',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(7778,'4000','41695309036','2023-09-21 18:10:47',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(7779,'1000','41695311697','2023-09-21 18:54:58',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7780,'4000','41695311697','2023-09-21 18:54:58',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(7781,'1000','41695319064','2023-09-21 20:57:45',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7782,'4000','41695319064','2023-09-21 20:57:45',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7783,'1000','61695387922','2023-09-22 16:05:24',280.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7784,'4000','61695387922','2023-09-22 16:05:24',NULL,280.00,'','6','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(7785,'1000','41695388824','2023-09-22 16:20:25',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7786,'4000','41695388824','2023-09-22 16:20:25',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(7787,'1000','41695390487','2023-09-22 16:48:08',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7788,'4000','41695390487','2023-09-22 16:48:08',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(7789,'1000','41695395859','2023-09-22 18:17:40',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7790,'4000','41695395859','2023-09-22 18:17:40',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(7791,'1000','41695396133','2023-09-22 18:22:14',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7792,'4000','41695396133','2023-09-22 18:22:14',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(7793,'1000','41695401538','2023-09-22 19:52:20',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7794,'4000','41695401538','2023-09-22 19:52:20',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7795,'1000','41695409660','2023-09-22 22:07:41',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7796,'4000','41695409660','2023-09-22 22:07:41',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7797,'1000','41695409685','2023-09-22 22:08:06',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7798,'4000','41695409685','2023-09-22 22:08:06',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7799,'1000','41695411180','2023-09-22 22:33:01',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7800,'4000','41695411180','2023-09-22 22:33:01',NULL,150.00,'','4','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(7801,'1000','61695455070','2023-09-23 10:45:04',1240.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7802,'4000','61695455070','2023-09-23 10:45:04',NULL,280.00,'','6','1','Good sold','1','','sales','13','','No',NULL,NULL,''),(7803,'4000','61695455070','2023-09-23 10:44:30',NULL,280.00,'','6','1','Good sold','1','','sales','13','','No',NULL,NULL,''),(7804,'4000','61695455070','2023-09-23 10:44:33',NULL,280.00,'','6','1','Good sold','1','','sales','6','','No',NULL,NULL,''),(7805,'4000','61695455070','2023-09-23 10:44:35',NULL,200.00,'','6','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(7806,'4000','61695455070','2023-09-23 10:44:53',NULL,200.00,'','6','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(7807,'1000','61695463688','2023-09-23 13:08:09',350.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7808,'4000','61695463688','2023-09-23 13:08:09',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7809,'1000','61695463703','2023-09-23 13:08:25',150.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7810,'4000','61695463703','2023-09-23 13:08:25',NULL,150.00,'','6','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(7811,'1000','41695476726','2023-09-23 16:45:27',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7812,'4000','41695476726','2023-09-23 16:45:27',NULL,250.00,'','4','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(7813,'1000','41695479084','2023-09-23 17:24:45',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7814,'4000','41695479084','2023-09-23 17:24:45',NULL,250.00,'','4','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(7815,'1000','41695479693','2023-09-23 17:35:00',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7816,'4000','41695479693','2023-09-23 17:35:00',NULL,250.00,'','4','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(7817,'4000','41695479693','2023-09-23 17:34:53',NULL,100.00,'','4','1','Good sold','1','','sales','26','','No',NULL,NULL,''),(7818,'1000','41695482858','2023-09-23 18:27:40',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7819,'4000','41695482858','2023-09-23 18:27:40',NULL,150.00,'','4','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(7820,'1000','41695495346','2023-09-23 21:55:47',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7821,'4000','41695495346','2023-09-23 21:55:47',NULL,350.00,'','4','1','Good sold','1','','sales','54','','No',NULL,NULL,''),(7822,'1000','41695495397','2023-09-23 21:56:41',560.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7823,'4000','41695495397','2023-09-23 21:56:41',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(7824,'4000','41695495397','2023-09-23 21:56:37',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(7825,'1000','41695495420','2023-09-23 21:57:01',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7826,'4000','41695495420','2023-09-23 21:57:01',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(7827,'1000','41695550848','2023-09-24 13:20:49',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7828,'4000','41695550848','2023-09-24 13:20:49',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7829,'1110','41695562761','2023-09-24 16:39:22',NULL,150.00,'','4','1','Inventory sold','1','','sales','55','','No',NULL,NULL,''),(7830,'5500','41695562761','2023-09-24 16:39:21',150.00,NULL,'','4','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7831,'1000','41695562761','2023-09-24 16:39:22',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7832,'4000','41695562761','2023-09-24 16:39:22',NULL,200.00,'','4','1','Good sold','1','','sales','55','','No',NULL,NULL,''),(7833,'1000','41695567948','2023-09-24 18:05:54',480.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7834,'4000','41695567948','2023-09-24 18:05:54',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(7835,'4000','41695567948','2023-09-24 18:05:48',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7836,'1000','41695570032','2023-09-24 18:40:40',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7837,'4000','41695570032','2023-09-24 18:40:40',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(7838,'4000','41695570032','2023-09-24 18:40:32',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(7839,'1000','41695581636','2023-09-24 21:53:59',560.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7840,'4000','41695581636','2023-09-24 21:53:59',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(7841,'4000','41695581636','2023-09-24 21:53:56',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(7842,'1000','41695581650','2023-09-24 21:54:11',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7843,'4000','41695581650','2023-09-24 21:54:11',NULL,250.00,'','4','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(7844,'1000','41695631811','2023-09-25 11:50:12',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7845,'4000','41695631811','2023-09-25 11:50:12',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(7846,'1000','41695634362','2023-09-25 12:32:43',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7847,'4000','41695634362','2023-09-25 12:32:43',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(7848,'1000','41695639991','2023-09-25 14:06:35',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7849,'4000','41695639991','2023-09-25 14:06:35',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(7850,'4000','41695639991','2023-09-25 14:06:31',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(7851,'1000','41695641305','2023-09-25 14:28:27',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7852,'4000','41695641305','2023-09-25 14:28:27',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7853,'1000','41695647220','2023-09-25 16:07:01',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7854,'4000','41695647220','2023-09-25 16:07:01',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(7855,'1000','41695647741','2023-09-25 16:15:42',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7856,'4000','41695647741','2023-09-25 16:15:42',NULL,150.00,'','4','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(7857,'1000','41695649180','2023-09-25 16:39:41',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7858,'4000','41695649180','2023-09-25 16:39:41',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(7859,'1000','41695649198','2023-09-25 16:39:59',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7860,'4000','41695649198','2023-09-25 16:39:59',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(7861,'1000','41695650662','2023-09-25 17:04:24',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7862,'4000','41695650662','2023-09-25 17:04:24',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(7863,'1000','61695665435','2023-09-25 21:10:36',350.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7864,'4000','61695665435','2023-09-25 21:10:36',NULL,350.00,'','6','1','Good sold','1','','sales','54','','No',NULL,NULL,''),(7865,'1000','61695667953','2023-09-25 21:52:34',350.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7866,'4000','61695667953','2023-09-25 21:52:34',NULL,350.00,'','6','1','Good sold','1','','sales','54','','No',NULL,NULL,''),(7867,'1000','41695713966','2023-09-26 10:39:33',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7868,'4000','41695713966','2023-09-26 10:39:33',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7869,'4000','41695713966','2023-09-26 10:39:27',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(7870,'1000','41695715200','2023-09-26 11:00:01',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7871,'4000','41695715200','2023-09-26 11:00:01',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7872,'1000','61695740530','2023-09-26 18:02:11',350.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7873,'4000','61695740530','2023-09-26 18:02:11',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7874,'1000','61695741809','2023-09-26 18:23:31',700.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7875,'4000','61695741809','2023-09-26 18:23:31',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7876,'4000','61695741809','2023-09-26 18:23:29',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7877,'1000','61695742336','2023-09-26 18:32:17',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7878,'4000','61695742336','2023-09-26 18:32:17',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7879,'1000','61695744599','2023-09-26 19:10:01',280.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7880,'4000','61695744599','2023-09-26 19:10:01',NULL,280.00,'','6','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(7881,'1000','61695748682','2023-09-26 20:18:09',480.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7882,'4000','61695748682','2023-09-26 20:18:09',NULL,280.00,'','6','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(7883,'4000','61695748682','2023-09-26 20:18:02',NULL,200.00,'','6','1','Good sold','1','','sales','15','','No',NULL,NULL,''),(7884,'1000','61695750091','2023-09-26 20:41:32',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7885,'4000','61695750091','2023-09-26 20:41:32',NULL,200.00,'','6','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(7886,'1000','61695753708','2023-09-26 21:41:50',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7887,'4000','61695753708','2023-09-26 21:41:50',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7888,'1000','61695801457','2023-09-27 10:57:38',350.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7889,'4000','61695801457','2023-09-27 10:57:38',NULL,350.00,'','6','1','Good sold','1','','sales','54','','No',NULL,NULL,''),(7890,'1000','61695801504','2023-09-27 10:58:25',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7891,'4000','61695801504','2023-09-27 10:58:25',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7892,'1000','61695819051','2023-09-27 15:50:52',280.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7893,'4000','61695819051','2023-09-27 15:50:52',NULL,280.00,'','6','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(7894,'1000','61695826268','2023-09-27 17:51:10',280.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7895,'4000','61695826268','2023-09-27 17:51:10',NULL,280.00,'','6','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(7896,'1000','61695827051','2023-09-27 18:04:12',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7897,'4000','61695827051','2023-09-27 18:04:12',NULL,200.00,'','6','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(7898,'1000','61695827066','2023-09-27 18:04:27',350.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7899,'4000','61695827066','2023-09-27 18:04:27',NULL,350.00,'','6','1','Good sold','1','','sales','54','','No',NULL,NULL,''),(7900,'1000','61695834391','2023-09-27 20:06:32',350.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7901,'4000','61695834391','2023-09-27 20:06:32',NULL,350.00,'','6','1','Good sold','1','','sales','54','','No',NULL,NULL,''),(7902,'1000','61695884756','2023-09-28 10:05:58',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7903,'4000','61695884756','2023-09-28 10:05:58',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7904,'1000','61695890572','2023-09-28 11:42:53',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7905,'4000','61695890572','2023-09-28 11:42:53',NULL,200.00,'','6','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(7906,'1000','61695892976','2023-09-28 12:22:57',280.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7907,'4000','61695892976','2023-09-28 12:22:57',NULL,280.00,'','6','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(7908,'1000','61695912467','2023-09-28 17:47:50',400.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7909,'4000','61695912467','2023-09-28 17:47:50',NULL,200.00,'','6','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(7910,'4000','61695912467','2023-09-28 17:47:47',NULL,200.00,'','6','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(7911,'1000','41695912909','2023-09-28 17:55:10',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7912,'4000','41695912909','2023-09-28 17:55:10',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7913,'1000','41695920026','2023-09-28 19:53:47',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7914,'4000','41695920026','2023-09-28 19:53:47',NULL,200.00,'','4','1','Good sold','1','','sales','15','','No',NULL,NULL,''),(7915,'1000','41695924903','2023-09-28 21:15:26',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7916,'4000','41695924903','2023-09-28 21:15:26',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7917,'1000','41695926045','2023-09-28 21:34:06',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7918,'4000','41695926045','2023-09-28 21:34:06',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(7919,'1000','41695926549','2023-09-28 21:42:30',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7920,'4000','41695926549','2023-09-28 21:42:30',NULL,280.00,'','4','1','Good sold','1','','sales','6','','No',NULL,NULL,''),(7921,'1000','41695928521','2023-09-28 22:15:22',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7922,'4000','41695928521','2023-09-28 22:15:22',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7923,'1000','41695967349','2023-09-29 09:02:30',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7924,'4000','41695967349','2023-09-29 09:02:30',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(7925,'1000','41695969577','2023-09-29 09:39:38',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7926,'4000','41695969577','2023-09-29 09:39:38',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(7927,'1000','41695973960','2023-09-29 10:52:41',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7928,'4000','41695973960','2023-09-29 10:52:41',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7929,'1000','41695994502','2023-09-29 16:35:03',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7930,'4000','41695994502','2023-09-29 16:35:03',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7931,'1000','61695996348','2023-09-29 17:05:57',450.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7932,'4000','61695996348','2023-09-29 17:05:57',NULL,250.00,'','6','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(7933,'4000','61695996348','2023-09-29 17:05:48',NULL,200.00,'','6','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(7934,'1000','61696000307','2023-09-29 18:11:49',350.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7935,'4000','61696000307','2023-09-29 18:11:49',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(7936,'1000','61696000320','2023-09-29 18:12:01',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7937,'4000','61696000320','2023-09-29 18:12:01',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7938,'1000','61696000337','2023-09-29 18:12:24',400.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7939,'4000','61696000337','2023-09-29 18:12:24',NULL,300.00,'','6','1','Good sold','1','','sales','28','','No',NULL,NULL,''),(7940,'4000','61696000337','2023-09-29 18:12:17',NULL,100.00,'','6','1','Good sold','1','','sales','26','','No',NULL,NULL,''),(7941,'1000','61696000355','2023-09-29 18:12:42',400.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7942,'4000','61696000355','2023-09-29 18:12:42',NULL,300.00,'','6','1','Good sold','1','','sales','29','','No',NULL,NULL,''),(7943,'4000','61696000355','2023-09-29 18:12:35',NULL,100.00,'','6','1','Good sold','1','','sales','24','','No',NULL,NULL,''),(7944,'1000','61696001891','2023-09-29 18:38:17',450.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7945,'4000','61696001891','2023-09-29 18:38:17',NULL,200.00,'','6','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(7946,'4000','61696001891','2023-09-29 18:38:11',NULL,250.00,'','6','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(7947,'1000','61696002303','2023-09-29 18:45:06',400.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7948,'4000','61696002303','2023-09-29 18:45:06',NULL,200.00,'','6','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(7949,'4000','61696002303','2023-09-29 18:45:03',NULL,200.00,'','6','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(7950,'1000','61696004473','2023-09-29 19:21:22',350.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7951,'4000','61696004473','2023-09-29 19:21:22',NULL,250.00,'','6','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(7952,'4000','61696004473','2023-09-29 19:21:13',NULL,100.00,'','6','1','Good sold','1','','sales','25','','No',NULL,NULL,''),(7953,'1110','61696007580','2023-09-29 20:13:01',NULL,150.00,'','6','1','Inventory sold','1','','sales','55','','No',NULL,NULL,''),(7954,'5500','61696007580','2023-09-29 20:13:00',150.00,NULL,'','6','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7955,'1000','61696007580','2023-09-29 20:13:01',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7956,'4000','61696007580','2023-09-29 20:13:01',NULL,200.00,'','6','1','Good sold','1','','sales','55','','No',NULL,NULL,''),(7957,'1000','61696011158','2023-09-29 21:12:39',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7959,'1000','61696013860','2023-09-29 21:57:42',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7960,'4000','61696013860','2023-09-29 21:57:42',NULL,200.00,'','6','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(7961,'1000','61696011158','2023-09-29 21:12:39',400.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7962,'4000','61696011158','2023-09-29 21:12:39',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7963,'4000','61696011158','2023-09-29 21:12:38',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7964,'1000','41696059453','2023-09-30 10:37:34',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7965,'4000','41696059453','2023-09-30 10:37:34',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7966,'1000','41696067422','2023-09-30 12:50:23',330.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7967,'4000','41696067422','2023-09-30 12:50:23',NULL,330.00,'','4','1','Good sold','1','','sales','30','','No',NULL,NULL,''),(7968,'1000','41696067465','2023-09-30 12:51:06',600.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7969,'4000','41696067465','2023-09-30 12:51:06',NULL,600.00,'','4','1','Good sold','1','','sales','42','','No',NULL,NULL,''),(7970,'1000','41696070794','2023-09-30 13:46:35',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7971,'4000','41696070794','2023-09-30 13:46:35',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(7972,'1000','61696081576','2023-09-30 16:46:17',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7973,'4000','61696081576','2023-09-30 16:46:17',NULL,200.00,'','6','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(7974,'1000','41696081963','2023-09-30 16:52:44',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7975,'4000','41696081963','2023-09-30 16:52:44',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(7976,'1000','61696091010','2023-09-30 19:23:31',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7977,'4000','61696091010','2023-09-30 19:23:31',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7978,'1000','61696099921','2023-09-30 21:52:02',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7979,'4000','61696099921','2023-09-30 21:52:02',NULL,200.00,'','6','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(7980,'1000','41696145068','2023-10-01 10:24:29',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7981,'4000','41696145068','2023-10-01 10:24:29',NULL,150.00,'','4','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(7982,'1000','41696157043','2023-10-01 13:44:04',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7983,'4000','41696157043','2023-10-01 13:44:04',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(7984,'1000','41696157099','2023-10-01 13:45:03',560.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7985,'4000','41696157099','2023-10-01 13:45:03',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(7986,'4000','41696157099','2023-10-01 13:44:59',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(7987,'1110','41696168254','2023-10-01 16:51:33',NULL,150.00,'','4','1','Inventory sold','1','','sales','53','','No',NULL,NULL,''),(7988,'1110','41696168254','2023-10-01 16:50:54',NULL,0.00,'','4','1','Inventory sold','1','','sales','21','','No',NULL,NULL,''),(7989,'5500','41696168254','2023-10-01 16:51:32',150.00,NULL,'','4','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(7990,'1000','41696168254','2023-10-01 16:51:33',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7991,'4000','41696168254','2023-10-01 16:51:33',NULL,200.00,'','4','1','Good sold','1','','sales','53','','No',NULL,NULL,''),(7992,'4000','41696168254','2023-10-01 16:50:54',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(7993,'1000','41696172571','2023-10-01 18:02:55',600.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7994,'4000','41696172571','2023-10-01 18:02:55',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(7995,'4000','41696172571','2023-10-01 18:02:51',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(7996,'1000','41696172585','2023-10-01 18:03:06',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7997,'4000','41696172585','2023-10-01 18:03:06',NULL,250.00,'','4','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(7998,'1000','41696174293','2023-10-01 18:31:34',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(7999,'4000','41696174293','2023-10-01 18:31:34',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8000,'1000','41696178077','2023-10-01 19:34:38',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8001,'4000','41696178077','2023-10-01 19:34:38',NULL,200.00,'','4','1','Good sold','1','','sales','16','','No',NULL,NULL,''),(8002,'1000','41696179072','2023-10-01 19:51:14',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8003,'4000','41696179072','2023-10-01 19:51:14',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8004,'1000','41696232695','2023-10-02 10:44:56',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8005,'4000','41696232695','2023-10-02 10:44:56',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8006,'1000','41696247611','2023-10-02 14:53:32',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8007,'4000','41696247611','2023-10-02 14:53:32',NULL,150.00,'','4','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(8008,'1000','61696257955','2023-10-02 17:45:56',280.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8009,'4000','61696257955','2023-10-02 17:45:56',NULL,280.00,'','6','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(8010,'1000','61696258940','2023-10-02 18:02:22',250.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8011,'4000','61696258940','2023-10-02 18:02:22',NULL,250.00,'','6','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(8012,'1000','61696265174','2023-10-02 19:46:15',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8013,'4000','61696265174','2023-10-02 19:46:15',NULL,200.00,'','6','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(8014,'1000','61696324722','2023-10-03 12:18:43',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8015,'4000','61696324722','2023-10-03 12:18:43',NULL,200.00,'','6','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(8016,'1000','41696345158','2023-10-03 17:59:27',380.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8017,'4000','41696345158','2023-10-03 17:59:27',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(8018,'4000','41696345158','2023-10-03 17:59:18',NULL,100.00,'','4','1','Good sold','1','','sales','26','','No',NULL,NULL,''),(8019,'1000','41696345175','2023-10-03 17:59:37',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8020,'4000','41696345175','2023-10-03 17:59:37',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8021,'1000','41696349339','2023-10-03 19:09:00',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8022,'4000','41696349339','2023-10-03 19:09:00',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8023,'1000','41696350202','2023-10-03 19:29:38',380.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8024,'4000','41696350202','2023-10-03 19:29:38',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(8025,'4000','41696350202','2023-10-03 19:23:22',NULL,100.00,'','4','1','Good sold','1','','sales','26','','No',NULL,NULL,''),(8026,'1000','41696350909','2023-10-03 19:35:10',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8027,'4000','41696350909','2023-10-03 19:35:10',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8028,'1000','41696357819','2023-10-03 21:30:20',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8029,'4000','41696357819','2023-10-03 21:30:20',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(8030,'1000','61696405017','2023-10-04 10:36:59',280.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8031,'4000','61696405017','2023-10-04 10:36:59',NULL,280.00,'','6','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(8032,'1000','61696405051','2023-10-04 10:37:32',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8033,'4000','61696405051','2023-10-04 10:37:32',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8034,'1000','61696429696','2023-10-04 17:28:27',1350.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8035,'4000','61696429696','2023-10-04 17:28:27',NULL,250.00,'','6','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(8036,'4000','61696429696','2023-10-04 17:28:17',NULL,250.00,'','6','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(8037,'4000','61696429696','2023-10-04 17:28:18',NULL,250.00,'','6','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(8038,'4000','61696429696','2023-10-04 17:28:19',NULL,200.00,'','6','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(8039,'4000','61696429696','2023-10-04 17:28:24',NULL,200.00,'','6','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(8040,'4000','61696429696','2023-10-04 17:28:25',NULL,200.00,'','6','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(8041,'1000','61696430435','2023-10-04 17:40:37',250.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8042,'4000','61696430435','2023-10-04 17:40:37',NULL,250.00,'','6','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(8043,'1000','61696432030','2023-10-04 18:07:11',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8045,'1000','61696432030','2023-10-04 18:07:11',400.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8046,'4000','61696432030','2023-10-04 18:07:11',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8047,'4000','61696432030','2023-10-04 18:07:10',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8048,'1000','61696497289','2023-10-05 12:14:50',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8049,'4000','61696497289','2023-10-05 12:14:50',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8050,'1000','61696505874','2023-10-05 14:37:55',280.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8051,'4000','61696505874','2023-10-05 14:37:55',NULL,280.00,'','6','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(8052,'1000','61696508702','2023-10-05 15:25:03',280.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8053,'4000','61696508702','2023-10-05 15:25:03',NULL,280.00,'','6','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(8054,'1000','61696508740','2023-10-05 15:25:42',700.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8055,'4000','61696508740','2023-10-05 15:25:42',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8056,'4000','61696508740','2023-10-05 15:25:40',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8057,'1000','61696510081','2023-10-05 15:48:02',600.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8058,'4000','61696510081','2023-10-05 15:48:02',NULL,600.00,'','6','1','Good sold','1','','sales','40','','No',NULL,NULL,''),(8059,'1000','41696511675','2023-10-05 16:14:36',100.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8060,'4000','41696511675','2023-10-05 16:14:36',NULL,100.00,'','4','1','Good sold','1','','sales','26','','No',NULL,NULL,''),(8061,'1000','41696519286','2023-10-05 18:21:28',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8062,'4000','41696519286','2023-10-05 18:21:28',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(8063,'1000','41696526795','2023-10-05 20:26:37',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8064,'4000','41696526795','2023-10-05 20:26:37',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8065,'1000','41696530987','2023-10-05 21:36:28',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8066,'4000','41696530987','2023-10-05 21:36:28',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8067,'1000','41696532805','2023-10-05 22:06:46',600.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8068,'4000','41696532805','2023-10-05 22:06:46',NULL,600.00,'','4','1','Good sold','1','','sales','40','','No',NULL,NULL,''),(8069,'1000','61696577991','2023-10-06 10:39:53',560.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8070,'4000','61696577991','2023-10-06 10:39:53',NULL,280.00,'','6','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(8071,'4000','61696577991','2023-10-06 10:39:51',NULL,280.00,'','6','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(8072,'1000','61696578011','2023-10-06 10:40:18',450.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8073,'4000','61696578011','2023-10-06 10:40:18',NULL,250.00,'','6','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(8074,'4000','61696578011','2023-10-06 10:40:11',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8075,'1110','61696579968','2023-10-06 11:12:49',NULL,650.00,'','6','1','Inventory sold','1','','sales','50','','No',NULL,NULL,''),(8076,'5500','61696579968','2023-10-06 11:12:48',650.00,NULL,'','6','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8077,'1000','61696579968','2023-10-06 11:12:49',800.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8078,'4000','61696579968','2023-10-06 11:12:49',NULL,800.00,'','6','1','Good sold','1','','sales','50','','No',NULL,NULL,''),(8079,'1000','61696601639','2023-10-06 17:14:00',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8080,'4000','61696601639','2023-10-06 17:14:00',NULL,200.00,'','6','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(8081,'1000','41696604333','2023-10-06 17:58:54',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8082,'4000','41696604333','2023-10-06 17:58:54',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8083,'1000','41696607519','2023-10-06 18:52:00',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8084,'4000','41696607519','2023-10-06 18:52:00',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8085,'1110','41696611604','2023-10-06 20:00:05',NULL,150.00,'','4','1','Inventory sold','1','','sales','53','','No',NULL,NULL,''),(8086,'5500','41696611604','2023-10-06 20:00:04',150.00,NULL,'','4','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8087,'1000','41696611604','2023-10-06 20:00:05',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8088,'4000','41696611604','2023-10-06 20:00:05',NULL,200.00,'','4','1','Good sold','1','','sales','53','','No',NULL,NULL,''),(8089,'1000','41696612650','2023-10-06 20:17:31',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8090,'4000','41696612650','2023-10-06 20:17:31',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8091,'1000','41696617557','2023-10-06 21:39:18',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8092,'4000','41696617557','2023-10-06 21:39:18',NULL,150.00,'','4','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(8093,'1000','41696619742','2023-10-06 22:15:44',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8094,'4000','41696619742','2023-10-06 22:15:44',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8095,'1000','61696666799','2023-10-07 11:20:01',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8096,'4000','61696666799','2023-10-07 11:20:01',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8097,'1000','61696668164','2023-10-07 11:42:58',730.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8098,'4000','61696668164','2023-10-07 11:42:58',NULL,250.00,'','6','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(8099,'4000','61696668164','2023-10-07 11:42:44',NULL,280.00,'','6','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(8100,'4000','61696668164','2023-10-07 11:42:48',NULL,100.00,'','6','1','Good sold','1','','sales','25','','No',NULL,NULL,''),(8101,'4000','61696668164','2023-10-07 11:42:55',NULL,100.00,'','6','1','Good sold','1','','sales','24','','No',NULL,NULL,''),(8102,'1000','61696683495','2023-10-07 15:58:16',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8103,'4000','61696683495','2023-10-07 15:58:16',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8104,'1000','61696690172','2023-10-07 17:49:39',400.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8105,'4000','61696690172','2023-10-07 17:49:39',NULL,300.00,'','6','1','Good sold','1','','sales','29','','No',NULL,NULL,''),(8106,'4000','61696690172','2023-10-07 17:49:32',NULL,100.00,'','6','1','Good sold','1','','sales','24','','No',NULL,NULL,''),(8107,'1000','41696691992','2023-10-07 18:19:56',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8108,'4000','41696691992','2023-10-07 18:19:56',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(8109,'4000','41696691992','2023-10-07 18:19:52',NULL,150.00,'','4','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(8110,'1000','41696693964','2023-10-07 18:52:45',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8111,'4000','41696693964','2023-10-07 18:52:45',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(8112,'1000','41696697439','2023-10-07 19:50:41',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8113,'4000','41696697439','2023-10-07 19:50:41',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(8114,'1000','41696703928','2023-10-07 21:38:50',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8115,'4000','41696703928','2023-10-07 21:38:50',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8116,'1000','41696834871','2023-10-09 10:01:12',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8117,'4000','41696834871','2023-10-09 10:01:12',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(8118,'1000','41696834962','2023-10-09 10:02:43',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8119,'4000','41696834962','2023-10-09 10:02:43',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(8120,'1000','41696835844','2023-10-09 10:17:38',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8121,'4000','41696835844','2023-10-09 10:17:38',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8122,'4000','41696835844','2023-10-09 10:17:24',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8123,'1000','41696848155','2023-10-09 13:43:00',480.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8124,'4000','41696848155','2023-10-09 13:43:00',NULL,200.00,'','4','1','Good sold','1','','sales','9','','No',NULL,NULL,''),(8125,'4000','41696848155','2023-10-09 13:42:35',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(8126,'1000','41696848335','2023-10-09 13:45:44',430.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8127,'4000','41696848335','2023-10-09 13:45:44',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(8128,'4000','41696848335','2023-10-09 13:45:35',NULL,150.00,'','4','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(8129,'1000','61696866124','2023-10-09 18:42:06',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8130,'4000','61696866124','2023-10-09 18:42:06',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8131,'1000','61696866776','2023-10-09 18:52:58',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8132,'4000','61696866776','2023-10-09 18:52:58',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8133,'1000','61696867637','2023-10-09 19:07:18',350.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8134,'4000','61696867637','2023-10-09 19:07:18',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8135,'1000','41696923824','2023-10-10 10:43:46',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8136,'4000','41696923824','2023-10-10 10:43:46',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8137,'1000','41696923842','2023-10-10 10:44:03',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8138,'4000','41696923842','2023-10-10 10:44:03',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8139,'1000','41696923921','2023-10-10 10:45:22',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8140,'4000','41696923921','2023-10-10 10:45:22',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(8141,'1000','41696926003','2023-10-10 11:20:15',680.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8142,'4000','41696926003','2023-10-10 11:20:15',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(8143,'4000','41696926003','2023-10-10 11:20:03',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(8144,'4000','41696926003','2023-10-10 11:20:10',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(8145,'1000','41696942848','2023-10-10 16:00:50',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8146,'4000','41696942848','2023-10-10 16:00:50',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8147,'1000','61696964366','2023-10-10 21:59:27',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8148,'4000','61696964366','2023-10-10 21:59:27',NULL,200.00,'','6','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(8149,'1000','61697021853','2023-10-11 13:57:35',350.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8150,'4000','61697021853','2023-10-11 13:57:35',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8151,'1000','61697024621','2023-10-11 14:43:43',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8152,'4000','61697024621','2023-10-11 14:43:43',NULL,200.00,'','6','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(8153,'1000','61697032212','2023-10-11 16:50:16',530.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8154,'4000','61697032212','2023-10-11 16:50:16',NULL,250.00,'','6','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(8155,'4000','61697032212','2023-10-11 16:50:12',NULL,280.00,'','6','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(8156,'1000','61697039656','2023-10-11 18:54:17',350.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8157,'4000','61697039656','2023-10-11 18:54:17',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8158,'1000','61697039681','2023-10-11 18:54:42',150.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8159,'4000','61697039681','2023-10-11 18:54:42',NULL,150.00,'','6','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(8160,'1000','61697042705','2023-10-11 19:45:06',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8161,'4000','61697042705','2023-10-11 19:45:06',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8162,'1000','61697042718','2023-10-11 19:45:19',300.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8163,'4000','61697042718','2023-10-11 19:45:19',NULL,300.00,'','6','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(8164,'1000','61697100150','2023-10-12 11:42:32',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8165,'4000','61697100150','2023-10-12 11:42:32',NULL,200.00,'','6','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(8166,'1000','61697102937','2023-10-12 12:29:03',400.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8167,'4000','61697102937','2023-10-12 12:29:03',NULL,300.00,'','6','1','Good sold','1','','sales','29','','No',NULL,NULL,''),(8168,'4000','61697102937','2023-10-12 12:28:57',NULL,100.00,'','6','1','Good sold','1','','sales','24','','No',NULL,NULL,''),(8169,'1000','61697105777','2023-10-12 13:16:28',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8170,'4000','61697105777','2023-10-12 13:16:28',NULL,200.00,'','6','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(8171,'1000','61697115058','2023-10-12 15:50:59',250.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8172,'4000','61697115058','2023-10-12 15:50:59',NULL,250.00,'','6','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(8173,'1000','61697119607','2023-10-12 17:06:48',280.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8174,'4000','61697119607','2023-10-12 17:06:48',NULL,280.00,'','6','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(8175,'1000','61697119617','2023-10-12 17:06:58',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8176,'4000','61697119617','2023-10-12 17:06:58',NULL,200.00,'','6','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(8177,'1000','41697134195','2023-10-12 21:10:31',1240.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8178,'4000','41697134195','2023-10-12 21:10:31',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(8179,'4000','41697134195','2023-10-12 21:09:55',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(8180,'4000','41697134195','2023-10-12 21:09:58',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(8181,'4000','41697134195','2023-10-12 21:10:11',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(8182,'4000','41697134195','2023-10-12 21:10:26',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(8183,'1000','41697135660','2023-10-12 21:34:21',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8184,'4000','41697135660','2023-10-12 21:34:21',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(8185,'1110','41697135697','2023-10-12 21:34:58',NULL,150.00,'','4','1','Inventory sold','1','','sales','53','','No',NULL,NULL,''),(8186,'5500','41697135697','2023-10-12 21:34:57',150.00,NULL,'','4','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8187,'1000','41697135697','2023-10-12 21:34:58',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8188,'4000','41697135697','2023-10-12 21:34:58',NULL,200.00,'','4','1','Good sold','1','','sales','53','','No',NULL,NULL,''),(8189,'1000','41697178399','2023-10-13 09:26:43',600.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8190,'4000','41697178399','2023-10-13 09:26:43',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(8191,'4000','41697178399','2023-10-13 09:26:39',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(8192,'1000','41697181933','2023-10-13 10:25:34',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8193,'4000','41697181933','2023-10-13 10:25:34',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(8194,'1000','41697182232','2023-10-13 10:30:33',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8195,'4000','41697182232','2023-10-13 10:30:33',NULL,300.00,'','4','1','Good sold','1','','sales','28','','No',NULL,NULL,''),(8196,'1000','41697182326','2023-10-13 10:32:07',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8197,'4000','41697182326','2023-10-13 10:32:07',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(8198,'1000','41697182985','2023-10-13 10:43:50',550.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8199,'4000','41697182985','2023-10-13 10:43:50',NULL,350.00,'','4','1','Good sold','1','','sales','54','','No',NULL,NULL,''),(8200,'4000','41697182985','2023-10-13 10:43:05',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(8201,'1000','41697195250','2023-10-13 14:07:31',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8202,'4000','41697195250','2023-10-13 14:07:31',NULL,200.00,'','4','1','Good sold','1','','sales','16','','No',NULL,NULL,''),(8203,'1000','41697195344','2023-10-13 14:09:05',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8204,'4000','41697195344','2023-10-13 14:09:05',NULL,280.00,'','4','1','Good sold','1','','sales','13','','No',NULL,NULL,''),(8205,'1000','61697208486','2023-10-13 17:48:07',280.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8206,'4000','61697208486','2023-10-13 17:48:07',NULL,280.00,'','6','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(8207,'1000','41697268028','2023-10-14 10:20:29',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8208,'4000','41697268028','2023-10-14 10:20:29',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8209,'1000','61697300589','2023-10-14 19:23:11',280.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8210,'4000','61697300589','2023-10-14 19:23:11',NULL,280.00,'','6','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(8211,'1000','61697308661','2023-10-14 21:37:42',350.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8212,'4000','61697308661','2023-10-14 21:37:42',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8213,'1000','61697311091','2023-10-14 22:18:12',300.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8214,'4000','61697311091','2023-10-14 22:18:12',NULL,300.00,'','6','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(8215,'1000','61697312050','2023-10-14 22:34:11',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8216,'4000','61697312050','2023-10-14 22:34:11',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8217,'1000','41697354081','2023-10-15 10:14:42',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8218,'4000','41697354081','2023-10-15 10:14:42',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(8219,'1000','41697354115','2023-10-15 10:15:16',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8220,'4000','41697354115','2023-10-15 10:15:16',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(8221,'1000','41697354864','2023-10-15 10:27:45',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8222,'4000','41697354864','2023-10-15 10:27:45',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(8223,'1000','41697364197','2023-10-15 13:03:33',1150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8224,'4000','41697364197','2023-10-15 13:03:33',NULL,250.00,'','4','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(8225,'4000','41697364197','2023-10-15 13:03:17',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8226,'4000','41697364197','2023-10-15 13:03:24',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8227,'4000','41697364197','2023-10-15 13:03:30',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8228,'1000','41697368467','2023-10-15 14:14:28',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8229,'4000','41697368467','2023-10-15 14:14:28',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8230,'1000','41697388642','2023-10-15 19:51:01',600.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8231,'4000','41697388642','2023-10-15 19:51:01',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8232,'4000','41697388642','2023-10-15 19:50:42',NULL,0.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8233,'4000','41697388642','2023-10-15 19:50:55',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8234,'4000','41697388642','2023-10-15 19:50:58',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8235,'1000','41697389334','2023-10-15 20:02:15',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8236,'4000','41697389334','2023-10-15 20:02:15',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8237,'1000','41697391682','2023-10-15 20:41:24',330.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8238,'4000','41697391682','2023-10-15 20:41:24',NULL,330.00,'','4','1','Good sold','1','','sales','30','','No',NULL,NULL,''),(8239,'1000','41697435766','2023-10-16 08:56:07',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8240,'4000','41697435766','2023-10-16 08:56:07',NULL,350.00,'','4','1','Good sold','1','','sales','54','','No',NULL,NULL,''),(8241,'1000','41697436640','2023-10-16 09:10:41',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8242,'4000','41697436640','2023-10-16 09:10:41',NULL,250.00,'','4','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(8243,'1000','41697436656','2023-10-16 09:10:59',500.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8244,'4000','41697436656','2023-10-16 09:10:59',NULL,250.00,'','4','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(8245,'4000','41697436656','2023-10-16 09:10:56',NULL,250.00,'','4','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(8246,'1000','41697440719','2023-10-16 10:18:40',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8247,'4000','41697440719','2023-10-16 10:18:40',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8248,'1000','41697456128','2023-10-16 14:35:30',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8249,'4000','41697456128','2023-10-16 14:35:30',NULL,280.00,'','4','1','Good sold','1','','sales','13','','No',NULL,NULL,''),(8250,'1000','41697463814','2023-10-16 16:43:35',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8251,'4000','41697463814','2023-10-16 16:43:35',NULL,200.00,'','4','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(8252,'1000','61697467339','2023-10-16 17:42:32',480.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8253,'4000','61697467339','2023-10-16 17:42:32',NULL,200.00,'','6','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(8254,'4000','61697467339','2023-10-16 17:42:19',NULL,280.00,'','6','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(8255,'1000','61697480349','2023-10-16 21:19:10',250.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8256,'4000','61697480349','2023-10-16 21:19:10',NULL,250.00,'','6','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(8257,'1000','61697527503','2023-10-17 10:25:04',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8258,'4000','61697527503','2023-10-17 10:25:04',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8259,'1000','61697527717','2023-10-17 10:28:47',450.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8260,'4000','61697527717','2023-10-17 10:28:47',NULL,250.00,'','6','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(8261,'4000','61697527717','2023-10-17 10:28:37',NULL,200.00,'','6','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(8262,'1000','61697535277','2023-10-17 12:34:38',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8263,'4000','61697535277','2023-10-17 12:34:38',NULL,200.00,'','6','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(8264,'1000','61697551519','2023-10-17 17:05:21',250.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8265,'4000','61697551519','2023-10-17 17:05:21',NULL,250.00,'','6','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(8266,'1000','61697551532','2023-10-17 17:05:35',400.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8267,'4000','61697551532','2023-10-17 17:05:35',NULL,200.00,'','6','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(8268,'4000','61697551532','2023-10-17 17:05:32',NULL,200.00,'','6','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(8269,'1000','61697551551','2023-10-17 17:05:53',280.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8270,'4000','61697551551','2023-10-17 17:05:53',NULL,280.00,'','6','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(8271,'1000','41697560842','2023-10-17 19:40:44',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8272,'4000','41697560842','2023-10-17 19:40:44',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(8273,'1000','41697561352','2023-10-17 19:49:13',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8274,'4000','41697561352','2023-10-17 19:49:13',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(8275,'1000','41697562147','2023-10-17 20:02:29',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8276,'4000','41697562147','2023-10-17 20:02:29',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(8277,'1000','41697568193','2023-10-17 21:43:15',330.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8278,'4000','41697568193','2023-10-17 21:43:15',NULL,330.00,'','4','1','Good sold','1','','sales','30','','No',NULL,NULL,''),(8279,'1000','41698592217','2023-10-29 18:10:18',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8280,'4000','41698592217','2023-10-29 18:10:18',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(8281,'1000','41698598995','2023-10-29 20:03:17',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8282,'4000','41698598995','2023-10-29 20:03:17',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(8283,'1000','41698653063','2023-10-30 11:04:24',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8285,'1000','41698653063','2023-10-30 11:04:24',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8286,'4000','41698653063','2023-10-30 11:04:24',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(8287,'1000','41698653138','2023-10-30 11:05:39',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8288,'4000','41698653138','2023-10-30 11:05:39',NULL,250.00,'','4','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(8289,'1000','41698653153','2023-10-30 11:05:55',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8290,'4000','41698653153','2023-10-30 11:05:55',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(8291,'1000','41698662961','2023-10-30 13:49:22',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8292,'4000','41698662961','2023-10-30 13:49:22',NULL,250.00,'','4','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(8293,'1000','61698678205','2023-10-30 18:03:26',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8294,'4000','61698678205','2023-10-30 18:03:26',NULL,200.00,'','6','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(8295,'1000','61698680932','2023-10-30 18:48:54',350.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8296,'4000','61698680932','2023-10-30 18:48:54',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8297,'1000','61698680943','2023-10-30 18:49:05',250.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8298,'4000','61698680943','2023-10-30 18:49:05',NULL,250.00,'','6','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(8299,'1000','61698680958','2023-10-30 18:49:19',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8300,'4000','61698680958','2023-10-30 18:49:19',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8301,'1000','61698682270','2023-10-30 19:11:11',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8302,'4000','61698682270','2023-10-30 19:11:11',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8303,'1000','61698685558','2023-10-30 20:06:13',800.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8304,'4000','61698685558','2023-10-30 20:06:13',NULL,300.00,'','6','1','Good sold','1','','sales','29','','No',NULL,NULL,''),(8305,'4000','61698685558','2023-10-30 20:05:58',NULL,300.00,'','6','1','Good sold','1','','sales','29','','No',NULL,NULL,''),(8306,'4000','61698685558','2023-10-30 20:06:01',NULL,100.00,'','6','1','Good sold','1','','sales','24','','No',NULL,NULL,''),(8307,'4000','61698685558','2023-10-30 20:06:09',NULL,100.00,'','6','1','Good sold','1','','sales','24','','No',NULL,NULL,''),(8308,'1000','61698689478','2023-10-30 21:11:20',350.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8309,'4000','61698689478','2023-10-30 21:11:20',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8310,'1000','61698734771','2023-10-31 09:46:12',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8311,'4000','61698734771','2023-10-31 09:46:12',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8312,'1000','61698736467','2023-10-31 10:14:29',250.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8313,'4000','61698736467','2023-10-31 10:14:29',NULL,250.00,'','6','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(8314,'1000','61698747865','2023-10-31 13:24:27',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8315,'4000','61698747865','2023-10-31 13:24:27',NULL,200.00,'','6','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(8316,'1000','41698760354','2023-10-31 16:52:37',700.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8317,'4000','41698760354','2023-10-31 16:52:37',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8318,'4000','41698760354','2023-10-31 16:52:34',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8319,'1000','61698761856','2023-10-31 17:17:38',280.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8320,'4000','61698761856','2023-10-31 17:17:38',NULL,280.00,'','6','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(8321,'1000','61698762896','2023-10-31 17:34:57',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8322,'4000','61698762896','2023-10-31 17:34:57',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8323,'1000','41698762998','2023-10-31 17:36:44',480.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8324,'4000','41698762998','2023-10-31 17:36:44',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(8325,'4000','41698762998','2023-10-31 17:36:38',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(8326,'1000','41698775953','2023-10-31 21:12:35',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8327,'4000','41698775953','2023-10-31 21:12:35',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8328,'1000','61698777127','2023-10-31 21:32:08',280.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8329,'4000','61698777127','2023-10-31 21:32:08',NULL,280.00,'','6','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(8330,'1000','61698821812','2023-11-01 09:56:56',580.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8331,'4000','61698821812','2023-11-01 09:56:56',NULL,280.00,'','6','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(8332,'4000','61698821812','2023-11-01 09:56:52',NULL,300.00,'','6','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(8333,'1000','61698821841','2023-11-01 09:57:22',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8334,'4000','61698821841','2023-11-01 09:57:22',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8335,'1000','61698823532','2023-11-01 10:25:33',280.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8336,'4000','61698823532','2023-11-01 10:25:33',NULL,280.00,'','6','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(8337,'1000','61698826871','2023-11-01 11:21:12',280.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8338,'4000','61698826871','2023-11-01 11:21:12',NULL,280.00,'','6','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(8339,'1000','61698837979','2023-11-01 14:26:20',350.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8340,'4000','61698837979','2023-11-01 14:26:20',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8341,'1000','61698846245','2023-11-01 16:44:06',350.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8342,'4000','61698846245','2023-11-01 16:44:06',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8343,'1000','61698848261','2023-11-01 17:17:47',630.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8344,'4000','61698848261','2023-11-01 17:17:47',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8345,'4000','61698848261','2023-11-01 17:17:41',NULL,280.00,'','6','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(8346,'1000','61698857144','2023-11-01 19:45:45',300.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8347,'4000','61698857144','2023-11-01 19:45:45',NULL,300.00,'','6','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(8348,'1000','61698867340','2023-11-01 22:35:44',400.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8349,'4000','61698867340','2023-11-01 22:35:44',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8350,'4000','61698867340','2023-11-01 22:35:40',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8351,'1000','61698867352','2023-11-01 22:36:02',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8352,'4000','61698867352','2023-11-01 22:36:02',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8353,'1000','41698943245','2023-11-02 19:40:47',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8354,'4000','41698943245','2023-11-02 19:40:47',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8355,'1000','41698946005','2023-11-02 20:26:46',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8356,'4000','41698946005','2023-11-02 20:26:46',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(8357,'1000','41698947500','2023-11-02 20:51:41',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8358,'4000','41698947500','2023-11-02 20:51:41',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(8359,'1000','41698947523','2023-11-02 20:52:04',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8360,'4000','41698947523','2023-11-02 20:52:04',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8361,'1000','41698948447','2023-11-02 21:07:29',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8362,'4000','41698948447','2023-11-02 21:07:29',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(8363,'1000','41698950414','2023-11-02 21:40:16',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8364,'4000','41698950414','2023-11-02 21:40:16',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(8365,'1000','41698951148','2023-11-02 21:52:29',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8366,'4000','41698951148','2023-11-02 21:52:29',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(8367,'1000','61698997698','2023-11-03 10:48:19',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8368,'4000','61698997698','2023-11-03 10:48:19',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''); INSERT INTO `debitcredit` VALUES (8369,'1000','61698997707','2023-11-03 10:48:28',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8370,'4000','61698997707','2023-11-03 10:48:28',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8371,'1000','61698997716','2023-11-03 10:48:37',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8372,'4000','61698997716','2023-11-03 10:48:37',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8373,'1000','61699006049','2023-11-03 13:07:30',350.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8374,'4000','61699006049','2023-11-03 13:07:30',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8375,'1000','61699010826','2023-11-03 14:27:07',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8376,'4000','61699010826','2023-11-03 14:27:07',NULL,200.00,'','6','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(8377,'1000','41699015273','2023-11-03 15:41:14',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8378,'4000','41699015273','2023-11-03 15:41:14',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(8379,'1110','61699019293','2023-11-03 16:48:15',NULL,70.00,'','6','1','Inventory sold','1','','sales','60','','No',NULL,NULL,''),(8380,'5500','61699019293','2023-11-03 16:48:13',70.00,NULL,'','6','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8381,'1000','61699019293','2023-11-03 16:48:15',100.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8382,'4000','61699019293','2023-11-03 16:48:15',NULL,100.00,'','6','1','Good sold','1','','sales','60','','No',NULL,NULL,''),(8383,'1000','41699020031','2023-11-03 17:00:32',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8384,'4000','41699020031','2023-11-03 17:00:32',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(8385,'1000','41699021166','2023-11-03 17:19:28',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8386,'4000','41699021166','2023-11-03 17:19:28',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(8387,'1000','41699024339','2023-11-03 18:12:20',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8388,'4000','41699024339','2023-11-03 18:12:20',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8389,'1000','41699026371','2023-11-03 18:46:12',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8390,'4000','41699026371','2023-11-03 18:46:12',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(8391,'1000','41699036814','2023-11-03 21:40:16',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8392,'4000','41699036814','2023-11-03 21:40:16',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8393,'1000','61699088612','2023-11-04 12:03:35',400.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8394,'4000','61699088612','2023-11-04 12:03:35',NULL,200.00,'','6','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(8395,'4000','61699088612','2023-11-04 12:03:32',NULL,200.00,'','6','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(8396,'1000','61699088622','2023-11-04 12:03:43',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8397,'4000','61699088622','2023-11-04 12:03:43',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8398,'1000','61699093524','2023-11-04 13:25:25',300.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8399,'4000','61699093524','2023-11-04 13:25:25',NULL,300.00,'','6','1','Good sold','1','','sales','28','','No',NULL,NULL,''),(8400,'1000','61699095848','2023-11-04 14:04:09',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8401,'4000','61699095848','2023-11-04 14:04:09',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8402,'1000','61699095859','2023-11-04 14:04:20',250.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8403,'4000','61699095859','2023-11-04 14:04:20',NULL,250.00,'','6','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(8404,'1000','61699099234','2023-11-04 15:00:36',500.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8405,'4000','61699099234','2023-11-04 15:00:36',NULL,250.00,'','6','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(8406,'4000','61699099234','2023-11-04 15:00:34',NULL,250.00,'','6','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(8407,'1000','41699101645','2023-11-04 15:40:46',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8408,'4000','41699101645','2023-11-04 15:40:46',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8409,'1000','41699115345','2023-11-04 19:29:06',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8410,'4000','41699115345','2023-11-04 19:29:06',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8411,'1000','41699115741','2023-11-04 19:35:42',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8412,'4000','41699115741','2023-11-04 19:35:42',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(8413,'1000','41699121849','2023-11-04 21:17:30',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8414,'4000','41699121849','2023-11-04 21:17:30',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8415,'1000','41699122706','2023-11-04 21:31:47',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8416,'4000','41699122706','2023-11-04 21:31:47',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8417,'1000','41699181358','2023-11-05 13:49:24',700.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8418,'4000','41699181358','2023-11-05 13:49:24',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8419,'4000','41699181358','2023-11-05 13:49:18',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8420,'1000','41699186062','2023-11-05 15:07:43',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8421,'4000','41699186062','2023-11-05 15:07:43',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(8422,'1000','41699198576','2023-11-05 18:36:20',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8423,'4000','41699198576','2023-11-05 18:36:20',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(8424,'4000','41699198576','2023-11-05 18:36:17',NULL,150.00,'','4','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(8425,'1000','41699200540','2023-11-05 19:09:01',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8426,'4000','41699200540','2023-11-05 19:09:01',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8427,'1000','41699203180','2023-11-05 19:53:01',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8428,'4000','41699203180','2023-11-05 19:53:01',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(8429,'1000','41699204941','2023-11-05 20:22:22',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8430,'4000','41699204941','2023-11-05 20:22:22',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8431,'1000','41699205069','2023-11-05 20:24:30',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8432,'4000','41699205069','2023-11-05 20:24:30',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(8433,'1000','41699208338','2023-11-05 21:19:09',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8434,'4000','41699208338','2023-11-05 21:19:09',NULL,250.00,'','4','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(8435,'4000','41699208338','2023-11-05 21:18:58',NULL,100.00,'','4','1','Good sold','1','','sales','26','','No',NULL,NULL,''),(8436,'1000','41699267876','2023-11-06 13:51:17',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8437,'4000','41699267876','2023-11-06 13:51:17',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(8438,'1000','41699274429','2023-11-06 15:40:32',560.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8439,'4000','41699274429','2023-11-06 15:40:32',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(8440,'4000','41699274429','2023-11-06 15:40:29',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(8441,'1000','41699279300','2023-11-06 17:01:41',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8442,'4000','41699279300','2023-11-06 17:01:41',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(8443,'1000','61699282141','2023-11-06 17:49:02',280.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8444,'4000','61699282141','2023-11-06 17:49:02',NULL,280.00,'','6','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(8445,'1000','61699290328','2023-11-06 20:05:30',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8446,'4000','61699290328','2023-11-06 20:05:30',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8447,'1000','61699290337','2023-11-06 20:05:40',400.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8448,'4000','61699290337','2023-11-06 20:05:40',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8449,'4000','61699290337','2023-11-06 20:05:37',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8450,'1000','61699290672','2023-11-06 20:11:13',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8451,'4000','61699290672','2023-11-06 20:11:13',NULL,200.00,'','6','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(8452,'1000','61699290691','2023-11-06 20:11:32',350.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8453,'4000','61699290691','2023-11-06 20:11:32',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8454,'1000','61699290701','2023-11-06 20:11:42',280.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8455,'4000','61699290701','2023-11-06 20:11:42',NULL,280.00,'','6','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(8456,'1000','41699344255','2023-11-07 11:04:16',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8457,'4000','41699344255','2023-11-07 11:04:16',NULL,250.00,'','4','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(8458,'1000','41699345335','2023-11-07 11:22:19',480.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8459,'4000','41699345335','2023-11-07 11:22:19',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(8460,'4000','41699345335','2023-11-07 11:22:15',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(8461,'1000','41699352064','2023-11-07 13:14:25',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8462,'4000','41699352064','2023-11-07 13:14:25',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8463,'1000','41699356823','2023-11-07 14:33:51',630.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8464,'4000','41699356823','2023-11-07 14:33:51',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8465,'4000','41699356823','2023-11-07 14:33:43',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(8466,'1000','41699364209','2023-11-07 16:36:51',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8467,'4000','41699364209','2023-11-07 16:36:51',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(8468,'1000','61699368639','2023-11-07 17:50:40',300.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8469,'4000','61699368639','2023-11-07 17:50:40',NULL,300.00,'','6','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(8470,'1000','61699369997','2023-11-07 18:13:18',350.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8471,'4000','61699369997','2023-11-07 18:13:18',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8472,'1000','61699375093','2023-11-07 19:38:15',700.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8473,'4000','61699375093','2023-11-07 19:38:15',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8474,'4000','61699375093','2023-11-07 19:38:13',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8475,'1000','61699377279','2023-11-07 20:14:40',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8476,'4000','61699377279','2023-11-07 20:14:40',NULL,200.00,'','6','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(8477,'1000','61699377287','2023-11-07 20:14:49',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8478,'4000','61699377287','2023-11-07 20:14:49',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8479,'1000','61699377368','2023-11-07 20:16:09',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8480,'4000','61699377368','2023-11-07 20:16:09',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8481,'1000','61699378066','2023-11-07 20:27:47',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8482,'4000','61699378066','2023-11-07 20:27:47',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8483,'1000','61699380238','2023-11-07 21:03:59',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8484,'4000','61699380238','2023-11-07 21:03:59',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8485,'1000','61699381289','2023-11-07 21:21:30',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8486,'4000','61699381289','2023-11-07 21:21:30',NULL,200.00,'','6','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(8487,'1000','41699434646','2023-11-08 12:10:47',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8488,'4000','41699434646','2023-11-08 12:10:47',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(8489,'1000','41699442934','2023-11-08 14:29:16',680.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8490,'4000','41699442934','2023-11-08 14:29:16',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(8491,'4000','41699442934','2023-11-08 14:28:54',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(8492,'4000','41699442934','2023-11-08 14:28:59',NULL,100.00,'','4','1','Good sold','1','','sales','26','','No',NULL,NULL,''),(8493,'4000','41699442934','2023-11-08 14:29:09',NULL,100.00,'','4','1','Good sold','1','','sales','26','','No',NULL,NULL,''),(8494,'1000','41699445855','2023-11-08 15:17:41',500.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8495,'4000','41699445855','2023-11-08 15:17:41',NULL,250.00,'','4','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(8496,'4000','41699445855','2023-11-08 15:17:35',NULL,250.00,'','4','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(8497,'1000','41699448795','2023-11-08 16:06:36',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8498,'4000','41699448795','2023-11-08 16:06:36',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(8499,'1110','41699450205','2023-11-08 16:30:06',NULL,150.00,'','4','1','Inventory sold','1','','sales','53','','No',NULL,NULL,''),(8500,'5500','41699450205','2023-11-08 16:30:05',150.00,NULL,'','4','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8501,'1000','41699450205','2023-11-08 16:30:06',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8502,'4000','41699450205','2023-11-08 16:30:06',NULL,200.00,'','4','1','Good sold','1','','sales','53','','No',NULL,NULL,''),(8503,'1000','41699451090','2023-11-08 16:44:52',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8504,'4000','41699451090','2023-11-08 16:44:52',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8505,'1000','41699452178','2023-11-08 17:02:59',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8506,'4000','41699452178','2023-11-08 17:02:59',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8507,'1000','41699452574','2023-11-08 17:09:35',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8508,'4000','41699452574','2023-11-08 17:09:35',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(8509,'1000','41699456956','2023-11-08 18:22:37',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8510,'4000','41699456956','2023-11-08 18:22:37',NULL,200.00,'','4','1','Good sold','1','','sales','16','','No',NULL,NULL,''),(8511,'1000','41699457771','2023-11-08 18:36:12',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8512,'4000','41699457771','2023-11-08 18:36:12',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8513,'1000','41699460277','2023-11-08 19:18:03',630.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8514,'4000','41699460277','2023-11-08 19:18:03',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(8515,'4000','41699460277','2023-11-08 19:17:57',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8516,'1000','41699460335','2023-11-08 19:18:56',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8517,'4000','41699460335','2023-11-08 19:18:56',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8518,'1000','41699464867','2023-11-08 20:34:28',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8519,'4000','41699464867','2023-11-08 20:34:28',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8520,'1000','41699464915','2023-11-08 20:35:16',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8521,'4000','41699464915','2023-11-08 20:35:16',NULL,250.00,'','4','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(8522,'1000','41699465163','2023-11-08 20:39:24',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8523,'4000','41699465163','2023-11-08 20:39:24',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8524,'1000','41699513981','2023-11-09 10:13:07',380.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8525,'4000','41699513981','2023-11-09 10:13:07',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(8526,'4000','41699513981','2023-11-09 10:13:01',NULL,100.00,'','4','1','Good sold','1','','sales','25','','No',NULL,NULL,''),(8527,'1000','41699513998','2023-11-09 10:13:32',580.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8528,'4000','41699513998','2023-11-09 10:13:32',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(8529,'4000','41699513998','2023-11-09 10:13:18',NULL,100.00,'','4','1','Good sold','1','','sales','25','','No',NULL,NULL,''),(8530,'4000','41699513998','2023-11-09 10:13:23',NULL,200.00,'','4','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(8531,'1000','41699514027','2023-11-09 10:13:48',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8532,'4000','41699514027','2023-11-09 10:13:48',NULL,350.00,'','4','1','Good sold','1','','sales','54','','No',NULL,NULL,''),(8533,'1000','41699515844','2023-11-09 10:44:05',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8534,'4000','41699515844','2023-11-09 10:44:05',NULL,150.00,'','4','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(8535,'1000','41699523504','2023-11-09 12:51:45',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8536,'4000','41699523504','2023-11-09 12:51:45',NULL,250.00,'','4','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(8537,'1000','41699525007','2023-11-09 13:16:48',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8538,'4000','41699525007','2023-11-09 13:16:48',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(8539,'1000','41699535614','2023-11-09 16:13:43',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8540,'4000','41699535614','2023-11-09 16:13:43',NULL,280.00,'','4','1','Good sold','1','','sales','13','','No',NULL,NULL,''),(8541,'1000','41699537185','2023-11-09 16:39:46',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8542,'4000','41699537185','2023-11-09 16:39:46',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8543,'1000','41699540618','2023-11-09 17:36:59',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8544,'4000','41699540618','2023-11-09 17:36:59',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8545,'1000','41699541737','2023-11-09 17:55:48',560.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8546,'4000','41699541737','2023-11-09 17:55:48',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(8547,'4000','41699541737','2023-11-09 17:55:39',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(8548,'1000','41699541760','2023-11-09 17:56:03',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8549,'4000','41699541760','2023-11-09 17:56:03',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8550,'4000','41699541760','2023-11-09 17:56:00',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8551,'1000','41699546993','2023-11-09 19:23:14',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8552,'4000','41699546993','2023-11-09 19:23:14',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8553,'1000','41699552458','2023-11-09 20:54:19',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8554,'4000','41699552458','2023-11-09 20:54:19',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8555,'1000','41699552472','2023-11-09 20:54:33',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8556,'4000','41699552472','2023-11-09 20:54:33',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8557,'1000','41699554134','2023-11-09 21:22:15',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8558,'4000','41699554134','2023-11-09 21:22:15',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8559,'1000','41699554149','2023-11-09 21:22:30',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8560,'4000','41699554149','2023-11-09 21:22:30',NULL,250.00,'','4','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(8561,'1000','41699604349','2023-11-10 11:19:10',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8562,'4000','41699604349','2023-11-10 11:19:10',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(8563,'1000','41699609910','2023-11-10 12:51:54',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8564,'4000','41699609910','2023-11-10 12:51:54',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(8565,'4000','41699609910','2023-11-10 12:51:50',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(8566,'1000','41699614809','2023-11-10 14:13:34',560.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8567,'4000','41699614809','2023-11-10 14:13:34',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(8568,'4000','41699614809','2023-11-10 14:13:29',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(8569,'1000','41699621972','2023-11-10 16:12:56',1200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8570,'4000','41699621972','2023-11-10 16:12:56',NULL,600.00,'','4','1','Good sold','1','','sales','40','','No',NULL,NULL,''),(8571,'4000','41699621972','2023-11-10 16:12:52',NULL,600.00,'','4','1','Good sold','1','','sales','42','','No',NULL,NULL,''),(8572,'1000','41699623153','2023-11-10 16:32:34',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8573,'4000','41699623153','2023-11-10 16:32:34',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(8574,'1000','41699623164','2023-11-10 16:32:45',600.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8575,'4000','41699623164','2023-11-10 16:32:45',NULL,600.00,'','4','1','Good sold','1','','sales','42','','No',NULL,NULL,''),(8576,'1000','41699627828','2023-11-10 17:50:29',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8577,'4000','41699627828','2023-11-10 17:50:29',NULL,200.00,'','4','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(8578,'1000','41699627837','2023-11-10 17:50:39',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8579,'4000','41699627837','2023-11-10 17:50:39',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8580,'1000','41699630214','2023-11-10 18:30:15',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8581,'4000','41699630214','2023-11-10 18:30:15',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(8582,'1000','41699639116','2023-11-10 20:58:54',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8583,'4000','41699639116','2023-11-10 20:58:54',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(8584,'1000','41699640367','2023-11-10 21:19:28',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8585,'4000','41699640367','2023-11-10 21:19:28',NULL,200.00,'','4','1','Good sold','1','','sales','16','','No',NULL,NULL,''),(8586,'1000','41699640376','2023-11-10 21:19:38',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8587,'4000','41699640376','2023-11-10 21:19:38',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8588,'1000','41699640425','2023-11-10 21:20:26',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8589,'4000','41699640425','2023-11-10 21:20:26',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(8590,'1000','41699640539','2023-11-10 21:22:20',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8591,'4000','41699640539','2023-11-10 21:22:20',NULL,250.00,'','4','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(8592,'1000','41699641526','2023-11-10 21:38:49',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8593,'4000','41699641526','2023-11-10 21:38:49',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8594,'4000','41699641526','2023-11-10 21:38:46',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8595,'1000','41699694224','2023-11-11 12:17:12',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8596,'4000','41699694224','2023-11-11 12:17:12',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(8597,'4000','41699694224','2023-11-11 12:17:05',NULL,200.00,'','4','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(8598,'1000','41699695684','2023-11-11 13:13:29',600.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8599,'4000','41699695684','2023-11-11 13:13:29',NULL,200.00,'','4','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(8600,'4000','41699695684','2023-11-11 12:41:24',NULL,200.00,'','4','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(8601,'4000','41699695684','2023-11-11 12:41:44',NULL,200.00,'','4','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(8602,'1000','41699707000','2023-11-11 15:50:01',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8603,'4000','41699707000','2023-11-11 15:50:01',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(8604,'1000','41699710932','2023-11-11 16:55:33',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8605,'4000','41699710932','2023-11-11 16:55:33',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8606,'1000','41699712456','2023-11-11 17:21:00',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8607,'4000','41699712456','2023-11-11 17:21:00',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(8608,'4000','41699712456','2023-11-11 17:20:56',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(8609,'1000','41699716027','2023-11-11 18:20:35',430.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8610,'4000','41699716027','2023-11-11 18:20:35',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(8611,'4000','41699716027','2023-11-11 18:20:27',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(8612,'1000','41699716044','2023-11-11 18:20:46',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8613,'4000','41699716044','2023-11-11 18:20:46',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8614,'1000','41699718610','2023-11-11 19:03:32',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8615,'4000','41699718610','2023-11-11 19:03:32',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(8616,'1000','41699787753','2023-11-12 14:15:54',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8617,'4000','41699787753','2023-11-12 14:15:54',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(8618,'1000','41699805462','2023-11-12 19:11:03',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8619,'4000','41699805462','2023-11-12 19:11:03',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(8620,'1000','41699807224','2023-11-12 19:40:35',600.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8621,'4000','41699807224','2023-11-12 19:40:35',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8622,'4000','41699807224','2023-11-12 19:40:24',NULL,250.00,'','4','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(8623,'1000','41699811631','2023-11-12 20:53:52',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8624,'4000','41699811631','2023-11-12 20:53:52',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(8625,'1000','41699865909','2023-11-13 11:58:31',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8626,'4000','41699865909','2023-11-13 11:58:31',NULL,200.00,'','4','1','Good sold','1','','sales','16','','No',NULL,NULL,''),(8627,'1000','41699876890','2023-11-13 15:01:32',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8628,'4000','41699876890','2023-11-13 15:01:32',NULL,250.00,'','4','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(8629,'1000','41699890588','2023-11-13 18:50:07',950.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8630,'4000','41699890588','2023-11-13 18:50:07',NULL,250.00,'','4','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(8631,'4000','41699890588','2023-11-13 18:49:48',NULL,250.00,'','4','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(8632,'4000','41699890588','2023-11-13 18:49:51',NULL,250.00,'','4','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(8633,'4000','41699890588','2023-11-13 18:50:00',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8634,'1000','41699897846','2023-11-13 20:50:47',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8635,'4000','41699897846','2023-11-13 20:50:47',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8636,'1000','41699946066','2023-11-14 10:14:43',700.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8637,'4000','41699946066','2023-11-14 10:14:43',NULL,300.00,'','4','1','Good sold','1','','sales','39','','No',NULL,NULL,''),(8638,'4000','41699946066','2023-11-14 10:14:27',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(8639,'4000','41699946066','2023-11-14 10:14:40',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(8640,'1000','41699958556','2023-11-14 13:42:37',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8641,'4000','41699958556','2023-11-14 13:42:37',NULL,200.00,'','4','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(8642,'1000','41699964921','2023-11-14 15:28:45',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8643,'4000','41699964921','2023-11-14 15:28:45',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(8644,'4000','41699964921','2023-11-14 15:28:41',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(8645,'1000','41699971392','2023-11-14 17:16:33',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8646,'4000','41699971392','2023-11-14 17:16:33',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(8647,'1000','41699976699','2023-11-14 18:45:04',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8648,'4000','41699976699','2023-11-14 18:45:04',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8649,'1000','41699979768','2023-11-14 19:36:09',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8650,'4000','41699979768','2023-11-14 19:36:09',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(8651,'1000','41699981018','2023-11-14 19:56:59',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8652,'4000','41699981018','2023-11-14 19:56:59',NULL,200.00,'','4','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(8653,'1000','41699981873','2023-11-14 20:11:14',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8654,'4000','41699981873','2023-11-14 20:11:14',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8655,'1000','41699983439','2023-11-14 20:37:20',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8656,'4000','41699983439','2023-11-14 20:37:20',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8657,'1000','41700032645','2023-11-15 10:17:26',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8658,'4000','41700032645','2023-11-15 10:17:26',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8659,'1000','41700034722','2023-11-15 10:52:03',600.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8660,'4000','41700034722','2023-11-15 10:52:03',NULL,600.00,'','4','1','Good sold','1','','sales','42','','No',NULL,NULL,''),(8661,'1000','41700040992','2023-11-15 12:36:34',560.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8662,'4000','41700040992','2023-11-15 12:36:34',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(8663,'4000','41700040992','2023-11-15 12:36:32',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(8664,'1000','41700049394','2023-11-15 14:56:35',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8665,'4000','41700049394','2023-11-15 14:56:35',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8666,'1000','41700056410','2023-11-15 16:53:31',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8667,'4000','41700056410','2023-11-15 16:53:31',NULL,250.00,'','4','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(8668,'1000','41700060275','2023-11-15 17:57:57',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8669,'4000','41700060275','2023-11-15 17:57:57',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8670,'1000','41700065101','2023-11-15 19:18:25',500.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8671,'4000','41700065101','2023-11-15 19:18:25',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(8672,'4000','41700065101','2023-11-15 19:18:21',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(8673,'1000','41700069769','2023-11-15 20:36:11',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8674,'4000','41700069769','2023-11-15 20:36:11',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(8675,'1000','41700071422','2023-11-15 21:03:43',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8676,'4000','41700071422','2023-11-15 21:03:43',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(8677,'1000','41700071435','2023-11-15 21:03:56',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8678,'4000','41700071435','2023-11-15 21:03:56',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8679,'1000','41700151493','2023-11-16 19:18:14',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8680,'4000','41700151493','2023-11-16 19:18:14',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8681,'1000','41700156030','2023-11-16 20:33:51',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8682,'4000','41700156030','2023-11-16 20:33:51',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(8683,'1000','41700156609','2023-11-16 20:43:30',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8684,'4000','41700156609','2023-11-16 20:43:30',NULL,200.00,'','4','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(8685,'1000','41700160362','2023-11-16 21:46:04',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8686,'4000','41700160362','2023-11-16 21:46:04',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8687,'1000','41700201011','2023-11-17 09:03:36',560.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8688,'4000','41700201011','2023-11-17 09:03:36',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(8689,'4000','41700201011','2023-11-17 09:03:31',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(8690,'1000','41700213510','2023-11-17 12:31:51',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8691,'4000','41700213510','2023-11-17 12:31:51',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8692,'1000','41700221795','2023-11-17 14:49:56',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8693,'4000','41700221795','2023-11-17 14:49:56',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(8694,'1000','41700224110','2023-11-17 15:28:31',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8695,'4000','41700224110','2023-11-17 15:28:31',NULL,150.00,'','4','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(8696,'1110','41700224124','2023-11-17 15:28:45',NULL,200.00,'','4','1','Inventory sold','1','','sales','62','','No',NULL,NULL,''),(8697,'5500','41700224124','2023-11-17 15:28:44',200.00,NULL,'','4','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8698,'1000','41700224124','2023-11-17 15:28:45',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8699,'4000','41700224124','2023-11-17 15:28:45',NULL,200.00,'','4','1','Good sold','1','','sales','62','','No',NULL,NULL,''),(8700,'1000','41700227329','2023-11-17 16:22:10',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8701,'4000','41700227329','2023-11-17 16:22:10',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(8702,'1000','41700234614','2023-11-17 18:23:35',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8703,'4000','41700234614','2023-11-17 18:23:35',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(8704,'1000','41700241512','2023-11-17 20:18:33',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8705,'4000','41700241512','2023-11-17 20:18:33',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8706,'1000','41700241538','2023-11-17 20:18:59',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8707,'4000','41700241538','2023-11-17 20:18:59',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(8708,'1000','41700242095','2023-11-17 20:28:16',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8709,'4000','41700242095','2023-11-17 20:28:16',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(8710,'1000','41700245414','2023-11-17 21:23:35',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8711,'4000','41700245414','2023-11-17 21:23:35',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(8712,'1000','41700316223','2023-11-18 17:03:44',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8713,'4000','41700316223','2023-11-18 17:03:44',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8714,'1000','41700319530','2023-11-18 18:31:34',950.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8715,'4000','41700319530','2023-11-18 18:31:34',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8716,'4000','41700319530','2023-11-18 17:58:50',NULL,600.00,'','4','1','Good sold','1','','sales','40','','No',NULL,NULL,''),(8717,'1000','41700321613','2023-11-18 18:33:35',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8718,'4000','41700321613','2023-11-18 18:33:35',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(8719,'1000','41700321629','2023-11-18 20:23:14',3000.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8720,'4000','41700321629','2023-11-18 20:23:14',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(8721,'4000','41700321629','2023-11-18 18:33:50',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(8722,'4000','41700321629','2023-11-18 18:38:34',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(8723,'4000','41700321629','2023-11-18 18:38:59',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(8724,'4000','41700321629','2023-11-18 18:39:01',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(8725,'4000','41700321629','2023-11-18 18:39:12',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(8726,'4000','41700321629','2023-11-18 18:39:18',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(8727,'4000','41700321629','2023-11-18 18:39:58',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(8728,'4000','41700321629','2023-11-18 18:40:19',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(8729,'4000','41700321629','2023-11-18 18:40:49',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(8730,'4000','41700321629','2023-11-18 18:40:52',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(8731,'1000','41700329365','2023-11-18 20:42:46',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8732,'4000','41700329365','2023-11-18 20:42:46',NULL,150.00,'','4','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(8733,'1000','41700329984','2023-11-18 21:08:16',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8734,'4000','41700329984','2023-11-18 21:08:16',NULL,150.00,'','4','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(8735,'4000','41700329984','2023-11-18 20:53:04',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(8736,'1000','41700331612','2023-11-18 21:54:09',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8737,'4000','41700331612','2023-11-18 21:54:09',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(8738,'4000','41700331612','2023-11-18 21:20:12',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(8739,'1000','41700381963','2023-11-19 11:19:24',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8740,'4000','41700381963','2023-11-19 11:19:24',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(8741,'1000','41700381988','2023-11-19 11:19:49',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8742,'4000','41700381988','2023-11-19 11:19:49',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(8743,'1000','41700382021','2023-11-19 11:20:22',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8744,'4000','41700382021','2023-11-19 11:20:22',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(8745,'1000','41700390087','2023-11-19 13:34:48',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8746,'4000','41700390087','2023-11-19 13:34:48',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(8747,'1000','41700393531','2023-11-19 14:32:13',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8748,'4000','41700393531','2023-11-19 14:32:13',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(8749,'1000','41700393690','2023-11-19 14:34:52',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8750,'4000','41700393690','2023-11-19 14:34:52',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8751,'1000','41700404500','2023-11-19 17:35:10',560.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8752,'4000','41700404500','2023-11-19 17:35:10',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(8753,'4000','41700404500','2023-11-19 17:35:00',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(8754,'1000','41700408928','2023-11-19 18:48:49',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8755,'4000','41700408928','2023-11-19 18:48:49',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(8756,'1000','41700409048','2023-11-19 18:50:49',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8757,'4000','41700409048','2023-11-19 18:50:49',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8758,'1000','41700409107','2023-11-19 18:51:48',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8759,'4000','41700409107','2023-11-19 18:51:48',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(8760,'1000','41700477861','2023-11-20 13:57:48',480.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8761,'4000','41700477861','2023-11-20 13:57:48',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(8762,'4000','41700477861','2023-11-20 13:57:41',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(8763,'1000','41700491456','2023-11-20 17:44:17',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8764,'4000','41700491456','2023-11-20 17:44:17',NULL,250.00,'','4','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(8765,'1000','41700503053','2023-11-20 20:57:35',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8766,'4000','41700503053','2023-11-20 20:57:35',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(8767,'1000','41700503084','2023-11-20 20:58:05',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8768,'4000','41700503084','2023-11-20 20:58:05',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(8769,'1000','41700503120','2023-11-20 20:58:41',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8770,'4000','41700503120','2023-11-20 20:58:41',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8771,'1000','41700510358','2023-11-20 22:59:19',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8772,'4000','41700510358','2023-11-20 22:59:19',NULL,200.00,'','4','1','Good sold','1','','sales','31','','No',NULL,NULL,''),(8773,'1000','41700510387','2023-11-20 22:59:48',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8774,'4000','41700510387','2023-11-20 22:59:48',NULL,300.00,'','4','1','Good sold','1','','sales','29','','No',NULL,NULL,''),(8775,'1000','41700510524','2023-11-20 23:02:05',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8776,'4000','41700510524','2023-11-20 23:02:05',NULL,200.00,'','4','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(8777,'1000','41700566040','2023-11-21 14:27:25',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8778,'4000','41700566040','2023-11-21 14:27:25',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(8779,'4000','41700566040','2023-11-21 14:27:20',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(8780,'1000','41700569694','2023-11-21 15:28:16',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8781,'4000','41700569694','2023-11-21 15:28:16',NULL,150.00,'','4','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(8782,'1000','41700576842','2023-11-21 17:27:23',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8783,'4000','41700576842','2023-11-21 17:27:23',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8784,'1000','41700584294','2023-11-21 19:31:35',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8785,'4000','41700584294','2023-11-21 19:31:35',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8786,'1000','41700586277','2023-11-21 20:04:38',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8787,'4000','41700586277','2023-11-21 20:04:38',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(8788,'1000','41700586514','2023-11-21 20:08:35',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8789,'4000','41700586514','2023-11-21 20:08:35',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8790,'1000','41700586528','2023-11-21 20:08:49',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8791,'4000','41700586528','2023-11-21 20:08:49',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8792,'1000','41700586606','2023-11-21 20:10:07',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8793,'4000','41700586606','2023-11-21 20:10:07',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8794,'1000','41700588557','2023-11-21 20:42:38',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8795,'4000','41700588557','2023-11-21 20:42:38',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(8796,'1000','41700596204','2023-11-21 22:50:05',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8797,'4000','41700596204','2023-11-21 22:50:05',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8798,'1000','41700635261','2023-11-22 09:41:11',1000.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8799,'4000','41700635261','2023-11-22 09:41:11',NULL,600.00,'','4','1','Good sold','1','','sales','42','','No',NULL,NULL,''),(8800,'4000','41700635261','2023-11-22 09:41:01',NULL,200.00,'','4','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(8801,'4000','41700635261','2023-11-22 09:41:07',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(8802,'1000','41700662479','2023-11-22 17:14:40',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8803,'4000','41700662479','2023-11-22 17:14:40',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(8804,'1000','41700665242','2023-11-22 18:00:43',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8805,'4000','41700665242','2023-11-22 18:00:43',NULL,150.00,'','4','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(8806,'1000','41700670943','2023-11-22 19:35:55',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8807,'4000','41700670943','2023-11-22 19:35:55',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8808,'1000','41700670964','2023-11-22 19:36:05',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8809,'4000','41700670964','2023-11-22 19:36:05',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8810,'1000','41700675450','2023-11-22 20:50:51',600.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8811,'4000','41700675450','2023-11-22 20:50:51',NULL,600.00,'','4','1','Good sold','1','','sales','40','','No',NULL,NULL,''),(8812,'1000','41700735611','2023-11-23 13:33:33',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8813,'4000','41700735611','2023-11-23 13:33:33',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(8814,'1000','41700740210','2023-11-23 14:50:11',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8815,'4000','41700740210','2023-11-23 14:50:11',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(8816,'1000','41700741310','2023-11-23 15:08:31',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8817,'4000','41700741310','2023-11-23 15:08:31',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(8818,'1000','41700748169','2023-11-23 17:02:50',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8819,'4000','41700748169','2023-11-23 17:02:50',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(8820,'1000','41700756632','2023-11-23 19:23:53',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8821,'4000','41700756632','2023-11-23 19:23:53',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(8822,'1000','41700761690','2023-11-23 20:48:22',600.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8823,'4000','41700761690','2023-11-23 20:48:22',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8824,'4000','41700761690','2023-11-23 20:48:10',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8825,'4000','41700761690','2023-11-23 20:48:17',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8826,'1000','41700823069','2023-11-24 13:51:10',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8827,'4000','41700823069','2023-11-24 13:51:10',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(8828,'1000','41700832818','2023-11-24 16:33:44',700.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8829,'4000','41700832818','2023-11-24 16:33:44',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8830,'4000','41700832818','2023-11-24 16:33:38',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8831,'1000','41700835832','2023-11-24 17:23:53',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8832,'4000','41700835832','2023-11-24 17:23:53',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(8833,'1000','41700835979','2023-11-24 17:26:20',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8834,'4000','41700835979','2023-11-24 17:26:20',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(8835,'1000','41700839204','2023-11-24 18:20:05',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8836,'4000','41700839204','2023-11-24 18:20:05',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8837,'1000','41700840468','2023-11-24 18:41:09',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8838,'4000','41700840468','2023-11-24 18:41:09',NULL,150.00,'','4','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(8839,'1000','41700844207','2023-11-24 19:43:28',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8840,'4000','41700844207','2023-11-24 19:43:28',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(8841,'1000','41700853333','2023-11-24 22:15:34',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8842,'4000','41700853333','2023-11-24 22:15:34',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(8843,'1000','41700906746','2023-11-25 13:05:47',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8844,'4000','41700906746','2023-11-25 13:05:47',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(8845,'1000','41700934118','2023-11-25 20:41:59',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8846,'4000','41700934118','2023-11-25 20:41:59',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(8847,'1000','41700936871','2023-11-25 21:27:52',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8848,'4000','41700936871','2023-11-25 21:27:52',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8849,'1000','41700936883','2023-11-25 21:28:05',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8850,'4000','41700936883','2023-11-25 21:28:05',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8851,'1000','41700940774','2023-11-25 22:32:55',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8852,'4000','41700940774','2023-11-25 22:32:55',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(8853,'1000','41700941488','2023-11-25 22:44:49',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8854,'4000','41700941488','2023-11-25 22:44:49',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8855,'1000','41700998802','2023-11-26 14:40:03',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8856,'4000','41700998802','2023-11-26 14:40:03',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(8857,'1000','41700998834','2023-11-26 14:40:35',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8858,'4000','41700998834','2023-11-26 14:40:35',NULL,200.00,'','4','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(8859,'1000','41701069773','2023-11-27 10:22:54',100.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8860,'4000','41701069773','2023-11-27 10:22:54',NULL,100.00,'','4','1','Good sold','1','','sales','26','','No',NULL,NULL,''),(8861,'1000','41701082581','2023-11-27 13:56:22',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8862,'4000','41701082581','2023-11-27 13:56:22',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(8863,'1000','41701089429','2023-11-27 15:50:30',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8864,'4000','41701089429','2023-11-27 15:50:30',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(8865,'1000','41701089486','2023-11-27 15:51:32',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8866,'4000','41701089486','2023-11-27 15:51:32',NULL,100.00,'','4','1','Good sold','1','','sales','25','','No',NULL,NULL,''),(8867,'4000','41701089486','2023-11-27 15:51:26',NULL,100.00,'','4','1','Good sold','1','','sales','25','','No',NULL,NULL,''),(8868,'1000','41701089548','2023-11-27 15:52:29',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8869,'4000','41701089548','2023-11-27 15:52:29',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(8870,'1000','41701089626','2023-11-27 15:53:47',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8871,'4000','41701089626','2023-11-27 15:53:47',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(8872,'1000','41701094717','2023-11-27 17:18:38',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8873,'4000','41701094717','2023-11-27 17:18:38',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(8874,'1000','41701094732','2023-11-27 17:18:53',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8875,'4000','41701094732','2023-11-27 17:18:53',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(8876,'1000','41701103990','2023-11-27 19:53:11',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8877,'4000','41701103990','2023-11-27 19:53:11',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8878,'1000','41701104064','2023-11-27 19:54:25',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8879,'4000','41701104064','2023-11-27 19:54:25',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(8880,'1000','41701104131','2023-11-27 19:55:32',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8881,'4000','41701104131','2023-11-27 19:55:32',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(8882,'1000','41701104981','2023-11-27 20:09:42',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8883,'4000','41701104981','2023-11-27 20:09:42',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(8884,'1000','41701105002','2023-11-27 20:10:03',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8885,'4000','41701105002','2023-11-27 20:10:03',NULL,200.00,'','4','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(8886,'1000','41701112687','2023-11-27 22:18:08',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8887,'4000','41701112687','2023-11-27 22:18:08',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8888,'1000','41701154605','2023-11-28 09:56:47',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8889,'4000','41701154605','2023-11-28 09:56:47',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(8890,'1000','41701161306','2023-11-28 11:48:27',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8891,'4000','41701161306','2023-11-28 11:48:27',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8892,'1000','41701189928','2023-11-28 19:45:29',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8893,'4000','41701189928','2023-11-28 19:45:29',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8894,'1000','41701192442','2023-11-28 20:27:23',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8895,'4000','41701192442','2023-11-28 20:27:23',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(8896,'1110','41701197093','2023-11-28 21:44:54',NULL,70.00,'','4','1','Inventory sold','1','','sales','60','','No',NULL,NULL,''),(8897,'5500','41701197093','2023-11-28 21:44:53',70.00,NULL,'','4','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(8898,'1000','41701197093','2023-11-28 21:44:54',100.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8899,'4000','41701197093','2023-11-28 21:44:54',NULL,100.00,'','4','1','Good sold','1','','sales','60','','No',NULL,NULL,''),(8900,'1000','41701255401','2023-11-29 13:56:42',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8901,'4000','41701255401','2023-11-29 13:56:42',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(8902,'1000','41701259906','2023-11-29 15:11:47',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8903,'4000','41701259906','2023-11-29 15:11:47',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(8904,'1000','41701263550','2023-11-29 16:12:37',480.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8905,'4000','41701263550','2023-11-29 16:12:37',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(8906,'4000','41701263550','2023-11-29 16:12:30',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8907,'1000','41701267714','2023-11-29 17:21:55',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8908,'4000','41701267714','2023-11-29 17:21:55',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(8909,'1000','41701271074','2023-11-29 18:17:55',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8910,'4000','41701271074','2023-11-29 18:17:55',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8911,'1000','41701271720','2023-11-29 18:28:41',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8912,'4000','41701271720','2023-11-29 18:28:41',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8913,'1000','41701280209','2023-11-29 20:50:10',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8914,'4000','41701280209','2023-11-29 20:50:10',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(8915,'1000','41701340468','2023-11-30 13:34:29',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8916,'4000','41701340468','2023-11-30 13:34:29',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(8917,'1000','41701340726','2023-11-30 13:38:47',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8918,'4000','41701340726','2023-11-30 13:38:47',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(8919,'1000','41701341438','2023-11-30 13:50:39',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8920,'4000','41701341438','2023-11-30 13:50:39',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(8921,'1000','41701345912','2023-11-30 15:05:13',600.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8922,'4000','41701345912','2023-11-30 15:05:13',NULL,600.00,'','4','1','Good sold','1','','sales','40','','No',NULL,NULL,''),(8923,'1000','41701354280','2023-11-30 17:24:42',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8924,'4000','41701354280','2023-11-30 17:24:42',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8925,'1000','41701357718','2023-11-30 18:22:00',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8926,'4000','41701357718','2023-11-30 18:22:00',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(8927,'1000','41701360859','2023-11-30 19:14:20',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8928,'4000','41701360859','2023-11-30 19:14:20',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(8929,'1000','41701364902','2023-11-30 20:22:00',600.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8930,'4000','41701364902','2023-11-30 20:22:00',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(8931,'4000','41701364902','2023-11-30 20:21:42',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(8932,'4000','41701364902','2023-11-30 20:21:56',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(8933,'1000','41701365680','2023-11-30 20:34:42',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8934,'4000','41701365680','2023-11-30 20:34:42',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8935,'1000','41701415160','2023-12-01 10:19:22',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8936,'4000','41701415160','2023-12-01 10:19:22',NULL,250.00,'','4','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(8937,'1000','41701417963','2023-12-01 11:06:04',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8938,'4000','41701417963','2023-12-01 11:06:04',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8939,'1000','41701421308','2023-12-01 12:01:49',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8940,'4000','41701421308','2023-12-01 12:01:49',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(8941,'1000','41701428443','2023-12-01 14:00:44',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8942,'4000','41701428443','2023-12-01 14:00:44',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8943,'1000','41701430694','2023-12-01 14:38:15',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8944,'4000','41701430694','2023-12-01 14:38:15',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8945,'1000','41701432363','2023-12-01 15:06:04',600.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8946,'4000','41701432363','2023-12-01 15:06:04',NULL,600.00,'','4','1','Good sold','1','','sales','40','','No',NULL,NULL,''),(8947,'1000','41701437723','2023-12-01 16:35:25',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8948,'4000','41701437723','2023-12-01 16:35:25',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(8949,'4000','41701437723','2023-12-01 16:35:23',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(8950,'1000','41701441375','2023-12-01 17:36:19',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8951,'4000','41701441375','2023-12-01 17:36:19',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(8952,'4000','41701441375','2023-12-01 17:36:15',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(8953,'1000','41701444672','2023-12-01 18:31:14',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8954,'4000','41701444672','2023-12-01 18:31:14',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(8955,'1000','41701449548','2023-12-01 19:52:29',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8956,'4000','41701449548','2023-12-01 19:52:29',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(8957,'1000','41701450871','2023-12-01 20:14:32',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8958,'4000','41701450871','2023-12-01 20:14:32',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(8959,'1000','41701500551','2023-12-02 10:02:32',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8960,'4000','41701500551','2023-12-02 10:02:32',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(8961,'1000','41701510183','2023-12-02 12:43:04',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8962,'4000','41701510183','2023-12-02 12:43:04',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(8963,'1000','41701510579','2023-12-02 12:49:40',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8964,'4000','41701510579','2023-12-02 12:49:40',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(8965,'1000','41701512878','2023-12-02 13:28:00',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8966,'4000','41701512878','2023-12-02 13:28:00',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(8967,'1000','41701515115','2023-12-02 14:05:17',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8968,'4000','41701515115','2023-12-02 14:05:17',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(8969,'1000','41701515326','2023-12-02 14:08:47',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8970,'4000','41701515326','2023-12-02 14:08:47',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(8971,'1000','41701516371','2023-12-02 14:26:13',600.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8972,'4000','41701516371','2023-12-02 14:26:13',NULL,600.00,'','4','1','Good sold','1','','sales','40','','No',NULL,NULL,''),(8973,'1000','41701517686','2023-12-02 14:48:07',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8974,'4000','41701517686','2023-12-02 14:48:07',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(8975,'1000','41701528016','2023-12-02 17:40:17',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8976,'4000','41701528016','2023-12-02 17:40:17',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(8977,'1000','41701528313','2023-12-02 17:46:29',1100.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8978,'4000','41701528313','2023-12-02 17:46:29',NULL,350.00,'','4','1','Good sold','1','','sales','54','','No',NULL,NULL,''),(8979,'4000','41701528313','2023-12-02 17:45:13',NULL,350.00,'','4','1','Good sold','1','','sales','54','','No',NULL,NULL,''),(8980,'4000','41701528313','2023-12-02 17:46:05',NULL,200.00,'','4','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(8981,'4000','41701528313','2023-12-02 17:46:24',NULL,200.00,'','4','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(8982,'1000','41701529336','2023-12-02 18:02:17',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8983,'4000','41701529336','2023-12-02 18:02:17',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(8984,'1000','41701532693','2023-12-02 18:58:14',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8985,'4000','41701532693','2023-12-02 18:58:14',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8986,'1000','41701536670','2023-12-02 20:04:31',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8987,'4000','41701536670','2023-12-02 20:04:31',NULL,250.00,'','4','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(8988,'1000','41701536732','2023-12-02 20:05:33',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8989,'4000','41701536732','2023-12-02 20:05:33',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(8990,'1000','41701537624','2023-12-02 20:20:26',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8991,'4000','41701537624','2023-12-02 20:20:26',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(8992,'1000','41701541625','2023-12-02 21:27:07',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8993,'4000','41701541625','2023-12-02 21:27:07',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(8994,'1000','41701589010','2023-12-03 10:36:51',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8995,'4000','41701589010','2023-12-03 10:36:51',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(8996,'1000','41701597024','2023-12-03 12:50:25',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8997,'4000','41701597024','2023-12-03 12:50:25',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(8998,'1000','41701597113','2023-12-03 12:51:55',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(8999,'4000','41701597113','2023-12-03 12:51:55',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(9000,'1000','41701611091','2023-12-03 16:44:56',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9001,'4000','41701611091','2023-12-03 16:44:56',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(9002,'4000','41701611091','2023-12-03 16:44:52',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(9003,'1000','41701619240','2023-12-03 19:00:41',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9004,'4000','41701619240','2023-12-03 19:00:41',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9005,'1000','41701619285','2023-12-03 19:01:26',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9006,'4000','41701619285','2023-12-03 19:01:26',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(9007,'1000','41701622576','2023-12-03 19:56:17',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9008,'4000','41701622576','2023-12-03 19:56:17',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9009,'1000','41701623023','2023-12-03 20:03:45',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9010,'4000','41701623023','2023-12-03 20:03:45',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(9011,'1000','41701629415','2023-12-03 21:50:19',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9012,'4000','41701629415','2023-12-03 21:50:19',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9013,'4000','41701629415','2023-12-03 21:50:15',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9014,'1000','41701629493','2023-12-03 21:51:37',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9015,'4000','41701629493','2023-12-03 21:51:37',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9016,'4000','41701629493','2023-12-03 21:51:33',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9017,'1000','41701630426','2023-12-03 22:07:07',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9018,'4000','41701630426','2023-12-03 22:07:07',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(9019,'1000','41701632206','2023-12-03 22:36:47',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9020,'4000','41701632206','2023-12-03 22:36:47',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9021,'1000','41701680581','2023-12-04 12:03:06',560.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9022,'4000','41701680581','2023-12-04 12:03:06',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(9023,'4000','41701680581','2023-12-04 12:03:01',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(9024,'1000','41701683267','2023-12-04 12:47:48',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9025,'4000','41701683267','2023-12-04 12:47:48',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(9026,'1000','41701683369','2023-12-04 12:49:30',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9027,'4000','41701683369','2023-12-04 12:49:30',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(9028,'1000','41701694899','2023-12-04 16:01:40',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9029,'4000','41701694899','2023-12-04 16:01:40',NULL,250.00,'','4','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(9030,'1000','41701706622','2023-12-04 19:17:03',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9031,'4000','41701706622','2023-12-04 19:17:03',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9032,'1000','41701710665','2023-12-04 20:24:26',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9033,'4000','41701710665','2023-12-04 20:24:26',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9034,'1000','41701710683','2023-12-04 20:24:44',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9035,'4000','41701710683','2023-12-04 20:24:44',NULL,300.00,'','4','1','Good sold','1','','sales','28','','No',NULL,NULL,''),(9036,'1000','41701712259','2023-12-04 20:51:12',430.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9037,'4000','41701712259','2023-12-04 20:51:12',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(9038,'4000','41701712259','2023-12-04 20:50:59',NULL,150.00,'','4','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(9039,'1000','41701714016','2023-12-04 21:20:21',500.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9040,'4000','41701714016','2023-12-04 21:20:21',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(9041,'4000','41701714016','2023-12-04 21:20:17',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(9042,'1000','41701762980','2023-12-05 10:56:21',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9043,'4000','41701762980','2023-12-05 10:56:21',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(9044,'1000','41701764984','2023-12-05 11:29:45',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9045,'4000','41701764984','2023-12-05 11:29:45',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(9046,'1000','41701783320','2023-12-05 16:35:21',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9047,'4000','41701783320','2023-12-05 16:35:21',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(9048,'1000','41701783382','2023-12-05 16:36:23',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9049,'4000','41701783382','2023-12-05 16:36:23',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(9050,'1000','41701784373','2023-12-05 16:52:54',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9051,'4000','41701784373','2023-12-05 16:52:54',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(9052,'1000','41701787935','2023-12-05 17:52:16',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9053,'4000','41701787935','2023-12-05 17:52:16',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9054,'1000','41701787946','2023-12-05 17:52:31',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9055,'4000','41701787946','2023-12-05 17:52:31',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9056,'4000','41701787946','2023-12-05 17:52:26',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9057,'1000','41701792791','2023-12-05 19:13:12',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9058,'4000','41701792791','2023-12-05 19:13:12',NULL,280.00,'','4','1','Good sold','1','','sales','6','','No',NULL,NULL,''),(9059,'1000','41701795429','2023-12-05 19:57:11',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9060,'4000','41701795429','2023-12-05 19:57:11',NULL,250.00,'','4','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(9061,'1000','41701796364','2023-12-05 20:12:45',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9062,'4000','41701796364','2023-12-05 20:12:45',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9063,'1000','41701860344','2023-12-06 13:59:08',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9064,'4000','41701860344','2023-12-06 13:59:08',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(9065,'4000','41701860344','2023-12-06 13:59:04',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(9066,'1000','41701872545','2023-12-06 17:22:27',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9067,'4000','41701872545','2023-12-06 17:22:27',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9068,'1000','41701873680','2023-12-06 17:41:21',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9069,'4000','41701873680','2023-12-06 17:41:21',NULL,250.00,'','4','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(9070,'1000','41701876568','2023-12-06 18:29:29',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9071,'4000','41701876568','2023-12-06 18:29:29',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(9072,'1000','41701877583','2023-12-06 18:46:24',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9073,'4000','41701877583','2023-12-06 18:46:24',NULL,250.00,'','4','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(9074,'1000','41701877609','2023-12-06 18:47:17',650.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9075,'4000','41701877609','2023-12-06 18:47:17',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(9076,'4000','41701877609','2023-12-06 18:46:50',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(9077,'4000','41701877609','2023-12-06 18:47:12',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(9078,'1000','41701885841','2023-12-06 21:04:02',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9079,'4000','41701885841','2023-12-06 21:04:02',NULL,250.00,'','4','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(9080,'1000','41701935069','2023-12-07 10:44:30',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9081,'4000','41701935069','2023-12-07 10:44:30',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(9082,'1000','41701956614','2023-12-07 16:43:35',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9083,'4000','41701956614','2023-12-07 16:43:35',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(9084,'1000','41701956741','2023-12-07 16:45:42',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9085,'4000','41701956741','2023-12-07 16:45:42',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(9086,'1000','41701960590','2023-12-07 17:49:51',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9087,'4000','41701960590','2023-12-07 17:49:51',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(9088,'1000','41701963273','2023-12-07 18:34:35',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9089,'4000','41701963273','2023-12-07 18:34:35',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9090,'1000','41702041792','2023-12-08 16:23:17',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9091,'4000','41702041792','2023-12-08 16:23:17',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9092,'4000','41702041792','2023-12-08 16:23:12',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9093,'1000','41702041831','2023-12-08 16:24:01',530.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9094,'4000','41702041831','2023-12-08 16:24:01',NULL,250.00,'','4','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(9095,'4000','41702041831','2023-12-08 16:23:51',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(9096,'1000','41702045752','2023-12-08 17:29:20',600.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9097,'4000','41702045752','2023-12-08 17:29:20',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9098,'4000','41702045752','2023-12-08 17:29:12',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9099,'4000','41702045752','2023-12-08 17:29:16',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9100,'1000','41702052958','2023-12-08 19:29:19',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9101,'4000','41702052958','2023-12-08 19:29:19',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(9102,'1000','41702054648','2023-12-08 19:57:29',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9103,'4000','41702054648','2023-12-08 19:57:29',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(9104,'1000','41702104859','2023-12-09 09:54:21',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9105,'4000','41702104859','2023-12-09 09:54:21',NULL,250.00,'','4','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(9106,'1000','41702107238','2023-12-09 10:34:20',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9107,'4000','41702107238','2023-12-09 10:34:20',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9108,'4000','41702107238','2023-12-09 10:33:58',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(9109,'1000','41702108273','2023-12-09 10:51:22',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9110,'4000','41702108273','2023-12-09 10:51:22',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9111,'4000','41702108273','2023-12-09 10:51:13',NULL,200.00,'','4','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(9112,'1000','41702108303','2023-12-09 10:51:44',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9113,'4000','41702108303','2023-12-09 10:51:44',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(9114,'1000','41702113704','2023-12-09 12:21:45',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9115,'4000','41702113704','2023-12-09 12:21:45',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9116,'1000','41702116549','2023-12-09 13:09:10',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9117,'4000','41702116549','2023-12-09 13:09:10',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(9118,'1000','41702118801','2023-12-09 13:46:42',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9119,'4000','41702118801','2023-12-09 13:46:42',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(9120,'1000','41702130074','2023-12-09 16:54:35',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9121,'4000','41702130074','2023-12-09 16:54:35',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(9122,'1000','41702144382','2023-12-09 20:53:04',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9123,'4000','41702144382','2023-12-09 20:53:04',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(9124,'1000','41702199275','2023-12-10 12:07:56',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9125,'4000','41702199275','2023-12-10 12:07:56',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9126,'1000','41702207298','2023-12-10 14:21:39',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9127,'4000','41702207298','2023-12-10 14:21:39',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9128,'1000','41702209755','2023-12-10 15:02:37',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9129,'4000','41702209755','2023-12-10 15:02:37',NULL,150.00,'','4','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(9130,'1000','41702211274','2023-12-10 15:27:55',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9131,'4000','41702211274','2023-12-10 15:27:55',NULL,280.00,'','4','1','Good sold','1','','sales','13','','No',NULL,NULL,''),(9132,'1000','41702285332','2023-12-11 12:02:13',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9133,'4000','41702285332','2023-12-11 12:02:13',NULL,250.00,'','4','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(9134,'1000','41702302396','2023-12-11 16:46:37',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9135,'4000','41702302396','2023-12-11 16:46:37',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(9136,'1000','41702315569','2023-12-11 20:26:10',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9137,'4000','41702315569','2023-12-11 20:26:10',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(9138,'1000','41702373240','2023-12-12 12:27:21',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9139,'4000','41702373240','2023-12-12 12:27:21',NULL,350.00,'','4','1','Good sold','1','','sales','54','','No',NULL,NULL,''),(9140,'1000','41702375864','2023-12-12 13:11:05',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9141,'4000','41702375864','2023-12-12 13:11:05',NULL,150.00,'','4','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(9142,'1000','41702379270','2023-12-12 14:07:51',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9143,'4000','41702379270','2023-12-12 14:07:51',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9144,'1000','41702384982','2023-12-12 15:43:04',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9145,'4000','41702384982','2023-12-12 15:43:04',NULL,200.00,'','4','1','Good sold','1','','sales','18','','No',NULL,NULL,''),(9146,'1000','41702385138','2023-12-12 15:45:40',30.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9147,'4000','41702385138','2023-12-12 15:45:40',NULL,30.00,'','4','1','Good sold','1','','sales','58','','No',NULL,NULL,''),(9148,'1000','41702399877','2023-12-12 19:51:18',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9149,'4000','41702399877','2023-12-12 19:51:18',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9150,'1000','41702399932','2023-12-12 19:52:13',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9151,'4000','41702399932','2023-12-12 19:52:13',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(9152,'1000','41702452566','2023-12-13 10:29:27',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9153,'4000','41702452566','2023-12-13 10:29:27',NULL,200.00,'','4','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(9154,'1000','41702452587','2023-12-13 10:29:48',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9155,'4000','41702452587','2023-12-13 10:29:48',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9156,'1000','41702488116','2023-12-13 20:21:57',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9157,'4000','41702488116','2023-12-13 20:21:57',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(9158,'1000','41702489608','2023-12-13 20:46:50',600.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9159,'4000','41702489608','2023-12-13 20:46:50',NULL,600.00,'','4','1','Good sold','1','','sales','40','','No',NULL,NULL,''),(9160,'1000','41702560455','2023-12-14 16:27:36',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9161,'4000','41702560455','2023-12-14 16:27:36',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(9162,'1000','41702562711','2023-12-14 17:05:12',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9163,'4000','41702562711','2023-12-14 17:05:12',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(9164,'1000','41702563247','2023-12-14 17:14:08',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9165,'4000','41702563247','2023-12-14 17:14:08',NULL,200.00,'','4','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(9166,'1000','41702566884','2023-12-14 18:14:45',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9167,'4000','41702566884','2023-12-14 18:14:45',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(9168,'1000','41702568352','2023-12-14 18:39:13',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9169,'4000','41702568352','2023-12-14 18:39:13',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(9170,'1000','41702569322','2023-12-14 18:55:27',500.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9171,'4000','41702569322','2023-12-14 18:55:27',NULL,250.00,'','4','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(9172,'4000','41702569322','2023-12-14 18:55:22',NULL,250.00,'','4','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(9173,'1000','41702571182','2023-12-14 19:26:23',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9174,'4000','41702571182','2023-12-14 19:26:23',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9175,'1000','41702574967','2023-12-14 20:29:28',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9176,'4000','41702574967','2023-12-14 20:29:28',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9177,'1000','41702582063','2023-12-14 22:27:56',600.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9178,'4000','41702582063','2023-12-14 22:27:56',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(9179,'4000','41702582063','2023-12-14 22:27:43',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(9180,'4000','41702582063','2023-12-14 22:27:47',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(9181,'1000','41702582225','2023-12-14 22:30:26',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9182,'4000','41702582225','2023-12-14 22:30:26',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9183,'1000','41702623917','2023-12-15 10:05:22',450.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9184,'4000','41702623917','2023-12-15 10:05:22',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(9185,'4000','41702623917','2023-12-15 10:05:17',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9186,'1000','41702640638','2023-12-15 14:43:59',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9187,'4000','41702640638','2023-12-15 14:43:59',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(9188,'1000','41702650054','2023-12-15 17:20:55',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9189,'4000','41702650054','2023-12-15 17:20:55',NULL,250.00,'','4','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(9190,'1000','41702650283','2023-12-15 17:24:44',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9191,'4000','41702650283','2023-12-15 17:24:44',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(9192,'1000','41702652489','2023-12-15 18:01:30',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9193,'4000','41702652489','2023-12-15 18:01:30',NULL,150.00,'','4','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(9194,'1000','41702652755','2023-12-15 18:05:56',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9195,'4000','41702652755','2023-12-15 18:05:56',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(9196,'1000','41702668479','2023-12-15 22:28:00',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9197,'4000','41702668479','2023-12-15 22:28:00',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(9198,'1000','41702668522','2023-12-15 22:28:43',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9199,'4000','41702668522','2023-12-15 22:28:43',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(9200,'1000','41702711958','2023-12-16 10:32:39',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9201,'4000','41702711958','2023-12-16 10:32:39',NULL,150.00,'','4','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(9202,'1000','41702716588','2023-12-16 11:49:49',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9203,'4000','41702716588','2023-12-16 11:49:49',NULL,250.00,'','4','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(9204,'1000','61702742740','2023-12-16 19:06:35',1440.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9205,'4000','61702742740','2023-12-16 19:06:35',NULL,280.00,'','6','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(9206,'4000','61702742740','2023-12-16 19:05:40',NULL,280.00,'','6','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(9207,'4000','61702742740','2023-12-16 19:05:48',NULL,280.00,'','6','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(9208,'4000','61702742740','2023-12-16 19:05:52',NULL,200.00,'','6','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(9209,'4000','61702742740','2023-12-16 19:06:15',NULL,200.00,'','6','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(9210,'4000','61702742740','2023-12-16 19:06:31',NULL,200.00,'','6','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(9211,'1000','61702743987','2023-12-16 19:27:00',480.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9212,'4000','61702743987','2023-12-16 19:27:00',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9213,'4000','61702743987','2023-12-16 19:26:27',NULL,280.00,'','6','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(9214,'1000','61702747022','2023-12-16 20:17:03',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9215,'4000','61702747022','2023-12-16 20:17:03',NULL,200.00,'','6','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(9216,'1000','61702751051','2023-12-16 21:24:12',350.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9217,'4000','61702751051','2023-12-16 21:24:12',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(9218,'1000','41702797370','2023-12-17 10:16:12',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9219,'4000','41702797370','2023-12-17 10:16:12',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(9220,'1000','41702806655','2023-12-17 12:50:56',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9221,'4000','41702806655','2023-12-17 12:50:56',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(9222,'1000','41702808504','2023-12-17 13:21:45',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9223,'4000','41702808504','2023-12-17 13:21:45',NULL,200.00,'','4','1','Good sold','1','','sales','9','','No',NULL,NULL,''),(9224,'1000','41702816540','2023-12-17 15:35:42',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9225,'4000','41702816540','2023-12-17 15:35:42',NULL,150.00,'','4','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(9226,'1000','41702822517','2023-12-17 17:15:18',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9227,'4000','41702822517','2023-12-17 17:15:18',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(9228,'1000','41702823798','2023-12-17 17:36:42',700.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9229,'4000','41702823798','2023-12-17 17:36:42',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(9230,'4000','41702823798','2023-12-17 17:36:38',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(9231,'1000','41702825997','2023-12-17 18:13:21',700.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9232,'4000','41702825997','2023-12-17 18:13:21',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(9233,'4000','41702825997','2023-12-17 18:13:17',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(9234,'1000','41702826087','2023-12-17 18:14:48',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9235,'4000','41702826087','2023-12-17 18:14:48',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(9236,'1000','41702888520','2023-12-18 11:35:21',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9237,'4000','41702888520','2023-12-18 11:35:21',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(9238,'1000','41702893622','2023-12-18 13:00:24',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9239,'4000','41702893622','2023-12-18 13:00:24',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9240,'1000','41702896015','2023-12-18 13:40:16',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9241,'4000','41702896015','2023-12-18 13:40:16',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(9242,'1000','41702909862','2023-12-18 17:31:03',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9243,'4000','41702909862','2023-12-18 17:31:03',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(9244,'1000','41702912702','2023-12-18 18:18:23',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9245,'4000','41702912702','2023-12-18 18:18:23',NULL,250.00,'','4','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(9246,'1000','41702921282','2023-12-18 20:41:23',30.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9247,'4000','41702921282','2023-12-18 20:41:23',NULL,30.00,'','4','1','Good sold','1','','sales','58','','No',NULL,NULL,''),(9248,'1000','41702921629','2023-12-18 20:47:10',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9249,'4000','41702921629','2023-12-18 20:47:10',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(9250,'1000','41702921765','2023-12-18 20:49:27',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9251,'4000','41702921765','2023-12-18 20:49:27',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(9252,'1000','41702922962','2023-12-18 21:09:23',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9253,'4000','41702922962','2023-12-18 21:09:23',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9254,'1000','41702923715','2023-12-18 21:22:02',530.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9255,'4000','41702923715','2023-12-18 21:22:02',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(9256,'4000','41702923715','2023-12-18 21:21:55',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(9257,'1000','41702924922','2023-12-18 21:42:03',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9258,'4000','41702924922','2023-12-18 21:42:03',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(9259,'1000','41702925837','2023-12-18 21:57:21',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9260,'4000','41702925837','2023-12-18 21:57:21',NULL,250.00,'','4','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(9261,'4000','41702925837','2023-12-18 21:57:17',NULL,150.00,'','4','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(9262,'1000','41702969066','2023-12-19 09:57:47',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9263,'4000','41702969066','2023-12-19 09:57:47',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(9264,'1000','41702971252','2023-12-19 10:34:49',1200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9265,'4000','41702971252','2023-12-19 10:34:49',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(9266,'4000','41702971252','2023-12-19 10:34:12',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(9267,'4000','41702971252','2023-12-19 10:34:15',NULL,250.00,'','4','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(9268,'4000','41702971252','2023-12-19 10:34:39',NULL,250.00,'','4','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(9269,'1000','41702991840','2023-12-19 16:17:21',600.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9270,'4000','41702991840','2023-12-19 16:17:21',NULL,600.00,'','4','1','Good sold','1','','sales','40','','No',NULL,NULL,''),(9271,'1000','41702991860','2023-12-19 16:17:42',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9272,'4000','41702991860','2023-12-19 16:17:42',NULL,250.00,'','4','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(9273,'1000','41702994232','2023-12-19 16:57:13',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9274,'4000','41702994232','2023-12-19 16:57:13',NULL,300.00,'','4','1','Good sold','1','','sales','29','','No',NULL,NULL,''),(9275,'1000','41702994450','2023-12-19 17:00:51',600.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9276,'4000','41702994450','2023-12-19 17:00:51',NULL,600.00,'','4','1','Good sold','1','','sales','40','','No',NULL,NULL,''),(9277,'1000','41703002248','2023-12-19 19:10:49',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9278,'4000','41703002248','2023-12-19 19:10:49',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(9279,'1000','41703004160','2023-12-19 19:42:42',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9280,'4000','41703004160','2023-12-19 19:42:42',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(9281,'1000','41703004182','2023-12-19 19:43:03',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9282,'4000','41703004182','2023-12-19 19:43:03',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9283,'1000','41703057317','2023-12-20 10:28:38',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9284,'4000','41703057317','2023-12-20 10:28:38',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9285,'1000','41703059911','2023-12-20 11:12:11',1000.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9286,'4000','41703059911','2023-12-20 11:12:11',NULL,600.00,'','4','1','Good sold','1','','sales','42','','No',NULL,NULL,''),(9287,'4000','41703059911','2023-12-20 11:11:51',NULL,200.00,'','4','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(9288,'4000','41703059911','2023-12-20 11:12:05',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(9289,'1000','41703077991','2023-12-20 16:13:12',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9290,'4000','41703077991','2023-12-20 16:13:12',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(9291,'1000','41703078105','2023-12-20 16:15:13',1050.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9292,'4000','41703078105','2023-12-20 16:15:13',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(9293,'4000','41703078105','2023-12-20 16:15:05',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(9294,'4000','41703078105','2023-12-20 16:15:09',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(9295,'1000','41703079973','2023-12-20 16:46:14',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9296,'4000','41703079973','2023-12-20 16:46:14',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(9297,'1000','41703082986','2023-12-20 17:36:27',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9298,'4000','41703082986','2023-12-20 17:36:27',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9299,'1000','41703083046','2023-12-20 17:37:27',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9300,'4000','41703083046','2023-12-20 17:37:27',NULL,250.00,'','4','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(9301,'1000','41703083589','2023-12-20 17:46:31',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9302,'4000','41703083589','2023-12-20 17:46:31',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(9303,'1000','41703085340','2023-12-20 18:15:42',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9304,'4000','41703085340','2023-12-20 18:15:42',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(9305,'1000','41703093436','2023-12-20 20:30:52',550.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9306,'4000','41703093436','2023-12-20 20:30:52',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9307,'4000','41703093436','2023-12-20 20:30:36',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(9308,'1000','41703152034','2023-12-21 12:47:19',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9309,'4000','41703152034','2023-12-21 12:47:19',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9310,'4000','41703152034','2023-12-21 12:47:14',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9311,'1000','41703171569','2023-12-21 18:12:50',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9312,'4000','41703171569','2023-12-21 18:12:50',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(9313,'1000','41703179084','2023-12-21 20:18:05',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9314,'4000','41703179084','2023-12-21 20:18:05',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(9315,'1000','41703179372','2023-12-21 20:47:34',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9316,'4000','41703179372','2023-12-21 20:47:34',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9317,'4000','41703179372','2023-12-21 20:22:52',NULL,150.00,'','4','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(9318,'1000','41703181428','2023-12-21 20:57:09',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9319,'4000','41703181428','2023-12-21 20:57:09',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(9320,'1000','41703231587','2023-12-22 10:53:17',560.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9321,'4000','41703231587','2023-12-22 10:53:17',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(9322,'4000','41703231587','2023-12-22 10:53:07',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(9323,'1000','41703231623','2023-12-22 10:53:44',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9324,'4000','41703231623','2023-12-22 10:53:44',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(9325,'1000','41703232449','2023-12-22 11:07:30',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9326,'4000','41703232449','2023-12-22 11:07:30',NULL,250.00,'','4','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(9327,'1000','41703256268','2023-12-22 17:44:29',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9328,'4000','41703256268','2023-12-22 17:44:29',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(9329,'1000','41703256504','2023-12-22 17:48:25',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9330,'4000','41703256504','2023-12-22 17:48:25',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9331,'1000','41703318843','2023-12-23 11:07:32',500.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9332,'4000','41703318843','2023-12-23 11:07:32',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(9333,'4000','41703318843','2023-12-23 11:07:23',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9334,'1000','41703318870','2023-12-23 11:07:51',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9335,'4000','41703318870','2023-12-23 11:07:51',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9336,'1000','41703320278','2023-12-23 11:31:19',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9337,'4000','41703320278','2023-12-23 11:31:19',NULL,200.00,'','4','1','Good sold','1','','sales','9','','No',NULL,NULL,''),(9338,'1000','41703335506','2023-12-23 15:45:07',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9339,'4000','41703335506','2023-12-23 15:45:07',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(9340,'1000','41703339366','2023-12-23 16:49:59',830.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9341,'4000','41703339366','2023-12-23 16:49:59',NULL,300.00,'','4','1','Good sold','1','','sales','28','','No',NULL,NULL,''),(9342,'4000','41703339366','2023-12-23 16:49:26',NULL,330.00,'','4','1','Good sold','1','','sales','30','','No',NULL,NULL,''),(9343,'4000','41703339366','2023-12-23 16:49:34',NULL,100.00,'','4','1','Good sold','1','','sales','26','','No',NULL,NULL,''),(9344,'4000','41703339366','2023-12-23 16:49:54',NULL,100.00,'','4','1','Good sold','1','','sales','26','','No',NULL,NULL,''),(9345,'1000','41703342505','2023-12-23 17:41:47',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9346,'4000','41703342505','2023-12-23 17:41:47',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(9347,'1000','41703357324','2023-12-23 21:48:45',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9348,'4000','41703357324','2023-12-23 21:48:45',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(9349,'1000','41703426220','2023-12-24 16:57:01',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9350,'4000','41703426220','2023-12-24 16:57:01',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(9351,'1000','41703426238','2023-12-24 16:57:25',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9352,'4000','41703426238','2023-12-24 16:57:25',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(9353,'1000','41703434481','2023-12-24 19:14:46',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9354,'4000','41703434481','2023-12-24 19:14:46',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9355,'1000','41703435821','2023-12-24 19:37:02',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9356,'4000','41703435821','2023-12-24 19:37:02',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(9357,'1000','41703496035','2023-12-25 12:20:37',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9358,'4000','41703496035','2023-12-25 12:20:37',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9359,'1000','41703604523','2023-12-26 18:28:44',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9360,'4000','41703604523','2023-12-26 18:28:44',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(9361,'1000','41703606124','2023-12-26 18:55:25',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9362,'4000','41703606124','2023-12-26 18:55:25',NULL,150.00,'','4','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(9363,'1000','41703606154','2023-12-26 18:56:23',1500.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9364,'4000','41703606154','2023-12-26 18:56:23',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(9365,'4000','41703606154','2023-12-26 18:55:54',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(9366,'4000','41703606154','2023-12-26 18:55:59',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(9367,'4000','41703606154','2023-12-26 18:56:03',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(9368,'4000','41703606154','2023-12-26 18:56:08',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(9369,'4000','41703606154','2023-12-26 18:56:19',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(9370,'1000','41703609663','2023-12-26 19:54:25',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9371,'4000','41703609663','2023-12-26 19:54:25',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(9372,'1000','41703609693','2023-12-26 19:54:54',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9373,'4000','41703609693','2023-12-26 19:54:54',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(9374,'1000','41703614684','2023-12-26 21:18:06',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9375,'4000','41703614684','2023-12-26 21:18:06',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(9376,'1000','41703666589','2023-12-27 11:43:10',600.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9377,'4000','41703666589','2023-12-27 11:43:10',NULL,600.00,'','4','1','Good sold','1','','sales','40','','No',NULL,NULL,''),(9378,'1000','41703666669','2023-12-27 11:44:40',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9379,'4000','41703666669','2023-12-27 11:44:40',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(9380,'4000','41703666669','2023-12-27 11:44:29',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(9381,'1000','41703666990','2023-12-27 11:49:51',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9382,'4000','41703666990','2023-12-27 11:49:51',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(9383,'1000','41703667009','2023-12-27 11:50:10',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9384,'4000','41703667009','2023-12-27 11:50:10',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9385,'1000','41703678173','2023-12-27 14:56:14',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9386,'4000','41703678173','2023-12-27 14:56:14',NULL,150.00,'','4','1','Good sold','1','','sales','59','','No',NULL,NULL,''),(9387,'1000','41703691863','2023-12-27 18:44:24',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9388,'4000','41703691863','2023-12-27 18:44:24',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(9389,'1000','41703692406','2023-12-27 18:53:32',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9390,'4000','41703692406','2023-12-27 18:53:32',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9391,'4000','41703692406','2023-12-27 18:53:26',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9392,'1000','41703693512','2023-12-27 19:11:54',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9393,'4000','41703693512','2023-12-27 19:11:54',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(9394,'1000','41703694221','2023-12-27 19:23:42',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9395,'4000','41703694221','2023-12-27 19:23:42',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9396,'1000','41703696358','2023-12-27 19:59:19',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9397,'4000','41703696358','2023-12-27 19:59:19',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(9398,'1000','41703698470','2023-12-27 20:34:38',500.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9399,'4000','41703698470','2023-12-27 20:34:38',NULL,150.00,'','4','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(9400,'4000','41703698470','2023-12-27 20:34:30',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(9401,'1000','41703701782','2023-12-27 21:29:43',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9402,'4000','41703701782','2023-12-27 21:29:43',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(9403,'1000','41703703637','2023-12-27 22:00:38',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9404,'4000','41703703637','2023-12-27 22:00:38',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(9405,'1000','41703754824','2023-12-28 12:13:45',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9406,'4000','41703754824','2023-12-28 12:13:45',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(9407,'1000','41703765127','2023-12-28 15:05:28',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9408,'4000','41703765127','2023-12-28 15:05:28',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(9409,'1000','41703769615','2023-12-28 16:20:17',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9410,'4000','41703769615','2023-12-28 16:20:17',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9411,'1000','41703771841','2023-12-28 16:57:22',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9412,'4000','41703771841','2023-12-28 16:57:22',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(9413,'1000','41703773249','2023-12-28 17:20:51',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9414,'4000','41703773249','2023-12-28 17:20:51',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9415,'1000','41703833515','2023-12-29 10:05:26',600.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9416,'4000','41703833515','2023-12-29 10:05:26',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9417,'4000','41703833515','2023-12-29 10:05:15',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(9418,'4000','41703833515','2023-12-29 10:05:22',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(9419,'1000','41703851837','2023-12-29 15:10:38',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9420,'4000','41703851837','2023-12-29 15:10:38',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9421,'1000','41703857473','2023-12-29 16:44:34',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9422,'4000','41703857473','2023-12-29 16:44:34',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(9423,'1000','41703922740','2023-12-30 10:52:21',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9424,'4000','41703922740','2023-12-30 10:52:21',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9425,'1000','41703924592','2023-12-30 11:23:13',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9426,'4000','41703924592','2023-12-30 11:23:13',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9427,'1000','41703935751','2023-12-30 14:29:12',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9428,'4000','41703935751','2023-12-30 14:29:12',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(9429,'1000','41703942106','2023-12-30 16:15:08',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9430,'4000','41703942106','2023-12-30 16:15:08',NULL,150.00,'','4','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(9431,'1000','41703946018','2023-12-30 17:20:19',600.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9432,'4000','41703946018','2023-12-30 17:20:19',NULL,600.00,'','4','1','Good sold','1','','sales','42','','No',NULL,NULL,''),(9433,'1000','41703950314','2023-12-30 18:31:55',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9434,'4000','41703950314','2023-12-30 18:31:55',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9435,'1000','41703951827','2023-12-30 18:57:08',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9436,'4000','41703951827','2023-12-30 18:57:08',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(9437,'1000','41703955913','2023-12-30 20:05:18',560.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9438,'4000','41703955913','2023-12-30 20:05:18',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(9439,'4000','41703955913','2023-12-30 20:05:13',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(9440,'1000','41704008109','2023-12-31 10:35:25',960.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9441,'4000','41704008109','2023-12-31 10:35:25',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(9442,'4000','41704008109','2023-12-31 10:35:09',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(9443,'4000','41704008109','2023-12-31 10:35:12',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(9444,'4000','41704008109','2023-12-31 10:35:21',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(9445,'1000','41704011103','2023-12-31 11:25:10',450.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9446,'4000','41704011103','2023-12-31 11:25:10',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(9447,'4000','41704011103','2023-12-31 11:25:03',NULL,200.00,'','4','1','Good sold','1','','sales','46','','No',NULL,NULL,''),(9448,'1000','41704023630','2023-12-31 14:53:51',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9449,'4000','41704023630','2023-12-31 14:53:51',NULL,150.00,'','4','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(9450,'1000','41704024365','2023-12-31 15:06:06',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9451,'4000','41704024365','2023-12-31 15:06:06',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(9452,'1000','41704025420','2023-12-31 15:23:41',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9453,'4000','41704025420','2023-12-31 15:23:41',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(9454,'1000','41704031802','2023-12-31 17:10:03',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9455,'4000','41704031802','2023-12-31 17:10:03',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(9456,'1000','41704107801','2024-01-01 14:16:43',700.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9457,'4000','41704107801','2024-01-01 14:16:43',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(9458,'4000','41704107801','2024-01-01 14:16:41',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(9459,'1000','41704112387','2024-01-01 15:33:08',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9460,'4000','41704112387','2024-01-01 15:33:08',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(9461,'1000','41704115245','2024-01-01 16:20:46',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9462,'4000','41704115245','2024-01-01 16:20:46',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9463,'1000','41704117581','2024-01-01 16:59:42',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9464,'4000','41704117581','2024-01-01 16:59:42',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(9465,'1000','41704127413','2024-01-01 19:43:34',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9466,'4000','41704127413','2024-01-01 19:43:34',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(9467,'1000','41704127427','2024-01-01 19:43:48',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9468,'4000','41704127427','2024-01-01 19:43:48',NULL,250.00,'','4','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(9469,'1000','41704127435','2024-01-01 19:43:56',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9470,'4000','41704127435','2024-01-01 19:43:56',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(9471,'1000','41704131130','2024-01-01 20:45:55',780.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9472,'4000','41704131130','2024-01-01 20:45:55',NULL,200.00,'','4','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(9473,'4000','41704131130','2024-01-01 20:45:30',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(9474,'4000','41704131130','2024-01-01 20:45:37',NULL,100.00,'','4','1','Good sold','1','','sales','26','','No',NULL,NULL,''),(9475,'4000','41704131130','2024-01-01 20:45:48',NULL,100.00,'','4','1','Good sold','1','','sales','26','','No',NULL,NULL,''),(9476,'4000','41704131130','2024-01-01 20:45:51',NULL,100.00,'','4','1','Good sold','1','','sales','26','','No',NULL,NULL,''),(9477,'1000','41704182826','2024-01-02 11:07:07',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9478,'4000','41704182826','2024-01-02 11:07:07',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9479,'1000','41704182843','2024-01-02 11:07:24',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9480,'4000','41704182843','2024-01-02 11:07:24',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(9481,'1000','41704194284','2024-01-02 14:18:09',700.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9482,'4000','41704194284','2024-01-02 14:18:09',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(9483,'4000','41704194284','2024-01-02 14:18:04',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(9484,'1000','41704199167','2024-01-02 15:39:28',300.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9485,'4000','41704199167','2024-01-02 15:39:28',NULL,300.00,'','4','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(9486,'1000','61704210932','2024-01-02 18:55:33',150.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9487,'4000','61704210932','2024-01-02 18:55:33',NULL,150.00,'','6','1','Good sold','1','','sales','52','','No',NULL,NULL,''),(9488,'1000','61704210963','2024-01-02 18:56:11',750.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9489,'4000','61704210963','2024-01-02 18:56:11',NULL,250.00,'','6','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(9490,'4000','61704210963','2024-01-02 18:56:03',NULL,250.00,'','6','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(9491,'4000','61704210963','2024-01-02 18:56:07',NULL,250.00,'','6','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(9492,'1000','61704211862','2024-01-02 19:11:03',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9493,'4000','61704211862','2024-01-02 19:11:03',NULL,200.00,'','6','1','Good sold','1','','sales','47','','No',NULL,NULL,''),(9494,'1000','61704218720','2024-01-02 21:05:22',350.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9495,'4000','61704218720','2024-01-02 21:05:22',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(9496,'1000','61704281209','2024-01-03 14:26:50',280.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9497,'4000','61704281209','2024-01-03 14:26:50',NULL,280.00,'','6','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(9498,'1000','61704292012','2024-01-03 17:26:53',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9499,'4000','61704292012','2024-01-03 17:26:53',NULL,200.00,'','6','1','Good sold','1','','sales','9','','No',NULL,NULL,''),(9500,'1000','61704292198','2024-01-03 17:29:59',100.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9501,'4000','61704292198','2024-01-03 17:29:59',NULL,100.00,'','6','1','Good sold','1','','sales','27','','No',NULL,NULL,''),(9502,'1000','61704296650','2024-01-03 18:44:11',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9503,'4000','61704296650','2024-01-03 18:44:11',NULL,200.00,'','6','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(9504,'1000','61704299660','2024-01-03 19:34:35',700.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9505,'4000','61704299660','2024-01-03 19:34:35',NULL,250.00,'','6','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(9506,'4000','61704299660','2024-01-03 19:34:20',NULL,250.00,'','6','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(9507,'4000','61704299660','2024-01-03 19:34:24',NULL,200.00,'','6','1','Good sold','1','','sales','20','','No',NULL,NULL,''),(9508,'1000','61704305891','2024-01-03 21:18:12',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9509,'4000','61704305891','2024-01-03 21:18:12',NULL,200.00,'','6','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(9510,'1000','61704357207','2024-01-04 11:33:28',280.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9511,'4000','61704357207','2024-01-04 11:33:28',NULL,280.00,'','6','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(9512,'1000','61704359307','2024-01-04 12:08:28',280.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9513,'4000','61704359307','2024-01-04 12:08:28',NULL,280.00,'','6','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(9514,'1000','61704371921','2024-01-04 15:38:42',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9515,'4000','61704371921','2024-01-04 15:38:42',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9516,'1000','41704374914','2024-01-04 16:28:35',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9517,'4000','41704374914','2024-01-04 16:28:35',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9518,'1000','41704377157','2024-01-04 17:05:58',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9519,'4000','41704377157','2024-01-04 17:05:58',NULL,350.00,'','4','1','Good sold','1','','sales','54','','No',NULL,NULL,''),(9520,'1000','41704379789','2024-01-04 17:49:50',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9521,'4000','41704379789','2024-01-04 17:49:50',NULL,200.00,'','4','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(9522,'1000','41704384662','2024-01-04 19:11:03',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9523,'4000','41704384662','2024-01-04 19:11:03',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9524,'1000','41704384692','2024-01-04 19:11:33',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9525,'4000','41704384692','2024-01-04 19:11:33',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9526,'1000','61704390756','2024-01-04 20:52:38',300.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9527,'4000','61704390756','2024-01-04 20:52:38',NULL,300.00,'','6','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(9528,'1000','61704442890','2024-01-05 11:21:31',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9529,'4000','61704442890','2024-01-05 11:21:31',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9530,'1000','61704452224','2024-01-05 13:57:05',250.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9531,'4000','61704452224','2024-01-05 13:57:05',NULL,250.00,'','6','1','Good sold','1','','sales','2','','No',NULL,NULL,''),(9532,'1000','41704460750','2024-01-05 16:19:12',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9533,'4000','41704460750','2024-01-05 16:19:12',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9534,'1000','61704467883','2024-01-05 18:18:05',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9535,'4000','61704467883','2024-01-05 18:18:05',NULL,200.00,'','6','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(9536,'1000','61704470256','2024-01-05 18:57:38',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9537,'4000','61704470256','2024-01-05 18:57:38',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9538,'1000','61704470352','2024-01-05 18:59:13',350.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9539,'4000','61704470352','2024-01-05 18:59:13',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(9540,'1000','41704470389','2024-01-05 18:59:53',380.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9541,'4000','41704470389','2024-01-05 18:59:53',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(9542,'4000','41704470389','2024-01-05 18:59:49',NULL,30.00,'','4','1','Good sold','1','','sales','58','','No',NULL,NULL,''),(9543,'1000','41704471672','2024-01-05 19:21:18',400.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9544,'4000','41704471672','2024-01-05 19:21:18',NULL,200.00,'','4','1','Good sold','1','','sales','18','','No',NULL,NULL,''),(9545,'4000','41704471672','2024-01-05 19:21:12',NULL,200.00,'','4','1','Good sold','1','','sales','18','','No',NULL,NULL,''),(9546,'1000','61704474640','2024-01-05 20:10:41',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9547,'4000','61704474640','2024-01-05 20:10:41',NULL,200.00,'','6','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9548,'1000','41704476098','2024-01-05 20:34:59',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9549,'4000','41704476098','2024-01-05 20:34:59',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9550,'1000','41704479202','2024-01-05 21:26:43',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9551,'4000','41704479202','2024-01-05 21:26:43',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(9552,'1000','41704479335','2024-01-05 21:28:56',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9553,'4000','41704479335','2024-01-05 21:28:56',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(9554,'1000','41704481377','2024-01-05 22:04:04',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9555,'4000','41704481377','2024-01-05 22:04:04',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9556,'1000','61704532785','2024-01-06 12:19:47',350.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9557,'4000','61704532785','2024-01-06 12:19:47',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(9558,'1000','41704551132','2024-01-06 17:25:33',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9559,'4000','41704551132','2024-01-06 17:25:33',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(9560,'1000','41704551154','2024-01-06 17:25:55',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9561,'4000','41704551154','2024-01-06 17:25:55',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(9562,'1000','41704551623','2024-01-06 17:33:44',150.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9563,'4000','41704551623','2024-01-06 17:33:44',NULL,150.00,'','4','1','Good sold','1','','sales','8','','No',NULL,NULL,''),(9564,'1000','61704551769','2024-01-06 17:36:11',350.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9565,'4000','61704551769','2024-01-06 17:36:11',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(9566,'1000','61704551969','2024-01-06 17:39:30',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9567,'4000','61704551969','2024-01-06 17:39:30',NULL,200.00,'','6','1','Good sold','1','','sales','17','','No',NULL,NULL,''),(9568,'1000','61704552767','2024-01-06 17:52:48',600.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9569,'4000','61704552767','2024-01-06 17:52:48',NULL,600.00,'','6','1','Good sold','1','','sales','40','','No',NULL,NULL,''),(9570,'1000','41704552809','2024-01-06 17:53:30',600.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9571,'4000','41704552809','2024-01-06 17:53:30',NULL,600.00,'','4','1','Good sold','1','','sales','40','','No',NULL,NULL,''),(9574,'1000','61704555768','2024-01-06 18:42:49',600.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9575,'4000','61704555768','2024-01-06 18:42:49',NULL,600.00,'','6','1','Good sold','1','','sales','40','','No',NULL,NULL,''),(9576,'1000','41704625297','2024-01-07 14:01:38',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9577,'4000','41704625297','2024-01-07 14:01:38',NULL,200.00,'','4','1','Good sold','1','','sales','21','','No',NULL,NULL,''),(9578,'1000','41704626711','2024-01-07 14:25:12',350.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9579,'4000','41704626711','2024-01-07 14:25:12',NULL,350.00,'','4','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(9580,'1000','61704631596','2024-01-07 15:46:37',300.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9581,'4000','61704631596','2024-01-07 15:46:37',NULL,300.00,'','6','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(9582,'1000','61704632507','2024-01-07 16:01:48',150.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9583,'4000','61704632507','2024-01-07 16:01:48',NULL,150.00,'','6','1','Good sold','1','','sales','4','','No',NULL,NULL,''),(9584,'1000','61704637323','2024-01-07 17:22:04',300.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9585,'4000','61704637323','2024-01-07 17:22:04',NULL,300.00,'','6','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(9586,'1000','61704639617','2024-01-07 18:00:18',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9587,'4000','61704639617','2024-01-07 18:00:18',NULL,200.00,'','6','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(9588,'1000','41704641613','2024-01-07 18:35:27',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9589,'4000','41704641613','2024-01-07 18:35:27',NULL,280.00,'','4','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(9590,'1000','41704641834','2024-01-07 18:37:15',200.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9591,'4000','41704641834','2024-01-07 18:37:15',NULL,200.00,'','4','1','Good sold','1','','sales','3','','No',NULL,NULL,''),(9592,'1110','41704642000','2024-01-07 18:44:34',NULL,650.00,'','4','1','Inventory sold','1','','sales','50','','No',NULL,NULL,''),(9593,'5500','41704642000','2024-01-07 18:40:00',650.00,NULL,'','4','1','Cost of goods sold','1','','sales','','','No',NULL,NULL,''),(9594,'1000','41704642000','2024-01-07 18:44:34',800.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9595,'4000','41704642000','2024-01-07 18:44:34',NULL,800.00,'','4','1','Good sold','1','','sales','50','','No',NULL,NULL,''),(9596,'1000','41704642526','2024-01-07 18:48:47',280.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9597,'4000','41704642526','2024-01-07 18:48:47',NULL,280.00,'','4','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(9598,'1000','61704644733','2024-01-07 19:25:43',300.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9599,'4000','61704644733','2024-01-07 19:25:43',NULL,200.00,'','6','1','Good sold','1','','sales','12','','No',NULL,NULL,''),(9600,'4000','61704644733','2024-01-07 19:25:33',NULL,100.00,'','6','1','Good sold','1','','sales','25','','No',NULL,NULL,''),(9601,'1000','41704647272','2024-01-07 20:07:53',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9602,'4000','41704647272','2024-01-07 20:07:53',NULL,250.00,'','4','1','Good sold','1','','sales','23','','No',NULL,NULL,''),(9603,'1000','41704700586','2024-01-08 10:56:27',250.00,NULL,'','4','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9604,'4000','41704700586','2024-01-08 10:56:27',NULL,250.00,'','4','1','Good sold','1','','sales','22','','No',NULL,NULL,''),(9605,'1000','61704892509','2024-01-10 16:15:10',350.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9606,'4000','61704892509','2024-01-10 16:15:10',NULL,350.00,'','6','1','Good sold','1','','sales','38','','No',NULL,NULL,''),(9607,'1000','61704895130','2024-01-10 16:58:51',250.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9608,'4000','61704895130','2024-01-10 16:58:51',NULL,250.00,'','6','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(9609,'1000','61704895158','2024-01-10 16:59:19',280.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9610,'4000','61704895158','2024-01-10 16:59:19',NULL,280.00,'','6','1','Good sold','1','','sales','5','','No',NULL,NULL,''),(9611,'1000','61704898275','2024-01-10 17:51:17',250.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9612,'4000','61704898275','2024-01-10 17:51:17',NULL,250.00,'','6','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(9613,'1000','61704901485','2024-01-10 18:45:00',650.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9614,'4000','61704901485','2024-01-10 18:45:00',NULL,250.00,'','6','1','Good sold','1','','sales','11','','No',NULL,NULL,''),(9615,'4000','61704901485','2024-01-10 18:44:46',NULL,200.00,'','6','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(9616,'4000','61704901485','2024-01-10 18:44:57',NULL,200.00,'','6','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(9617,'1000','61704902969','2024-01-10 19:09:30',250.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9618,'4000','61704902969','2024-01-10 19:09:30',NULL,250.00,'','6','1','Good sold','1','','sales','1','','No',NULL,NULL,''),(9619,'1000','61704903503','2024-01-10 19:18:24',200.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9620,'4000','61704903503','2024-01-10 19:18:24',NULL,200.00,'','6','1','Good sold','1','','sales','7','','No',NULL,NULL,''),(9621,'1000','61704912691','2024-01-10 21:51:32',250.00,NULL,'','6','1','Good sold','1','','Payment','','','No',NULL,NULL,''),(9622,'4000','61704912691','2024-01-10 21:51:32',NULL,250.00,'','6','1','Good sold','1','','sales','1','','No',NULL,NULL,''); /*!40000 ALTER TABLE `debitcredit` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `delivery` -- DROP TABLE IF EXISTS `delivery`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `delivery` ( `id` int(11) NOT NULL AUTO_INCREMENT, `itemid` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'new', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `code` varchar(30) NOT NULL, `branch` varchar(30) NOT NULL, `qty` varchar(10) NOT NULL, `buyingprice` decimal(10,2) NOT NULL, `sellingprice` decimal(10,2) NOT NULL, `invoice` varchar(50) DEFAULT NULL, `serial` varchar(50) NOT NULL, `orderno` varchar(50) NOT NULL, `name` text NOT NULL, `description` text NOT NULL, `batchno` int(11) NOT NULL, `myid` int(50) NOT NULL, `staff` int(11) NOT NULL, `shipping` decimal(10,2) NOT NULL, `commission` decimal(10,2) NOT NULL, `ordereddate` varchar(50) NOT NULL, `supplier` int(11) NOT NULL DEFAULT 1, `profit` varchar(20) NOT NULL, `commissionrate` varchar(20) NOT NULL, `type` varchar(30) NOT NULL, `mode` varchar(30) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `delivery` -- LOCK TABLES `delivery` WRITE; /*!40000 ALTER TABLE `delivery` DISABLE KEYS */; /*!40000 ALTER TABLE `delivery` 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 = utf8mb4 */; CREATE TABLE `department` ( `id` int(50) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `description` text NOT NULL, `faculty_id` int(11) NOT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!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 (1,'ICT','',0,'0000-00-00 00:00:00','0000-00-00 00:00:00'); /*!40000 ALTER TABLE `department` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `depositrefunds` -- DROP TABLE IF EXISTS `depositrefunds`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `depositrefunds` ( `id` int(100) NOT NULL AUTO_INCREMENT, `houseno` varchar(100) NOT NULL, `type` varchar(40) NOT NULL, `description` text NOT NULL, `plotno` varchar(100) NOT NULL, `balance` decimal(10,2) NOT NULL, `status` varchar(100) NOT NULL, `createdat` varchar(100) NOT NULL, `updatedat` varchar(100) NOT NULL, `userid` varchar(100) NOT NULL, `companyid` varchar(100) NOT NULL, `branchid` int(30) NOT NULL DEFAULT 1, `amount` decimal(10,2) NOT NULL, `before` varchar(20) DEFAULT NULL, `after` varchar(20) DEFAULT NULL, `bookingid` int(20) NOT NULL, `tenantid` int(11) NOT NULL, `receiptno` varchar(50) NOT NULL, `transactioncode` varchar(50) NOT NULL, `mode` varchar(30) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `depositrefunds` -- LOCK TABLES `depositrefunds` WRITE; /*!40000 ALTER TABLE `depositrefunds` DISABLE KEYS */; /*!40000 ALTER TABLE `depositrefunds` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `device` -- DROP TABLE IF EXISTS `device`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `device` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) DEFAULT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `device` -- LOCK TABLES `device` WRITE; /*!40000 ALTER TABLE `device` DISABLE KEYS */; /*!40000 ALTER TABLE `device` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `discount` -- DROP TABLE IF EXISTS `discount`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `discount` ( `id` int(11) NOT NULL AUTO_INCREMENT, `discount` varchar(50) NOT NULL, `name` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `branchid` int(11) NOT NULL DEFAULT 1, `type` varchar(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `discount` -- LOCK TABLES `discount` WRITE; /*!40000 ALTER TABLE `discount` DISABLE KEYS */; INSERT INTO `discount` VALUES (1,'1000','BASIC','2023-05-16 14:12:30','active','1','','1',1,'Amount'),(2,'10','PREMIUM DISCOUNT','2023-11-11 07:36:57','active','1','','1',1,'Percentage'); /*!40000 ALTER TABLE `discount` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `distribution` -- DROP TABLE IF EXISTS `distribution`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `distribution` ( `id` int(11) NOT NULL AUTO_INCREMENT, `itemid` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'new', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `code` varchar(30) NOT NULL, `branch` varchar(30) NOT NULL, `qty` varchar(10) NOT NULL, `buyingprice` decimal(10,2) NOT NULL, `sellingprice` decimal(10,2) NOT NULL, `invoice` varchar(50) DEFAULT NULL, `serial` varchar(50) NOT NULL, `orderno` varchar(50) NOT NULL, `name` text NOT NULL, `description` text NOT NULL, `batchno` int(11) NOT NULL, `myid` int(50) NOT NULL, `staff` int(11) NOT NULL, `shipping` decimal(10,2) NOT NULL, `commission` decimal(10,2) NOT NULL, `ordereddate` varchar(50) NOT NULL, `supplier` int(11) NOT NULL DEFAULT 1, `profit` varchar(20) NOT NULL, `commissionrate` varchar(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `distribution` -- LOCK TABLES `distribution` WRITE; /*!40000 ALTER TABLE `distribution` DISABLE KEYS */; /*!40000 ALTER TABLE `distribution` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `district` -- DROP TABLE IF EXISTS `district`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `district` ( `id` int(30) NOT NULL, `code` varchar(50) NOT NULL, `countyid` varchar(10) NOT NULL, `name` varchar(255) DEFAULT NULL, `description` text DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `provincecode` int(11) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `code` (`code`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `district` -- LOCK TABLES `district` WRITE; /*!40000 ALTER TABLE `district` DISABLE KEYS */; /*!40000 ALTER TABLE `district` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `documents` -- DROP TABLE IF EXISTS `documents`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `documents` ( `id` int(50) NOT NULL AUTO_INCREMENT, `documentname` varchar(100) NOT NULL, `idno` varchar(50) NOT NULL, `category` varchar(100) NOT NULL, `name` text NOT NULL, `dateposted` varchar(100) NOT NULL, `description` text NOT NULL, `userid` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `entrydate` varchar(50) NOT NULL, `img_id` varchar(100) NOT NULL, `companyid` varchar(50) NOT NULL, `mydocuments` text DEFAULT NULL, `invoice` varchar(50) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `documents` -- LOCK TABLES `documents` WRITE; /*!40000 ALTER TABLE `documents` DISABLE KEYS */; /*!40000 ALTER TABLE `documents` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `doorlock` -- DROP TABLE IF EXISTS `doorlock`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `doorlock` ( `id` int(20) NOT NULL AUTO_INCREMENT, `type` varchar(40) NOT NULL, `description` text NOT NULL, `status` varchar(40) NOT NULL, `createdat` varchar(100) NOT NULL, `updatedat` varchar(100) NOT NULL, `userid` varchar(100) NOT NULL, `name` varchar(50) NOT NULL, `companyid` int(5) NOT NULL DEFAULT 1, `branchid` int(20) DEFAULT NULL, `guest` varchar(50) NOT NULL, `roomtype` varchar(50) NOT NULL, `roomno` varchar(50) NOT NULL, `guesttype` varchar(50) NOT NULL, `chargetype` varchar(50) NOT NULL, `issuedqty` varchar(50) NOT NULL, `recycledcardqty` varchar(50) NOT NULL, `state` varchar(50) NOT NULL, `checkintime` varchar(50) NOT NULL, `departuretime` varchar(50) NOT NULL, `vouchertype` varchar(50) NOT NULL, `voucherno` varchar(50) NOT NULL, `checkouttime` varchar(50) NOT NULL, `area1` varchar(50) NOT NULL, `area2` varchar(50) NOT NULL, `operator` varchar(50) NOT NULL, `remark` varchar(50) NOT NULL, `familyroom` varchar(50) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `doorlock` -- LOCK TABLES `doorlock` WRITE; /*!40000 ALTER TABLE `doorlock` DISABLE KEYS */; /*!40000 ALTER TABLE `doorlock` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `email_accounts` -- DROP TABLE IF EXISTS `email_accounts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `email_accounts` ( `id` int(11) NOT NULL AUTO_INCREMENT, `email` varchar(50) NOT NULL, `password` varchar(100) NOT NULL, `smtp_host` varchar(50) NOT NULL, `smtp_port` int(11) NOT NULL, `userid` int(11) NOT NULL, `companyid` int(11) NOT NULL, `name` varchar(50) NOT NULL, `server` int(11) NOT NULL, `createdate` varchar(30) NOT NULL, `protocol` varchar(30) NOT NULL DEFAULT 'smtp', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `email_accounts` -- LOCK TABLES `email_accounts` WRITE; /*!40000 ALTER TABLE `email_accounts` DISABLE KEYS */; INSERT INTO `email_accounts` VALUES (1,'marketing@mombasacontinental.com','Pass@123','mail.mombasacontinental.com',587,1,465,'ROBISEARCH LTD/TASK MANAGER',1,'','mail/smtp'),(2,'support@robisearch.com','support!@##@!','ssl://mail.robisearch.com',465,1,1,'ROBISEARCH LTD/TASK MANAGER',2,'2019-06-23 05:28:28pm','smtp'),(3,'oukobert@gmail.com','0718667391','ssl://smtp.googlemail.com',465,1,1,'robisearch',1,'2019-11-04 11:00:33am','smtp'); /*!40000 ALTER TABLE `email_accounts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `employeecharges` -- DROP TABLE IF EXISTS `employeecharges`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `employeecharges` ( `id` int(11) NOT NULL AUTO_INCREMENT, `code` varchar(20) NOT NULL, `name` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'Active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `category` varchar(20) NOT NULL DEFAULT 'Minus', `amountmode` varchar(20) NOT NULL, `qtymode` varchar(20) NOT NULL, `quantity` decimal(10,2) NOT NULL, `amount` decimal(10,2) NOT NULL, `unit` varchar(50) NOT NULL, `memberid` int(11) NOT NULL, `statutory` varchar(20) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `employeecharges` -- LOCK TABLES `employeecharges` WRITE; /*!40000 ALTER TABLE `employeecharges` DISABLE KEYS */; INSERT INTO `employeecharges` VALUES (1,'8','PAYE','2023-06-09 13:31:34','Active','1','','1','Deduction','Fixed','Fixed',1.00,72.50,'',1,'PAYE'),(2,'9','NSSF','2023-06-09 13:31:45','Active','1','','1','Deduction','Fixed','Fixed',1.00,200.00,'',1,'NSSF'),(3,'10','NHIF','2023-06-09 13:31:54','Active','1','','1','Deduction','Fixed','Fixed',1.00,850.00,'',1,'NHIF'),(5,'2005','House Levy','2023-09-01 05:49:18','Active','1','','1','Deduction','Fixed','Fixed',1.00,375.00,'1.5',1,'HOUSE LEVY'); /*!40000 ALTER TABLE `employeecharges` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `employeepayments` -- DROP TABLE IF EXISTS `employeepayments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `employeepayments` ( `id` int(11) NOT NULL AUTO_INCREMENT, `code` varchar(20) NOT NULL, `name` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'Active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `category` varchar(20) NOT NULL DEFAULT 'Minus', `amountmode` varchar(20) NOT NULL, `qtymode` varchar(20) NOT NULL, `quantity` decimal(10,2) NOT NULL, `amount` decimal(10,2) NOT NULL, `unit` varchar(50) NOT NULL, `memberid` int(11) NOT NULL, `salaryid` varchar(100) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=57 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `employeepayments` -- LOCK TABLES `employeepayments` WRITE; /*!40000 ALTER TABLE `employeepayments` DISABLE KEYS */; INSERT INTO `employeepayments` VALUES (1,'2005','House Levy','2023-09-01 06:32:04','Active','1','','1','Deduction','Fixed','Fixed',1.00,14500.00,'0.5',1,'111693539124'),(2,'2','House Allowance','2023-09-01 06:32:04','Active','1','','1','Pay','Fixed','Fixed',1.00,9000.00,'',1,'111693539124'),(3,'10','NHIF','2023-09-01 06:32:04','Active','1','','1','Deduction','Fixed','Fixed',1.00,850.00,'',1,'111693539124'),(4,'9','NSSF','2023-09-01 06:32:04','Active','1','','1','Deduction','Fixed','Fixed',1.00,1080.00,'',1,'111693539124'),(5,'8','PAYE','2023-09-01 06:32:04','Active','1','','1','Deduction','Fixed','Fixed',1.00,852.50,'',1,'111693539124'),(6,'2005','House Levy','2023-09-01 06:33:18','Active','1','','1','Deduction','Fixed','Fixed',1.00,1450.00,'0.05',1,'111693539198'),(7,'2','House Allowance','2023-09-01 06:33:18','Active','1','','1','Pay','Fixed','Fixed',1.00,9000.00,'',1,'111693539198'),(8,'10','NHIF','2023-09-01 06:33:18','Active','1','','1','Deduction','Fixed','Fixed',1.00,850.00,'',1,'111693539198'),(9,'9','NSSF','2023-09-01 06:33:18','Active','1','','1','Deduction','Fixed','Fixed',1.00,1080.00,'',1,'111693539198'),(10,'8','PAYE','2023-09-01 06:33:18','Active','1','','1','Deduction','Fixed','Fixed',1.00,852.50,'',1,'111693539198'),(11,'2005','House Levy','2023-09-01 06:35:17','Active','1','','1','Deduction','Fixed','Fixed',1.00,435.00,'1.5',1,'111693539317'),(12,'2','House Allowance','2023-09-01 06:35:17','Active','1','','1','Pay','Fixed','Fixed',1.00,9000.00,'',1,'111693539317'),(13,'10','NHIF','2023-09-01 06:35:17','Active','1','','1','Deduction','Fixed','Fixed',1.00,850.00,'',1,'111693539317'),(14,'9','NSSF','2023-09-01 06:35:17','Active','1','','1','Deduction','Fixed','Fixed',1.00,1080.00,'',1,'111693539317'),(15,'8','PAYE','2023-09-01 06:35:17','Active','1','','1','Deduction','Fixed','Fixed',1.00,852.50,'',1,'111693539317'),(16,'2005','House Levy','2023-09-02 08:14:21','Active','1','','1','Deduction','Fixed','Fixed',1.00,435.00,'1.5',1,'111693631661'),(17,'2','House Allowance','2023-09-02 08:14:21','Active','1','','1','Pay','Fixed','Fixed',1.00,9000.00,'',1,'111693631661'),(18,'10','NHIF','2023-09-02 08:14:21','Active','1','','1','Deduction','Fixed','Fixed',1.00,850.00,'',1,'111693631661'),(19,'9','NSSF','2023-09-02 08:14:21','Active','1','','1','Deduction','Fixed','Fixed',1.00,1080.00,'',1,'111693631661'),(20,'8','PAYE','2023-09-02 08:14:21','Active','1','','1','Deduction','Fixed','Fixed',1.00,852.50,'',1,'111693631661'),(21,'2005','House Levy','2023-11-01 06:12:34','Active','1','','1','Deduction','Fixed','Fixed',1.00,300.00,'1.5',1,'111698808354'),(22,'10','NHIF','2023-11-01 06:12:34','Active','1','','1','Deduction','Fixed','Fixed',1.00,750.00,'',1,'111698808354'),(23,'9','NSSF','2023-11-01 06:12:34','Active','1','','1','Deduction','Fixed','Fixed',1.00,360.00,'',1,'111698808354'),(24,'8','PAYE','2023-11-01 06:12:34','Active','1','','1','Deduction','Fixed','Fixed',1.00,0.00,'',1,'111698808354'),(25,'2005','House Levy','2023-11-01 06:15:05','Active','1','','1','Deduction','Fixed','Fixed',1.00,300.00,'1.5',1,'111698808505'),(26,'10','NHIF','2023-11-01 06:15:05','Active','1','','1','Deduction','Fixed','Fixed',1.00,750.00,'',1,'111698808505'),(27,'9','NSSF','2023-11-01 06:15:05','Active','1','','1','Deduction','Fixed','Fixed',1.00,360.00,'',1,'111698808505'),(28,'8','PAYE','2023-11-01 06:15:05','Active','1','','1','Deduction','Fixed','Fixed',1.00,0.00,'',1,'111698808505'),(29,'2005','House Levy','2023-11-01 06:17:00','Active','1','','1','Deduction','Fixed','Fixed',1.00,300.00,'1.5',1,'111698808620'),(30,'10','NHIF','2023-11-01 06:17:00','Active','1','','1','Deduction','Fixed','Fixed',1.00,750.00,'',1,'111698808620'),(31,'9','NSSF','2023-11-01 06:17:00','Active','1','','1','Deduction','Fixed','Fixed',1.00,360.00,'',1,'111698808620'),(32,'8','PAYE','2023-11-01 06:17:00','Active','1','','1','Deduction','Fixed','Fixed',1.00,0.00,'',1,'111698808620'),(33,'2005','House Levy','2023-11-01 06:18:51','Active','1','','1','Deduction','Fixed','Fixed',1.00,300.00,'1.5',1,'111698808731'),(34,'10','NHIF','2023-11-01 06:18:51','Active','1','','1','Deduction','Fixed','Fixed',1.00,750.00,'',1,'111698808731'),(35,'9','NSSF','2023-11-01 06:18:51','Active','1','','1','Deduction','Fixed','Fixed',1.00,360.00,'',1,'111698808731'),(36,'8','PAYE','2023-11-01 06:18:51','Active','1','','1','Deduction','Fixed','Fixed',1.00,0.00,'',1,'111698808731'),(37,'2005','House Levy','2023-11-01 06:21:36','Active','1','','1','Deduction','Fixed','Fixed',1.00,300.00,'1.5',1,'111698808896'),(38,'10','NHIF','2023-11-01 06:21:36','Active','1','','1','Deduction','Fixed','Fixed',1.00,750.00,'',1,'111698808896'),(39,'9','NSSF','2023-11-01 06:21:36','Active','1','','1','Deduction','Fixed','Fixed',1.00,360.00,'',1,'111698808896'),(40,'8','PAYE','2023-11-01 06:21:36','Active','1','','1','Deduction','Fixed','Fixed',1.00,0.00,'',1,'111698808896'),(41,'2005','House Levy','2023-11-01 06:28:06','Active','1','','1','Deduction','Fixed','Fixed',1.00,300.00,'1.5',1,'111698809286'),(42,'2005','House Levy','2023-11-01 06:32:34','Active','1','','1','Deduction','Fixed','Fixed',1.00,300.00,'1.5',1,'111698809554'),(43,'10','NHIF','2023-11-01 06:32:34','Active','1','','1','Deduction','Fixed','Fixed',1.00,750.00,'',1,'111698809554'),(44,'9','NSSF','2023-11-01 06:32:34','Active','1','','1','Deduction','Fixed','Fixed',1.00,200.00,'',1,'111698809554'),(45,'2005','House Levy','2023-11-01 06:34:16','Active','1','','1','Deduction','Fixed','Fixed',1.00,300.00,'1.5',1,'111698809656'),(46,'10','NHIF','2023-11-01 06:34:16','Active','1','','1','Deduction','Fixed','Fixed',1.00,750.00,'',1,'111698809656'),(47,'9','NSSF','2023-11-01 06:34:16','Active','1','','1','Deduction','Fixed','Fixed',1.00,200.00,'',1,'111698809656'),(48,'8','PAYE','2023-11-01 06:34:16','Active','1','','1','Deduction','Fixed','Fixed',1.00,0.00,'',1,'111698809656'),(49,'2005','House Levy','2023-11-01 06:36:15','Active','1','','1','Deduction','Fixed','Fixed',1.00,375.00,'1.5',1,'111698809775'),(50,'10','NHIF','2023-11-01 06:36:15','Active','1','','1','Deduction','Fixed','Fixed',1.00,850.00,'',1,'111698809775'),(51,'9','NSSF','2023-11-01 06:36:15','Active','1','','1','Deduction','Fixed','Fixed',1.00,200.00,'',1,'111698809775'),(52,'8','PAYE','2023-11-01 06:36:15','Active','1','','1','Deduction','Fixed','Fixed',1.00,72.50,'',1,'111698809775'),(53,'2005','House Levy','2023-11-01 06:50:17','Active','1','','1','Deduction','Fixed','Fixed',1.00,375.00,'1.5',1,'111698810617'),(54,'10','NHIF','2023-11-01 06:50:17','Active','1','','1','Deduction','Fixed','Fixed',1.00,850.00,'',1,'111698810617'),(55,'9','NSSF','2023-11-01 06:50:17','Active','1','','1','Deduction','Fixed','Fixed',1.00,200.00,'',1,'111698810617'),(56,'8','PAYE','2023-11-01 06:50:17','Active','1','','1','Deduction','Fixed','Fixed',1.00,72.50,'',1,'111698810617'); /*!40000 ALTER TABLE `employeepayments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `evaluation` -- DROP TABLE IF EXISTS `evaluation`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `evaluation` ( `invoice` varchar(100) NOT NULL, `id` int(20) NOT NULL AUTO_INCREMENT, `serialno` varchar(50) NOT NULL, `insuredname` varchar(50) NOT NULL, `insurer` varchar(50) NOT NULL, `expirydate` varchar(50) NOT NULL, `inspectedby` varchar(50) NOT NULL, `contact` varchar(50) NOT NULL, `policyno` varchar(50) NOT NULL, `instructions` text NOT NULL, `registrationno` varchar(50) NOT NULL, `make` varchar(50) NOT NULL, `model` varchar(50) NOT NULL, `colour` varchar(50) NOT NULL, `yom` varchar(50) NOT NULL, `fueltype` varchar(50) NOT NULL, `engineno` varchar(50) NOT NULL, `chassisno` varchar(50) NOT NULL, `mileage` varchar(50) NOT NULL, `enginerating` varchar(50) NOT NULL, `countryoforigin` varchar(50) NOT NULL, `locationofinspection` varchar(50) NOT NULL, `coachwork` varchar(50) NOT NULL, `mechanical` varchar(50) NOT NULL, `electrical` varchar(50) NOT NULL, `tyres` varchar(50) NOT NULL, `generalcondition` text NOT NULL, `assessedvalue` varchar(50) NOT NULL, `features` text NOT NULL, `anittheft` varchar(50) NOT NULL, `windscreenvalue` varchar(50) NOT NULL, `radiovalue` varchar(50) NOT NULL, `remarks` text NOT NULL, `reportdetails` text NOT NULL, `date` date NOT NULL, `pin` varchar(50) NOT NULL, `userid` int(11) NOT NULL, `branchid` int(11) NOT NULL, `companyid` int(11) NOT NULL, `dateposted` varchar(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `evaluation` -- LOCK TABLES `evaluation` WRITE; /*!40000 ALTER TABLE `evaluation` DISABLE KEYS */; /*!40000 ALTER TABLE `evaluation` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `events` -- DROP TABLE IF EXISTS `events`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `events` ( `id` int(50) NOT NULL AUTO_INCREMENT, `title` varchar(100) NOT NULL, `fromdate` varchar(50) NOT NULL, `todate` varchar(50) NOT NULL, `host` varchar(100) NOT NULL, `participants` text NOT NULL, `location` varchar(100) NOT NULL, `status` varchar(40) NOT NULL DEFAULT 'new', `comments` text NOT NULL, `repeated` varchar(50) NOT NULL, `dateposted` varchar(100) NOT NULL, `userid` varchar(100) NOT NULL, `updatedat` varchar(100) NOT NULL, `companyid` varchar(50) NOT NULL, `one` varchar(20) NOT NULL, `two` varchar(20) NOT NULL, `three` varchar(20) DEFAULT NULL, `branchid` int(10) NOT NULL DEFAULT 1, `four` varchar(20) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `events` -- LOCK TABLES `events` WRITE; /*!40000 ALTER TABLE `events` DISABLE KEYS */; /*!40000 ALTER TABLE `events` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `expenses` -- DROP TABLE IF EXISTS `expenses`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `expenses` ( `id` int(50) NOT NULL AUTO_INCREMENT, `type` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `amount` varchar(50) NOT NULL, `description` text NOT NULL, `dateposted` datetime NOT NULL, `user` varchar(100) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'Active', `datespent` datetime NOT NULL, `receiptno` varchar(100) NOT NULL, `idno` varchar(100) NOT NULL, `contact` varchar(100) NOT NULL, `controller` varchar(100) NOT NULL, `imgid` varchar(100) NOT NULL, `img_id` text NOT NULL, `companyid` varchar(100) NOT NULL, `accounttype` varchar(50) NOT NULL, `bankname` varchar(60) NOT NULL, `supplier` varchar(30) NOT NULL, `invoice` varchar(30) NOT NULL, `paymentmethodes` varchar(30) NOT NULL, `duedate` varchar(30) NOT NULL, `terms` text NOT NULL, `balance` decimal(10,2) NOT NULL, `paid` decimal(10,2) NOT NULL, `updatedat` varchar(30) NOT NULL, `updatedby` int(11) NOT NULL, `branchid` int(11) NOT NULL DEFAULT 1, `allocation` varchar(20) NOT NULL DEFAULT 'No', `invoicestatus` varchar(20) NOT NULL DEFAULT 'No', `allocationtext` text NOT NULL, `loanpaid` decimal(10,2) NOT NULL, `loanbalance` decimal(10,2) NOT NULL, `duration` varchar(20) NOT NULL, `monthlyrate` varchar(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `expenses` -- LOCK TABLES `expenses` WRITE; /*!40000 ALTER TABLE `expenses` DISABLE KEYS */; /*!40000 ALTER TABLE `expenses` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `faqs` -- DROP TABLE IF EXISTS `faqs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `faqs` ( `id` int(50) NOT NULL AUTO_INCREMENT, `companyid` varchar(60) NOT NULL, `title` text NOT NULL, `answers` text NOT NULL, `email` varchar(50) NOT NULL, `phone` varchar(30) NOT NULL, `date` varchar(60) NOT NULL, `description` text NOT NULL, `postedtime` varchar(60) NOT NULL, `userid` varchar(60) NOT NULL, `invoice` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `faqs` -- LOCK TABLES `faqs` WRITE; /*!40000 ALTER TABLE `faqs` DISABLE KEYS */; /*!40000 ALTER TABLE `faqs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `fingers` -- DROP TABLE IF EXISTS `fingers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `fingers` ( `id` int(100) NOT NULL AUTO_INCREMENT, `admno` varchar(200) NOT NULL, `fingername` varchar(50) NOT NULL, `regdate` varchar(100) NOT NULL, `template` text NOT NULL, `status` varchar(100) NOT NULL DEFAULT 'active', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `fingers` -- LOCK TABLES `fingers` WRITE; /*!40000 ALTER TABLE `fingers` DISABLE KEYS */; /*!40000 ALTER TABLE `fingers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `fiscalyear` -- DROP TABLE IF EXISTS `fiscalyear`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `fiscalyear` ( `id` int(30) NOT NULL AUTO_INCREMENT, `name` varchar(60) NOT NULL, `status` varchar(20) NOT NULL DEFAULT 'active', `startdate` datetime NOT NULL, `enddate` datetime NOT NULL, `companyid` int(11) NOT NULL, `userid` int(11) NOT NULL, `createdate` varchar(30) NOT NULL, `opening` decimal(10,2) NOT NULL, `closing` decimal(10,2) NOT NULL, `priority` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `fiscalyear` -- LOCK TABLES `fiscalyear` WRITE; /*!40000 ALTER TABLE `fiscalyear` DISABLE KEYS */; INSERT INTO `fiscalyear` VALUES (1,'2023 Fiscal Year','active','2023-01-01 00:00:00','2023-12-31 23:59:00',1,1,'2023-02-01 06:46:53',0.00,0.00,0); /*!40000 ALTER TABLE `fiscalyear` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `followups` -- DROP TABLE IF EXISTS `followups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `followups` ( `id` int(30) NOT NULL AUTO_INCREMENT, `date` varchar(50) NOT NULL, `followupid` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'newstock', `companyid` varchar(100) NOT NULL, `nextdate` datetime NOT NULL, `feedback` text NOT NULL, `recommendation` text NOT NULL, `challanges` text NOT NULL, `level` varchar(50) NOT NULL, `branchid` int(11) NOT NULL, `finalid` varchar(50) NOT NULL, `dateposted` datetime NOT NULL, `type` varchar(20) NOT NULL DEFAULT 'Deal', `completed` varchar(20) NOT NULL DEFAULT 'no', `dealowner` varchar(20) DEFAULT NULL, `stage` varchar(20) DEFAULT NULL, `allsteps` varchar(20) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `followups` -- LOCK TABLES `followups` WRITE; /*!40000 ALTER TABLE `followups` DISABLE KEYS */; /*!40000 ALTER TABLE `followups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `glaccounts` -- DROP TABLE IF EXISTS `glaccounts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `glaccounts` ( `id` int(30) NOT NULL AUTO_INCREMENT, `userid` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `accounttype` varchar(50) NOT NULL, `accountname` varchar(80) NOT NULL, `bankname` varchar(50) DEFAULT NULL, `openingdate` varchar(50) NOT NULL, `description` int(11) NOT NULL, `accountstatus` varchar(50) NOT NULL, `amount` varchar(50) NOT NULL, `createdate` varchar(50) NOT NULL, `number` varchar(50) NOT NULL, `currency` varchar(30) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=221 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `glaccounts` -- LOCK TABLES `glaccounts` WRITE; /*!40000 ALTER TABLE `glaccounts` DISABLE KEYS */; INSERT INTO `glaccounts` VALUES (30,'1','1','1','Control Acc (Cash)','','2018-07-20 13:23:56',1,'','-123735','2020-10-01 13:01:12','1000','1'),(31,'1','1','1','Mpesa','','2020-05-10 17:24:37',1,'','34000','2020-05-10 17:28:13','1010','1'),(33,'351','1','1','KCB account','','2018-06-01',1,'','-3890498','2019-07-30 19:18:31','1030','1'),(34,'1','1','6','Accounts receivable','','2018-06-01',1,'','0','2020-01-07 05:46:09','1100',''),(35,'351','1','6','Inventory assets','','2018-07-20 13:29:27',1,'','-1500','2019-07-20 23:18:46','1110','1'),(36,'2','1','6','checking account','','2018-07-20 14:14:59',1,'','0','2018-07-20 14:15:36pm','1120','KES'),(37,'351','1','6','Tax Assets','','2018-07-20 14:15:37',1,'','0','2019-07-20 13:01:36','1130',''),(38,'2','1','6','loans & advances','','2018-07-20 14:17:01',1,'','0','2018-07-20 14:18:41pm','1140','KES'),(39,'2','1','6','securities & deposits','','2018-07-20 14:18:42',1,'','0','2018-07-20 14:19:49pm','1150','KES'),(40,'351','1','6','Allowance for doubtful accounts','','2018-07-20 14:19:50',1,'','0','2019-07-20 12:05:22','1160',''),(41,'351','1','6','Prepayments','','2018-07-20 14:37:09',1,'','0','2019-07-20 13:03:33','1170',''),(44,'351','1','6','Salary advances','','2018-07-20 14:42:02',1,'','0','2019-07-20 12:58:57','1200',''),(45,'351','1','7','Land','','2018-07-20 14:43:05',1,'','0','2019-07-20 13:00:33','1500',''),(46,'351','1','7','Motor Vehicle','','2018-07-20 15:05:47',1,'','0','2019-07-20 13:04:35','1510',''),(47,'1','1','27','Softwares','','2018-07-20 15:06:36',4,'','0','2019-10-28 05:41:59','1520',''),(48,'351','1','7','Buildings','','2018-07-20 15:07:38',1,'','0','2019-07-20 13:07:02','1530',''),(49,'351','1','7','Plants & Machinery','','2018-07-20 15:09:21',1,'','0','2019-07-20 13:08:16','1540',''),(50,'351','1','7','Office Equipments','','2018-07-20 15:13:54',1,'','0','2019-07-20 13:09:35','1550',''),(51,'351','1','7','Furnitures & Fixtures','','2018-07-20 15:18:17',1,'','0','2019-07-20 13:10:29','1560',''),(52,'351','1','7','Depreciation ','117','2018-07-20 15:20:15',1,'','0','2019-07-20 13:13:53','1570',''),(53,'351','1','7','Depletable assets','','2018-07-20 15:21:07',1,'','0','2019-07-20 13:30:32','1580','1'),(54,'351','1','7','Leasehold improvements','','2018-07-20 15:22:55',1,'','0','2019-07-20 13:36:59','1590',''),(55,'351','1','7','Accumulated depreciation','','2018-07-20 15:23:48',1,'','0','2019-07-20 13:17:21','1600',''),(57,'351','1','9','Capital ','','2018-07-20 15:43:54',1,'','0','2019-07-20 14:18:04','1800',''),(58,'416','1','29','Office purchases','','2018-07-20 16:02:41',5,'','0','2019-10-16 17:53:18','1850',''),(59,'2','1','8','stock of raw materials','','2018-07-20 16:04:29',1,'','0','2018-07-20 16:07:35pm','1860','KES'),(63,'351','1','14','Loan payable','','2018-07-23 12:06:08',2,'','0','2019-07-20 14:11:32','2000',''),(64,'351','1','14','Dividends payable','','2018-07-23 12:33:51',2,'','0','2019-07-20 15:08:15','2010','1'),(65,'2','1','14','Income tax payable','','2018-07-23 12:35:15',2,'','0','2018-07-23 12:36:09pm','2020','KES'),(66,'351','1','14','Accrued Expenses Payable ','','2018-07-23 12:36:09',2,'','0','2019-07-20 13:33:39','2030','1'),(67,'351','1','14','Payroll Liabilities','','2018-07-23 12:37:11',2,'','0','2019-07-20 13:24:33','2040',''),(68,'351','1','14','Current tax liability','','2018-07-23 12:37:58',2,'','0','2019-07-20 15:10:18','2050','1'),(69,'351','1','14','Client trust accounts','','2018-07-23 12:38:55',2,'','0','2019-07-20 15:11:06','2060',''),(70,'351','1','14','Insurance payable','','2018-07-23 12:39:33',2,'','0','2019-07-20 15:12:04','2070',''),(72,'351','1','14','Sales & services tax payable','','2018-07-23 12:40:58',2,'','0','2019-07-20 15:14:57','2090',''),(74,'351','1','14','Bank Overdraft','','2018-07-23 12:43:29',2,'','0','2019-07-20 13:52:34','2110','1'),(75,'351','1','14','Current portion of obligations under finance leases','','2018-07-23 12:44:39',2,'','0','2019-07-20 15:19:30','2120',''),(76,'351','1','15','Long term debt','','2018-07-23 12:57:42',2,'','0','2019-07-20 15:16:19','2500',''),(78,'351','1','15','Notes payable','','2018-07-23 13:00:31',2,'','0','2019-07-20 13:58:01','2510',''),(79,'351','1','15','Liabilities related to assets held for sale','','2018-07-23 13:01:58',2,'','0','2019-07-20 15:28:14','2520','1'),(80,'2','1','15','shareholder notes payable','','2018-07-23 13:02:46',2,'','0','2018-07-23 13:04:38pm','2530','KES'),(81,'351','1','15','Accrued non-current liabilities','','2018-07-23 13:04:38',2,'','0','2019-07-22 09:45:51','2540',''),(82,'2','1','15','accrued holiday payable','','2018-07-23 13:15:07',2,'','0','2018-07-23 13:19:53pm','2550','KES'),(83,'2','1','26','ordinary shares','','2018-07-23 13:54:16',3,'','0','2018-07-23 13:55:37pm','3000','KES'),(84,'1','1','26','opening balance Equity','','2018-07-23 13:55:37',3,'','-50000','2020-05-09 20:15:00','3010',''),(85,'2','1','26','partner contributions','','2018-07-23 13:56:29',3,'','0','2018-07-23 13:57:14pm','3020','KES'),(86,'2','1','26','share capital','','2018-07-23 13:57:15',3,'','0','2018-07-23 13:59:17pm','3030','KES'),(87,'2','1','26','capital stock','','2018-07-23 13:59:18',3,'','0','2018-07-23 14:00:06pm','3040','KES'),(89,'351','1','26','Dividend disbursed','','2018-07-23 14:00:07',3,'','0','2019-07-22 09:44:29','3050',''),(90,'2','1','26','other comprehensive income','','2018-07-23 14:05:14',3,'','0','2018-07-23 14:06:04pm','3060','KES'),(91,'2','1','26','retained earnings','','2018-07-23 14:06:06',3,'','0','2018-07-23 14:06:41pm','3070','KES'),(92,'2','1','26','paid in capital','','2018-07-23 14:06:42',3,'','0','2018-07-23 14:08:06pm','3080','KES'),(93,'2','1','26','equity in earnings of subsidiaries','','2018-07-23 14:08:07',3,'','0','2018-07-23 14:09:00pm','3090','KES'),(94,'351','1','27','Sales','','2018-06-01',4,'','0','2019-07-23 11:30:51','4000',''),(95,'351','1','27','Maintainance/Training fees','94','2018-07-23 14:09:38',4,'','0','2019-07-20 15:53:04','4010',''),(97,'351','1','30','expenses included in valuation','','2018-06-01 ',5,'','0','2019-07-23 11:33:52','5010',''),(98,'351','1','30','stock adjustment','','2018-07-23 14:27:39',5,'','0','2019-07-20 17:25:59','5020',''),(99,'1','1','8','Cost of Good sold','','2018-07-01',5,'','0','2020-05-11 09:26:16','5500',''),(100,'351','1','29','Transport','','2018-06-01',5,'','0','2019-07-23 11:27:46','5510',''),(101,'351','1','29','Rent Expenses','','2018-07-23 14:33:51',5,'','0','2019-07-20 17:40:22','5520',''),(102,'351','1','29','Utilities','','2018-07-23 14:34:24',5,'','0','2019-07-20 17:42:59','5530','1'),(103,'351','1','29','Advertisements','','2018-07-23 14:34:52',5,'','0','2019-07-20 17:47:48','5540','1'),(104,'351','1','29','Salary Costs','','2018-07-23 14:35:41',5,'','50000','2019-07-20 20:26:30','5550',''),(105,'1','1','29','Staff Costs','','2020-07-23 14:36:42',5,'','0','2020-06-30 21:02:43','5560','1'),(106,'351','1','29','Staff Uniforms','105','2018-07-23 14:37:26',5,'','0','2019-07-20 20:43:01','5561','1'),(107,'351','1','29','Staff Welfare ','105','2018-07-23 14:38:50',5,'','0','2019-07-20 20:47:45','5562','1'),(114,'351','1','29','Training Fees','','2018-07-23 14:46:18',5,'','0','2019-07-20 21:00:54','5650','1'),(115,'351','1','29','Marketing expenses','','2018-07-23 14:47:47',5,'','0','2019-07-20 20:59:00','5660',''),(118,'351','1','29','Bid Bond Charges','120','2018-07-23 14:51:10',5,'','0','2019-07-20 21:51:57','5711','1'),(119,'351','1','29','Bank Service Charges ','','2018-07-23 14:54:26',5,'','0','2019-07-20 21:24:05','5700','1'),(120,'351','1','29','Tender expenses','','2018-07-23 14:55:12',5,'','0','2019-07-20 21:49:11','5710',''),(122,'351','1','29','Outsourced Printing & Scanning','','2018-07-23 15:02:34',5,'','0','2019-07-20 21:55:42','5730',''),(123,'351','1','30','Commission on sales','','2018-07-23 15:03:42',5,'','0','2019-07-20 21:56:36','5740','1'),(124,'351','1','29','Accomodation','','2018-07-23 15:04:46',5,'','0','2019-07-20 21:58:04','5750',''),(125,'351','1','29','Professional /Legal expenses','','2018-07-23 15:05:55',5,'','0','2019-07-20 22:28:51','5760','1'),(126,'351','1','28','Postage & Delivery','','2018-07-23 15:06:59',4,'','0','2019-07-20 22:00:51','5770','1'),(127,'351','1','29','Repairs & Maintenance','','2018-07-23 15:07:48',5,'','0','2019-07-20 22:02:26','5780',''),(128,'351','1','29','Depreciation Expense','','2018-07-23 15:08:24',5,'','0','2019-07-20 22:03:48','5790',''),(129,'351','1','29','Miscellaneous','','2018-07-23 15:09:39',5,'','0','2019-07-20 22:05:47','5800',''),(130,'351','1','27','Point of sale','94','2018-06-01 ',4,'','0','2019-08-08 09:12:19','4020',''),(131,'351','1','27','Bulk Sms','94','2018-07-23 15:12:25',4,'','0','2019-07-20 15:56:23','4030','1'),(132,'351','1','27','property management System','94','2018-07-23 15:13:09',4,'','0','2019-07-20 16:16:00','4040','1'),(133,'351','1','27','Biometric system','94','2018-07-23 15:13:41',4,'','2393.5','2019-07-20 16:14:44','4050','1'),(134,'351','1','27','school management System','94','2018-07-23 15:14:35',4,'','0','2019-07-20 16:17:38','4060','1'),(135,'351','1','27','Hospital management System','94','2018-07-23 15:15:15',4,'','0','2019-07-20 16:19:26','4070',''),(136,'351','1','27','Website Development','94','2018-07-23 15:16:03',4,'','0','2019-07-20 16:25:53','4080','1'),(137,'1','1','27','Vehicle Loan','94','2018-07-23 15:16:38 ',4,'','2000000','2023-05-27 12:46:29','4090',''),(139,'351','1','27','Hardware','94','2018-07-23 15:18:10',4,'','0','2019-07-20 16:49:09','4110','1'),(140,'351','1','27','Graphic Design','94','2018-07-23 15:18:56',4,'','0','2019-07-20 16:50:40','4120','1'),(141,'351','1','27','Thermal rolls','94','2018-07-23 15:19:38',4,'','0','2019-07-20 16:54:33','4130','1'),(143,'479','1','1','Paybill','','2018-07-26 12:58:21',1,'','-6666664999','2019-01-18 17:14:27','1020','1'),(144,'351','1','14','Account payable','','2018-06-01',2,'','0','2019-07-23 11:29:59','2130',''),(148,'351','1','1','Director\'s Account','','2018-06-01',1,'','6000','2019-08-22 08:43:26','1040','1'),(151,'351','1','8','Hardware','58','2018-10-30 09:48:11',5,'','0','2019-09-04 10:25:47','1851','1'),(152,'351','1','27','Labour Fees','94','2018-11-01 12:09:21',4,'','0','2019-07-20 16:57:21','4160','1'),(154,'351','1','29','Supplies','156','2018-11-05 16:43:21',5,'','0','2019-07-18 14:43:13','5900','1'),(155,'351','1','29','Cleaning','156','2018-11-05 16:46:57',5,'','0','2019-07-18 14:28:52','5910','1'),(156,'351','1','29','Office Expenses','','2018-11-05 16:47:29',5,'','0','2019-07-18 14:15:56','5920','1'),(157,'351','1','27','Management Information System','94','2019-01-31 16:43:09',4,'','0','2019-07-20 16:58:11','4170','1'),(158,'351','1','29','Mpesa charges','','2019-05-25 12:20:26',5,'','0','2019-07-20 22:26:12','5930','1'),(159,'351','1','1','Petty cash','','2019-06-01',1,'','-577','2019-08-22 15:25:29','1050','1'),(160,'351','1','29','Discount Allowed','','2019-07-08 ',5,'','0','2019-07-20 23:17:13','5030','1'),(161,'351','1','6','Withholding Tax','','2019-07-20 13:24:34',1,'','0','2019-07-20 13:28:18','1210',''),(162,'351','1','6','Discount Recieved','','2019-07-20 13:28:19',1,'','0','2019-07-20 13:29:38','1220','1'),(163,'351','1','6','Accrued Income Receivable ','','2019-07-20 13:33:40',1,'','0','2019-07-20 13:36:05','1230','1'),(164,'351','1','14','NHIF','67','2019-07-20 14:03:52',2,'','0','2019-07-20 14:06:21','2041','1'),(165,'351','1','14','NSSF','67','2019-07-20 14:06:22',2,'','0','2019-07-20 14:07:21','2042',''),(166,'351','1','14','PAYE','67','2019-07-20 14:07:21',2,'','0','2019-07-20 14:08:21','2043','1'),(167,'351','1','14','Net Pay','','2019-07-20 14:08:21',2,'','0','2019-07-20 14:10:20','2045',''),(168,'1','1','27','Donations','131','2019-07-20 15:56:24 ',4,'','140000','2023-03-08 12:44:25','4031','1'),(169,'351','1','27','Bulk Sms Branding','131','2019-07-20 16:07:38',4,'','0','2019-07-20 16:09:27','4032',''),(170,'1','1','27','Bulk Sms Recharge','131','2019-07-20 16:09:28',4,'','0','2019-10-26 13:53:32','4033','1'),(171,'351','1','27','Hotel Accommodation System','94','2019-07-20 16:19:27',4,'','0','2019-07-20 16:23:52','4100','1'),(172,'351','1','27','Miscellaneous Income','94','2019-07-20 16:58:12',4,'','0','2019-07-20 17:00:06','4180','1'),(173,'351','1','27','Mpesa Intergration','94','2019-07-20 17:00:07',4,'','0','2019-07-20 17:02:30','4190','1'),(174,'351','1','27','Biometric Bulk Sms Intergration','94','2019-07-20 17:02:31',4,'','0','2019-07-20 17:38:53','4195',''),(175,'351','1','8','Thermal rolls','58','2019-07-20 17:32:58',5,'','0','2019-09-04 10:26:06','1852','1'),(176,'351','1','29','Electricity','102','2019-07-20 17:42:59',5,'','0','2019-07-20 17:44:30','5531','1'),(177,'351','1','29','Water','102','2019-07-20 17:44:31',5,'','0','2019-07-20 17:45:22','5532','1'),(178,'351','1','29','Wages/Overtime','104','2019-07-20 20:26:31',5,'','0','2019-07-20 20:29:49','5551','1'),(179,'1','1','29','Staff Airtime','105','2020-07-20 20:47:45',5,'','0','2020-06-30 21:03:42','5563','1'),(180,'1','1','29','Medical Expenses ','105','2019-07-20 20:50:12',5,'','0','2020-06-30 22:16:41','5566','1'),(181,'351','1','29','NSSF-Employer','105','2019-07-20 20:51:37',5,'','0','2019-07-20 20:53:29','5565','1'),(182,'351','1','29','Meal Expenses ','','2019-07-20 22:28:52',5,'','0','2019-07-20 22:48:43','5250','1'),(183,'351','1','29','Refunds','','2019-07-20 22:48:44',5,'','0','2019-07-20 22:49:44','5240','1'),(184,'351','1','30','Loss on Disposal of fixed Assets ','','2019-07-20 22:49:45',5,'','0','2019-07-20 22:53:18','5220','1'),(185,'351','1','29','Internet Expenses ','','2019-07-20 22:53:19',5,'','0','2019-07-20 22:56:13','5200',''),(186,'351','1','29','Telephone Expenses ','','2019-07-20 22:56:14',5,'','0','2019-07-20 22:57:42','5210','1'),(187,'351','1','29','Dues & Subscriptions','','2019-07-20 22:57:43',5,'','0','2019-07-20 23:02:13','5180','1'),(188,'351','1','29','Donations','','2019-07-20 23:02:14',5,'','0','2019-07-20 23:03:34','5170','1'),(189,'351','1','29','Chaitable Donations','188','2019-07-20 23:03:35',5,'','0','2019-07-20 23:04:51','5171','1'),(190,'351','1','29','Non-Charitable Donations','188','2019-07-20 23:04:52',5,'','0','2019-07-20 23:08:00','5172','1'),(191,'351','1','29','Business Licences & Permits ','','2019-07-20 23:08:01',5,'','0','2019-07-20 23:09:26','5960','1'),(192,'351','1','29','Bad debts written off','','2019-07-20 23:09:27',5,'','0','2019-07-20 23:10:42','5950','1'),(193,'351','1','29','Bad debts ','','2019-07-20 23:10:43',5,'','0','2019-07-20 23:11:35','5940','1'),(194,'351','1','27','suspense Income A/C','','2019-07-22 22:00:00',4,'','2393.5','2019-07-27 17:14:05','4050','1'),(195,'351','1','29','suspense Expense A/C','','2019-07-22 22:05:38',5,'','0','2019-07-27 17:15:19','5040','1'),(196,'351','1','34','Opening Balance','','2018-06-01',4,'','0','2019-07-30 09:29:55','1060','1'),(197,'351','1','29','CCTV Installation fee','','2018-06-01',5,'','0','2019-08-21 10:15:30','5190','1'),(198,'351','1','29','Director\'s Expenses','','2018-06-01',5,'','0','2019-08-23 14:53:11','5720','1'),(199,'351','1','29','Staff Allowance','105','2019-06-01 ',5,'','-521','2019-10-01 15:22:06','5564','1'),(200,'1','1','1','Witholding Account','','2019-10-01 11:49:23 ',1,'','6666629825.5','2021-11-25 16:26:21','1035','1'),(201,'1','1','7','LAPTOPS','','2020-09-17 09:30:28',1,'','0','2020-09-17 09:31:53','1501',''),(202,'1','1','7','Amblifier','','2020-09-22 10:17:58',1,'','0','2020-09-22 10:19:53','1502',''),(205,'1','1','1','Bonga points Account','','2021-03-08 15:21:56 ',1,'','2000','2021-09-07 06:35:52','1011','1'),(206,'1','1','29','CARE PURCHASE','','2021-07-19 15:02:30 ',5,'','0','2023-05-27 12:48:58','5171',''),(207,'1','1','27','RENT COLLECTED','','2021-09-17 06:42:46',4,'','0','2021-09-17 06:47:13','4161','1'),(208,'1','1','27','DEPOSIT COLLECTED','','2021-09-17 06:14:47',4,'','0','2021-09-17 06:48:29','4162','1'),(209,'1','1','27','WATER/POWER DEPOSIT','','2021-09-17 06:30:48',4,'','0','2021-09-17 06:48:46','4163',''),(210,'1','1','27','PENALTY','','2021-09-17 06:47:48',4,'','0','2021-09-17 06:49:02','4164',''),(211,'1','1','27','WATER','','2021-09-17 06:04:49',4,'','0','2021-09-17 06:49:27','4165','1'),(212,'1','1','27','PARTIAL PAYMENT','','2021-09-17 06:29:49',4,'','0','2021-09-17 06:49:47','4166','1'),(213,'1','1','27','GARBAGE','','2021-09-17 06:49:49',4,'','0','2021-09-17 06:50:07','4167','1'),(214,'1','1','27','DAMAGES','','2021-09-17 06:09:50',4,'','0','2021-09-17 06:50:31','4168','1'),(215,'1','1','27','AGREEMENT FORM','','2021-09-17 06:32:50',4,'','0','2021-09-17 06:50:50','4169','1'),(216,'1','1','27','POWER','','2021-09-17 06:51:50',4,'','0','2021-09-17 06:51:16','4171','1'),(217,'1','1','27','SEWAGE','','2021-09-17 06:17:51',4,'','-50000','2021-09-17 06:51:44','4172','1'),(218,'1','1','27','BED ONLY','','2021-09-17 06:45:51',4,'','7000','2021-09-17 06:52:22','4173','1'),(219,'1','1','27','BED AND BREAKFAST','','2021-09-17 06:24:52',4,'','-55555','2021-09-17 06:52:42','4174','1'),(220,'1','1','28','Foreign Exchange gain/loss','','2023-07-30 07:48:19',4,'','0','2023-07-30 07:21:27','4001','5'); /*!40000 ALTER TABLE `glaccounts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `glfiscalyear` -- DROP TABLE IF EXISTS `glfiscalyear`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `glfiscalyear` ( `id` int(40) NOT NULL AUTO_INCREMENT, `name` varchar(60) NOT NULL, `status` varchar(20) NOT NULL DEFAULT 'active', `startdate` datetime NOT NULL, `enddate` datetime NOT NULL, `companyid` int(11) NOT NULL, `userid` int(11) NOT NULL, `createdate` varchar(30) NOT NULL, `opening` decimal(10,2) NOT NULL, `closing` decimal(10,2) NOT NULL, `priority` int(11) NOT NULL, `number` varchar(50) NOT NULL, `branchid` int(11) NOT NULL DEFAULT 1, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `glfiscalyear` -- LOCK TABLES `glfiscalyear` WRITE; /*!40000 ALTER TABLE `glfiscalyear` DISABLE KEYS */; /*!40000 ALTER TABLE `glfiscalyear` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `glgroups` -- DROP TABLE IF EXISTS `glgroups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `glgroups` ( `id` int(30) NOT NULL AUTO_INCREMENT, `userid` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `accounttype` varchar(50) NOT NULL, `accountname` varchar(80) NOT NULL, `groupname` bigint(50) NOT NULL DEFAULT 1, `openingdate` varchar(50) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=35 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `glgroups` -- LOCK TABLES `glgroups` WRITE; /*!40000 ALTER TABLE `glgroups` DISABLE KEYS */; INSERT INTO `glgroups` VALUES (1,'2','1','1','Banks',0,''),(6,'2','1','1','Current asset',0,''),(7,'2','1','1','Fixed assets',0,''),(8,'2','1','5','Cost of Good Sold',0,''),(9,'2','1','1','Capital asset',0,''),(14,'2','1','2','Current liabilities',0,''),(15,'2','1','2','Longterm liabilities',0,''),(26,'2','1','3','Equity',0,''),(27,'2','1','4','Income',0,''),(28,'2','1','4','Other income',0,''),(29,'2','1','5','Expenses',0,''),(30,'2','1','5','Other expenses',0,''),(31,'2','1','2','Share Capital',0,''),(32,'2','1','2','Retained Earnings',0,''),(33,'2','1','4','Cash',1,''),(34,'2','1','4','Equity',1,''); /*!40000 ALTER TABLE `glgroups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `grouping` -- DROP TABLE IF EXISTS `grouping`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `grouping` ( `id` int(50) NOT NULL AUTO_INCREMENT, `memberid` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `createdate` varchar(50) NOT NULL, `user` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `updatedat` varchar(50) NOT NULL, `categoryid` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `grouping` -- LOCK TABLES `grouping` WRITE; /*!40000 ALTER TABLE `grouping` DISABLE KEYS */; /*!40000 ALTER TABLE `grouping` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `groupleavedays` -- DROP TABLE IF EXISTS `groupleavedays`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `groupleavedays` ( `id` int(11) NOT NULL AUTO_INCREMENT, `group` int(11) DEFAULT NULL, `employeeno` int(11) DEFAULT NULL, `overtime` int(11) DEFAULT NULL COMMENT 'Link to an overtime request', `startdate` date DEFAULT NULL, `enddate` date DEFAULT NULL, `type` int(11) NOT NULL, `days` decimal(10,2) NOT NULL, `description` text DEFAULT NULL COMMENT 'Description of a credit / debit', `userid` int(30) NOT NULL, `createdate` varchar(30) NOT NULL, `companyid` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `contract` (`group`), KEY `employee` (`employeeno`), KEY `type` (`type`) ) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci COMMENT='Add or sub entitlement for employees or contracts'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `groupleavedays` -- LOCK TABLES `groupleavedays` WRITE; /*!40000 ALTER TABLE `groupleavedays` DISABLE KEYS */; INSERT INTO `groupleavedays` VALUES (1,NULL,1,NULL,'2023-02-15','2023-04-25',1,90.00,'',1,'2023-02-15 12:36:46pm',0),(14,NULL,6,NULL,'2023-01-27','2023-07-11',2,9.49,'',1,'2023-07-11 07:05:18pm',0),(15,NULL,12,NULL,'2023-08-01','2023-12-31',2,21.00,'',1,'2023-08-31 03:04:22am',0),(16,NULL,1,NULL,'2019-06-11','2023-09-02',2,67.83,'',1,'2023-09-02 08:10:55am',0); /*!40000 ALTER TABLE `groupleavedays` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `house` -- DROP TABLE IF EXISTS `house`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `house` ( `id` int(100) NOT NULL AUTO_INCREMENT, `houseno` varchar(100) NOT NULL, `type` varchar(40) NOT NULL, `description` text NOT NULL, `plotno` varchar(100) NOT NULL, `cost` varchar(100) NOT NULL, `status` varchar(100) NOT NULL, `createdat` varchar(100) NOT NULL, `updatedat` varchar(100) NOT NULL, `userid` varchar(100) NOT NULL, `floor` varchar(100) NOT NULL, `companyid` varchar(100) NOT NULL, `vat` decimal(10,2) NOT NULL, `commission` decimal(10,2) NOT NULL, `priority` int(11) NOT NULL, `category` varchar(30) NOT NULL DEFAULT 'rental', `branchid` int(30) NOT NULL DEFAULT 1, `vat2` decimal(10,2) NOT NULL, `paymentdetails` text NOT NULL, `meternumber` text NOT NULL, `utility` varchar(20) DEFAULT 'yes', `waterno` varchar(30) NOT NULL, `waterrate` varchar(30) NOT NULL, `watercharge` varchar(30) NOT NULL, `watermonth` varchar(30) NOT NULL, `wateryear` varchar(30) NOT NULL, `electricityno` varchar(30) NOT NULL, `electricityrate` varchar(30) NOT NULL, `electricitycharge` varchar(30) NOT NULL, `electricitymonth` varchar(30) NOT NULL, `electricityyear` varchar(30) NOT NULL, `bowholeno` varchar(30) NOT NULL, `bowholerate` varchar(30) NOT NULL, `bowholecharge` varchar(30) NOT NULL, `bowholemonth` varchar(30) NOT NULL, `bowholeyear` varchar(30) NOT NULL, `beds` varchar(5) DEFAULT NULL, `bedstatus` varchar(20) NOT NULL DEFAULT 'no', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `house` -- LOCK TABLES `house` WRITE; /*!40000 ALTER TABLE `house` DISABLE KEYS */; /*!40000 ALTER TABLE `house` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `housekeeping` -- DROP TABLE IF EXISTS `housekeeping`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `housekeeping` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `houseno` varchar(30) NOT NULL, `plotno` varchar(20) NOT NULL DEFAULT '0', `approvedby` varchar(20) NOT NULL, `comments` text NOT NULL, `approval` varchar(30) NOT NULL DEFAULT 'new', `exactdate` varchar(30) NOT NULL, `type` text NOT NULL, `counter` int(11) NOT NULL DEFAULT 1, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `housekeeping` -- LOCK TABLES `housekeeping` WRITE; /*!40000 ALTER TABLE `housekeeping` DISABLE KEYS */; /*!40000 ALTER TABLE `housekeeping` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `invoice` -- DROP TABLE IF EXISTS `invoice`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `invoice` ( `id` int(40) NOT NULL AUTO_INCREMENT, `plotno` varchar(60) NOT NULL, `houseno` varchar(40) NOT NULL, `tenantid` varchar(100) NOT NULL, `amount` decimal(10,2) NOT NULL, `type` varchar(100) NOT NULL, `description` varchar(100) NOT NULL, `month` varchar(100) NOT NULL, `year` varchar(100) NOT NULL, `createdat` varchar(100) NOT NULL, `updatedat` varchar(100) NOT NULL, `userid` varchar(100) NOT NULL, `duedate` varchar(40) NOT NULL, `paymentstatus` varchar(40) NOT NULL, `paymentmode` varchar(40) NOT NULL, `paymentcode` varchar(100) NOT NULL, `transactioncode` varchar(100) NOT NULL, `approval` varchar(30) NOT NULL DEFAULT 'new', `approvedby` varchar(60) NOT NULL, `approvaldate` varchar(60) NOT NULL, `totalamount` varchar(40) NOT NULL, `paid` decimal(10,2) NOT NULL, `balance` varchar(40) NOT NULL DEFAULT '0', `companyid` varchar(100) NOT NULL DEFAULT '1', `commission` decimal(10,2) NOT NULL, `vat` decimal(10,2) NOT NULL, `paymentdate` varchar(30) NOT NULL, `order` int(11) NOT NULL, `priority` int(11) NOT NULL, `coparent` decimal(10,2) NOT NULL, `coparentcommission` decimal(10,2) NOT NULL, `coparentvat` decimal(10,2) NOT NULL, `coparentdate` varchar(30) NOT NULL, `coparentuserid` int(11) NOT NULL, `chargeid` varchar(30) NOT NULL, `branchid` int(11) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `invoice` -- LOCK TABLES `invoice` WRITE; /*!40000 ALTER TABLE `invoice` DISABLE KEYS */; /*!40000 ALTER TABLE `invoice` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `journal` -- DROP TABLE IF EXISTS `journal`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `journal` ( `id` int(50) NOT NULL AUTO_INCREMENT, `currency` varchar(50) NOT NULL, `amount` varchar(50) NOT NULL, `description` text NOT NULL, `journaldate` varchar(50) NOT NULL, `incharge` varchar(40) NOT NULL, `userid` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `entrydate` varchar(50) NOT NULL, `invoice` varchar(30) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `journal` -- LOCK TABLES `journal` WRITE; /*!40000 ALTER TABLE `journal` DISABLE KEYS */; /*!40000 ALTER TABLE `journal` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `labour` -- DROP TABLE IF EXISTS `labour`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `labour` ( `id` int(11) NOT NULL AUTO_INCREMENT, `code` varchar(20) NOT NULL, `createdate` varchar(20) NOT NULL, `qty` decimal(10,2) NOT NULL, `usedamount` decimal(10,2) NOT NULL, `balance` decimal(10,2) NOT NULL, `year` varchar(20) NOT NULL, `month` varchar(20) NOT NULL, `userid` int(11) NOT NULL, `companyid` int(11) NOT NULL, `branch` int(11) NOT NULL, `updatedby` int(11) NOT NULL, `description` text NOT NULL, `employeeid` varchar(30) NOT NULL, `exactdate` varchar(30) NOT NULL, `rate` decimal(10,2) NOT NULL, `total` decimal(10,2) NOT NULL, `type` varchar(20) NOT NULL DEFAULT 'pay', `status` int(20) NOT NULL DEFAULT 0, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `labour` -- LOCK TABLES `labour` WRITE; /*!40000 ALTER TABLE `labour` DISABLE KEYS */; /*!40000 ALTER TABLE `labour` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `landlord` -- DROP TABLE IF EXISTS `landlord`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `landlord` ( `id` int(40) NOT NULL AUTO_INCREMENT, `firstname` varchar(100) NOT NULL, `lastname` varchar(100) NOT NULL, `location` varchar(100) NOT NULL, `phone` varchar(100) NOT NULL, `email` varchar(100) NOT NULL, `description` text NOT NULL, `idno` varchar(100) NOT NULL, `country` varchar(100) NOT NULL, `gender` varchar(10) NOT NULL, `createdat` varchar(100) NOT NULL, `updatedat` varchar(100) NOT NULL, `userid` varchar(100) NOT NULL, `county` varchar(40) NOT NULL, `accountname` varchar(100) NOT NULL, `accountno` varchar(100) NOT NULL, `companyid` varchar(100) NOT NULL, `status` varchar(10) NOT NULL DEFAULT '1', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `landlord` -- LOCK TABLES `landlord` WRITE; /*!40000 ALTER TABLE `landlord` DISABLE KEYS */; /*!40000 ALTER TABLE `landlord` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `lease` -- DROP TABLE IF EXISTS `lease`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `lease` ( `id` int(10) NOT NULL AUTO_INCREMENT, `branchfrom` varchar(50) NOT NULL, `serial` varchar(50) NOT NULL, `qty` varchar(50) NOT NULL, `details` text NOT NULL, `dateleased` varchar(50) NOT NULL, `incharge` varchar(40) NOT NULL, `product` text NOT NULL, `userid` varchar(50) NOT NULL, `companyid` varchar(30) NOT NULL, `entrydate` varchar(50) NOT NULL, `supplier` varchar(30) NOT NULL, `original` decimal(10,2) NOT NULL, `balance` decimal(10,2) NOT NULL, `branchid` int(11) NOT NULL DEFAULT 1, `amount` varchar(10) NOT NULL DEFAULT '0.00', `duedate` varchar(20) NOT NULL, `status` varchar(30) NOT NULL DEFAULT 'Dispatched', `mode` varchar(30) NOT NULL, `invoice` varchar(30) NOT NULL, `totalamount` varchar(30) NOT NULL DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `lease` -- LOCK TABLES `lease` WRITE; /*!40000 ALTER TABLE `lease` DISABLE KEYS */; /*!40000 ALTER TABLE `lease` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `leavegroup` -- DROP TABLE IF EXISTS `leavegroup`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `leavegroup` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) DEFAULT NULL, `description` text DEFAULT NULL, `createdat` varchar(30) NOT NULL DEFAULT '0000-00-00 00:00:00', `updatedat` varchar(30) NOT NULL DEFAULT '0000-00-00 00:00:00', `total` int(30) NOT NULL, `startdate` varchar(30) NOT NULL, `enddate` varchar(30) NOT NULL, `defaultleavetype` int(30) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `leavegroup` -- LOCK TABLES `leavegroup` WRITE; /*!40000 ALTER TABLE `leavegroup` DISABLE KEYS */; INSERT INTO `leavegroup` VALUES (1,'General ','','0000-00-00 00:00:00','0000-00-00 00:00:00',21,'1/1','31/12',2),(2,'Security','','0000-00-00 00:00:00','0000-00-00 00:00:00',11,'1/1','31/12',2); /*!40000 ALTER TABLE `leavegroup` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `leaves` -- DROP TABLE IF EXISTS `leaves`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `leaves` ( `id` int(30) NOT NULL AUTO_INCREMENT, `startdate` datetime DEFAULT NULL, `enddate` datetime DEFAULT NULL, `status` varchar(11) DEFAULT NULL, `employee` int(11) DEFAULT NULL, `cause` text DEFAULT NULL, `startdatetype` varchar(12) DEFAULT NULL, `enddatetype` varchar(12) DEFAULT NULL, `duration` decimal(10,2) DEFAULT NULL, `type` int(11) DEFAULT NULL, `description` text DEFAULT NULL COMMENT 'Comments on leave request', `change_type` int(11) NOT NULL, `updatedby` int(11) NOT NULL, `updateddate` timestamp NULL DEFAULT NULL, `photo` text NOT NULL, `incharge` varchar(30) NOT NULL, `userid` varchar(30) NOT NULL, `postedtime` varchar(30) NOT NULL, `img_id` text DEFAULT NULL, `comments` text NOT NULL, `manager` int(10) NOT NULL, `companyid` int(11) DEFAULT 1, `branchid` int(20) NOT NULL DEFAULT 1, PRIMARY KEY (`id`), KEY `changed_by` (`updatedby`), KEY `change_date` (`updateddate`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci COMMENT='List of changes in leave requests table'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `leaves` -- LOCK TABLES `leaves` WRITE; /*!40000 ALTER TABLE `leaves` DISABLE KEYS */; /*!40000 ALTER TABLE `leaves` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `leavetypes` -- DROP TABLE IF EXISTS `leavetypes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `leavetypes` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `gender` varchar(30) NOT NULL, `deduct` varchar(10) NOT NULL, `companyid` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `leavetypes` -- LOCK TABLES `leavetypes` WRITE; /*!40000 ALTER TABLE `leavetypes` DISABLE KEYS */; INSERT INTO `leavetypes` VALUES (1,'maternity leave','','2019-06-03 01:46:56pm','Female','No',0),(2,'Normal leave','all','2019-06-03 01:47:13pm','Both','No',0),(3,'Emergency','','2019-06-03 01:47:41pm','Both','No',0),(4,'Sick Leave','','2023-02-15 12:24:43pm','Both','No',0); /*!40000 ALTER TABLE `leavetypes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `loggs` -- DROP TABLE IF EXISTS `loggs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `loggs` ( `id` int(20) NOT NULL AUTO_INCREMENT, `type` varchar(30) NOT NULL, `userid` varchar(30) NOT NULL, `timein` varchar(50) NOT NULL, `timeout` varchar(50) NOT NULL, `browser` text NOT NULL, `ip` text NOT NULL, `action` varchar(30) DEFAULT 'loggedin', `companyid` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=84 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `loggs` -- LOCK TABLES `loggs` WRITE; /*!40000 ALTER TABLE `loggs` DISABLE KEYS */; INSERT INTO `loggs` VALUES (1,'user','5','2024-01-04 15:06:13','2024-01-04 15:12:28','','127.0.0.1','loggedin',1),(2,'user','3','2024-01-04 15:14:14','2024-01-04 15:14:33','','127.0.0.1','loggedin',1),(3,'user','6','2024-01-04 15:32:51','','','127.0.0.1','loggedin',1),(4,'user','4','2024-01-04 16:28:26','','','127.0.0.1','loggedin',1),(5,'user','5','2024-01-04 16:58:51','2024-01-04 17:05:28','','127.0.0.1','loggedin',1),(6,'user','4','2024-01-04 17:05:34','2024-01-04 20:51:38','','127.0.0.1','loggedin',1),(7,'user','6','2024-01-04 20:51:49','2024-01-04 22:03:34','','127.0.0.1','loggedin',1),(8,'user','4','2024-01-04 22:04:10','2024-01-04 22:06:06','','127.0.0.1','loggedin',1),(9,'user','6','2024-01-05 11:21:20','','','127.0.0.1','loggedin',1),(10,'user','5','2024-01-05 12:32:58','','','127.0.0.1','loggedin',1),(11,'user','5','2024-01-05 12:53:40','','','127.0.0.1','loggedin',1),(12,'user','6','2024-01-05 13:46:26','','','127.0.0.1','loggedin',1),(13,'user','4','2024-01-05 16:19:04','','','127.0.0.1','loggedin',1),(14,'user','6','2024-01-05 18:17:31','','','127.0.0.1','loggedin',1),(15,'user','4','2024-01-05 18:57:10','2024-01-05 18:57:19','','127.0.0.1','loggedin',1),(16,'user','6','2024-01-05 18:57:28','2024-01-05 18:58:53','','127.0.0.1','loggedin',1),(17,'user','6','2024-01-05 18:59:03','2024-01-05 18:59:32','','127.0.0.1','loggedin',1),(18,'user','4','2024-01-05 18:59:41','2024-01-05 19:01:39','','127.0.0.1','loggedin',1),(19,'user','4','2024-01-05 19:01:51','','','127.0.0.1','loggedin',1),(20,'user','6','2024-01-05 19:40:31','2024-01-05 19:40:44','','127.0.0.1','loggedin',1),(21,'user','6','2024-01-05 19:59:39','','','127.0.0.1','loggedin',1),(22,'user','6','2024-01-05 20:11:58','2024-01-05 20:16:36','','127.0.0.1','loggedin',1),(23,'user','4','2024-01-05 20:16:43','2024-01-05 20:17:56','','127.0.0.1','loggedin',1),(24,'user','6','2024-01-05 20:18:05','2024-01-05 20:18:33','','127.0.0.1','loggedin',1),(25,'user','4','2024-01-05 20:18:42','','','127.0.0.1','loggedin',1),(26,'user','6','2024-01-06 10:43:55','','','127.0.0.1','loggedin',1),(27,'user','5','2024-01-06 13:26:23','','','127.0.0.1','loggedin',1),(28,'user','5','2024-01-06 13:40:27','','','127.0.0.1','loggedin',1),(29,'user','1','2024-01-06 16:09:13','','','197.232.142.176','loggedin',1),(30,'user','1','2024-01-06 16:12:49','2024-01-06 16:13:11','','105.163.0.58','loggedin',1),(31,'user','1','2024-01-06 16:14:32','2024-01-06 16:15:13','','197.232.142.176','loggedin',1),(32,'user','3','2024-01-06 16:15:16','','','197.232.142.176','loggedin',1),(33,'user','1','2024-01-06 16:15:26','','','197.232.142.176','loggedin',1),(34,'user','5','2024-01-06 16:18:33','','','105.163.0.58','loggedin',1),(35,'user','5','2024-01-06 16:43:51','','','105.163.0.58','loggedin',1),(36,'user','5','2024-01-06 16:43:51','2024-01-06 16:45:00','','105.163.0.58','loggedin',1),(37,'user','5','2024-01-06 16:48:21','2024-01-06 16:55:18','','105.163.0.58','loggedin',1),(38,'user','4','2024-01-06 17:23:57','2024-01-06 17:35:52','','105.163.0.58','loggedin',1),(39,'user','6','2024-01-06 17:36:00','2024-01-06 17:52:55','','105.163.0.58','loggedin',1),(40,'user','4','2024-01-06 17:53:18','2024-01-06 18:42:23','','105.163.0.58','loggedin',1),(41,'user','5','2024-01-06 17:56:28','','','197.237.142.183','loggedin',1),(42,'user','5','2024-01-06 18:21:44','','','197.237.142.183','loggedin',1),(43,'user','5','2024-01-06 18:21:44','','','197.237.142.183','loggedin',1),(44,'user','5','2024-01-06 18:36:47','2024-01-06 18:37:42','','105.160.65.253','loggedin',1),(45,'user','1','2024-01-06 18:38:02','','','105.160.65.253','loggedin',1),(46,'user','6','2024-01-06 18:42:31','2024-01-06 18:49:49','','105.163.0.58','loggedin',1),(47,'user','4','2024-01-06 18:49:59','2024-01-06 18:50:21','','105.163.0.58','loggedin',1),(48,'user','6','2024-01-06 18:50:30','2024-01-06 18:53:16','','105.163.0.58','loggedin',1),(49,'user','4','2024-01-06 18:53:27','2024-01-06 18:57:33','','105.163.0.58','loggedin',1),(50,'user','6','2024-01-06 18:58:53','2024-01-06 19:10:32','','105.163.0.58','loggedin',1),(51,'user','4','2024-01-06 19:10:45','2024-01-06 20:27:54','','105.163.0.58','loggedin',1),(52,'user','4','2024-01-06 22:03:13','2024-01-06 22:06:26','','105.163.0.58','loggedin',1),(53,'user','6','2024-01-07 10:50:25','','','105.163.0.58','loggedin',1),(54,'user','4','2024-01-07 14:01:25','2024-01-07 14:01:53','','105.163.0.58','loggedin',1),(55,'user','5','2024-01-07 14:22:14','','','197.237.142.183','loggedin',1),(56,'user','4','2024-01-07 14:25:06','2024-01-07 15:45:57','','105.163.0.58','loggedin',1),(57,'user','5','2024-01-07 14:39:34','','','197.237.142.183','loggedin',1),(58,'user','5','2024-01-07 15:43:29','','','197.237.142.183','loggedin',1),(59,'user','5','2024-01-07 15:43:29','2024-01-07 16:33:20','','197.237.142.183','loggedin',1),(60,'user','6','2024-01-07 15:46:05','2024-01-07 16:12:35','','105.163.0.58','loggedin',1),(61,'user','4','2024-01-07 16:12:45','2024-01-07 17:21:21','','105.163.0.58','loggedin',1),(62,'user','6','2024-01-07 17:21:45','2024-01-07 18:33:18','','105.163.0.58','loggedin',1),(63,'user','5','2024-01-07 18:30:57','','','197.237.142.183','loggedin',1),(64,'user','5','2024-01-07 18:30:58','2024-01-07 19:05:47','','197.237.142.183','loggedin',1),(65,'user','4','2024-01-07 18:33:27','','','105.163.0.58','loggedin',1),(66,'user','4','2024-01-07 18:40:34','2024-01-07 18:41:40','','105.163.0.58','loggedin',1),(67,'user','4','2024-01-07 18:43:38','2024-01-07 18:48:18','','105.163.0.58','loggedin',1),(68,'user','4','2024-01-07 18:48:25','2024-01-07 18:49:42','','105.163.0.58','loggedin',1),(69,'user','4','2024-01-07 18:49:52','2024-01-07 18:50:09','','105.163.0.58','loggedin',1),(70,'user','6','2024-01-07 18:50:46','2024-01-07 19:26:47','','105.163.0.58','loggedin',1),(71,'user','4','2024-01-07 20:06:47','2024-01-07 20:06:57','','105.163.0.58','loggedin',1),(72,'user','6','2024-01-07 20:07:09','2024-01-07 20:07:29','','105.163.0.58','loggedin',1),(73,'user','4','2024-01-07 20:07:38','2024-01-07 20:08:13','','105.163.0.58','loggedin',1),(74,'user','4','2024-01-07 20:47:35','2024-01-07 20:48:07','','105.163.0.58','loggedin',1),(75,'user','6','2024-01-07 21:43:25','2024-01-07 21:44:26','','105.163.0.58','loggedin',1),(76,'user','4','2024-01-07 21:44:33','','','105.163.0.58','loggedin',1),(77,'user','4','2024-01-08 10:56:16','','','105.163.0.58','loggedin',1),(78,'user','6','2024-01-10 14:07:30','','','105.163.0.88','loggedin',1),(79,'user','6','2024-01-10 16:14:57','','','105.163.0.88','loggedin',1),(80,'user','6','2024-01-10 21:51:23','','','105.163.0.88','loggedin',1),(81,'user','5','2024-01-11 13:00:31','2024-01-11 13:02:12','','197.237.142.183','loggedin',1),(82,'user','5','2024-01-11 13:02:32','','','197.237.142.183','loggedin',1),(83,'admin','1','2024-03-22 13:12:01','2024-03-22 13:12:20','','41.90.188.34','loggedin',1); /*!40000 ALTER TABLE `loggs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `loyalitycards` -- DROP TABLE IF EXISTS `loyalitycards`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `loyalitycards` ( `id` int(30) NOT NULL AUTO_INCREMENT, `value` decimal(10,2) NOT NULL, `customer_id` int(10) DEFAULT NULL, `deleted` int(1) NOT NULL DEFAULT 0, `status` varchar(50) NOT NULL, `description` text NOT NULL, `userid` varchar(50) NOT NULL, `dateposted` varchar(50) NOT NULL, `dateupdated` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `cardnumber` varchar(100) NOT NULL, `type` varchar(30) NOT NULL, `branchid` int(11) NOT NULL, `amount` decimal(10,2) NOT NULL, `mode` varchar(30) NOT NULL, `invoice` varchar(30) NOT NULL, `originalamount` decimal(10,2) NOT NULL, PRIMARY KEY (`id`), KEY `deleted` (`deleted`), KEY `phppos_giftcards_ibfk_1` (`customer_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `loyalitycards` -- LOCK TABLES `loyalitycards` WRITE; /*!40000 ALTER TABLE `loyalitycards` DISABLE KEYS */; /*!40000 ALTER TABLE `loyalitycards` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `maincategory` -- DROP TABLE IF EXISTS `maincategory`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `maincategory` ( `id` int(10) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `maincategory` -- LOCK TABLES `maincategory` WRITE; /*!40000 ALTER TABLE `maincategory` DISABLE KEYS */; INSERT INTO `maincategory` VALUES (1,'KAHAWA ESPRESSO','','2023-02-05 13:36:59','hide','1','','1'); /*!40000 ALTER TABLE `maincategory` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mainmenu` -- DROP TABLE IF EXISTS `mainmenu`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `mainmenu` ( `id` varchar(100) NOT NULL, `name` varchar(255) NOT NULL, `icon` varchar(255) NOT NULL, `status` varchar(50) NOT NULL DEFAULT '1', `url` text NOT NULL, `type` varchar(50) NOT NULL DEFAULT 'side', `sort` int(11) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `name_lang_key` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mainmenu` -- LOCK TABLES `mainmenu` WRITE; /*!40000 ALTER TABLE `mainmenu` DISABLE KEYS */; INSERT INTO `mainmenu` VALUES ('accomodation','Accomodation','','1','user/accomodation','side',8),('assetliability','Assets and Liabilities','','1','user/assetliability','side',7),('banking','Banking','','1','user/banking','side',6),('contact','Contacts','','1','user/contact','side',4),('goodservice','Goods and Services','','1','user/goodservice','side',3),('humanresource','HR','grouping','1','user/viewrequest','side',8),('moneyin','Money In','','1','user/moneyin','side',1),('moneyout','Money out','','1','user/moneyout','side',2),('project','Projects','','1','user/project','side',5),('report','Reports','','1','user/report','side',9),('setting','Settings','','1','user/setting','side',10); /*!40000 ALTER TABLE `mainmenu` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mainservices` -- DROP TABLE IF EXISTS `mainservices`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `mainservices` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(45) DEFAULT NULL, `companyid` int(11) NOT NULL DEFAULT 1, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mainservices` -- LOCK TABLES `mainservices` WRITE; /*!40000 ALTER TABLE `mainservices` DISABLE KEYS */; INSERT INTO `mainservices` VALUES (1,'General systems',1),(2,'E-commerce',1),(3,'Biometric',1),(4,'Website',1),(5,'PMS',1),(6,'Bulk sms',1),(7,'Pos',1); /*!40000 ALTER TABLE `mainservices` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `message` -- DROP TABLE IF EXISTS `message`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `message` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `branchid` int(11) NOT NULL DEFAULT 1, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `message` -- LOCK TABLES `message` WRITE; /*!40000 ALTER TABLE `message` DISABLE KEYS */; INSERT INTO `message` VALUES (1,'ta','','2023-08-31 10:16:19','active','1','','1',1),(2,'cold','','2023-08-31 10:16:32','active','1','','1',1); /*!40000 ALTER TABLE `message` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `meterreading` -- DROP TABLE IF EXISTS `meterreading`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `meterreading` ( `id` int(11) NOT NULL AUTO_INCREMENT, `houseno` varchar(60) NOT NULL, `plotno` varchar(50) NOT NULL, `idno` varchar(50) NOT NULL, `tenantid` varchar(40) NOT NULL, `entrydate` varchar(50) NOT NULL, `description` text NOT NULL, `checkoutdate` datetime NOT NULL, `status` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `createdat` datetime NOT NULL, `updatedat` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `amount` varchar(30) NOT NULL, `paymentstatus` varchar(30) NOT NULL, `paymentmode` varchar(30) NOT NULL, `paymentcode` varchar(30) NOT NULL, `totalamount` decimal(10,2) NOT NULL, `overpayment` decimal(10,2) NOT NULL, `discount` varchar(30) NOT NULL, `transactioncode` varchar(30) NOT NULL, `roomtype` varchar(40) NOT NULL, `number` varchar(10) NOT NULL, `total` varchar(30) NOT NULL, `year` varchar(30) NOT NULL, `month` varchar(30) NOT NULL, `opening` varchar(20) NOT NULL, `closing` varchar(30) NOT NULL, `meternumber` varchar(10) NOT NULL, `opendate` varchar(30) NOT NULL, `closedate` varchar(30) NOT NULL, `phone` varchar(10) NOT NULL, `category` varchar(30) NOT NULL DEFAULT 'accommodation', `deposite` decimal(10,2) NOT NULL, `chargeid` int(11) NOT NULL, `booings` int(11) NOT NULL DEFAULT 1, `branchid` int(10) NOT NULL DEFAULT 1, `currency` varchar(20) DEFAULT NULL, `rate` varchar(30) NOT NULL, `charge` varchar(30) NOT NULL, `type` varchar(20) NOT NULL, `updatedby` varchar(20) NOT NULL, `usedqty` varchar(20) NOT NULL, `roomid` int(20) DEFAULT NULL, `roomchargeid` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `meterreading` -- LOCK TABLES `meterreading` WRITE; /*!40000 ALTER TABLE `meterreading` DISABLE KEYS */; /*!40000 ALTER TABLE `meterreading` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `migrations` -- DROP TABLE IF EXISTS `migrations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `migrations` ( `migration` varchar(255) NOT NULL, `batch` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `migrations` -- LOCK TABLES `migrations` WRITE; /*!40000 ALTER TABLE `migrations` DISABLE KEYS */; INSERT INTO `migrations` VALUES ('2014_10_12_000000_create_users_table',1),('2014_10_12_100000_create_password_resets_table',1),('2016_07_02_112357_Product',1); /*!40000 ALTER TABLE `migrations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `modules` -- DROP TABLE IF EXISTS `modules`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `modules` ( `name` varchar(255) NOT NULL, `sort` int(10) NOT NULL, `icon` varchar(255) NOT NULL, `id` varchar(100) NOT NULL, `status` varchar(50) NOT NULL DEFAULT '1', `url` text NOT NULL, `type` varchar(50) NOT NULL DEFAULT 'side', `menu` varchar(30) DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `name_lang_key` (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `modules` -- LOCK TABLES `modules` WRITE; /*!40000 ALTER TABLE `modules` DISABLE KEYS */; INSERT INTO `modules` VALUES ('Accomodation',84,'money','accomodation','1','admin/viewpallmyplots','side','accomodation'),('Accounting(Charts of Accounts)',35,'battery-quarter','accounting','1','user/allaccounting','side','banking'),('Accounting Reports',35,'money','accountingreports','1','user/startsales','side','banking'),('Assets',49,'paw','assets','1','user/viewassets','side','assetliability'),('Bank Deposits',35,'money','bankdeposits','1','user/viewbanks','side','banking'),('Bank Transfer',35,'money','banktransfer','1','user/viewbanktransfer','side','banking'),('Biometric Records',31,'rss-square','biometricrecords','1','user/allattendance','side','humanresource'),('Branch',81,'rss-square','branch','1','user/viewbranch','side','setting'),('Call center',12,'rss-square','callcenter','1','user/callcenter','side','contact'),('Cashier Sales',87,'folder-open','cashiersales','1','user/mysales','side','moneyin'),('Cheque Management',34,'money','chequemanagemant','1','user/viewcheque','side','banking'),('Comments/Complains',11,'paw','complain','1','user/complain','side','project'),('Configuration',5,'home','config','1','user/viewconfiguration','top','setting'),('Counter Radio Button',90,'rss-square','counterradiobutton','1','radio','side','setting'),('Damaged products',50,'paw','damagedproducts','1','user/viewdamages','side','assetliability'),('Deals',11,'calendar-times-o','deals','1','user/viedeals','side','project'),('Departments',31,'rss-square','departments','1','user/department','side','humanresource'),('Display Counter',6,'rss-square','displaycounter','0','display','side','goodservice'),('Display Sales Report',24,'folder-open','displayreport','1','user/displayreport','side','report'),('Documents',14,'folder-open-o','documents','1','user/viewdocuments','side','project'),('E-Commerce',8,'grouping','ecommerce','1','user/ecommerce','side','moneyin'),('Events',10,'line-chart','events','1','user/viewevents','side','project'),('Grouping Members',20,'paper-plane','grouping','1','user/viewgrouping','side','contact'),('Human Resource',14,'rss-square','humanresource','1','user/viewrequest','side','humanresource'),('Income',85,'window-close','income','1','user/allinvoices','side','moneyin'),('Expenses',85,'window-close','incomeexpenses','1','user/viewexpenses','side','moneyout'),('Dispatched stocklist/Store',60,'sort-amount-asc','incomingstock','1','user/viewincomingstock','side','goodservice'),('Issued Store Items',59,'sort-amount-asc','incomingstore','1','user/viewallorder','side','goodservice'),('journal entry',35,'money','journalentry','1','user/viewjournalentry','side','banking'),('Labour Records',31,'rss-square','labourrecords','1','user/viewlabour','side','humanresource'),('Leave Management',31,'rss-square','leavemanagement','1','user/viewleaves','side','humanresource'),('Low Store',55,'battery-quarter','lowproducts','1','user/viewwarningproducts','side','goodservice'),('Low stocklist',57,'battery-quarter','lowstocklist','1','user/viewlowstore','side','goodservice'),('Loyality Cards',30,'credit-card','loyalitycards','1','user/viewloyality','side','project'),('People/Contacts',80,'rss-square','members','1','user/viewmember','side','contact'),('Open and Close Sales',87,'money','openclose','0','user/openclose','side','moneyin'),('Change password',9,'hourglass-start','password','1','user/passwordform','side','setting'),('Payroll',30,'rss-square','payroll','1','user/salaryhistory','side','humanresource'),('Payroll Setup',31,'rss-square','payrollsetup','1','user/payrollsetup','side','humanresource'),('Category of people',33,'address-book-o','peoplecategory','1','user/viewcategory','side','contact'),('Print Receipt',1,'recycle','printreceipt','1','user/printreceipts','side','goodservice'),('Stock List(Counter)',66,'snowflake-o','productlist','1','user/viewproductlist','side','goodservice'),('Products(Main store)',65,'snowflake-o','products','1','user/viewproducts','side','goodservice'),('Category of Products',70,'recycle','productscategory','1','user/viewproductcategory','side','goodservice'),('Update profile',8,'blind','profile','1','user/profileform','side','setting'),('Projects Management',50,'bullseye','projectsmanagement','1','user/viewprojets','side','project'),('Purchases',86,'automobile','purchases','1','user/viewpurchases','side','moneyout'),('Quotation',8,'money','quotation','1','user/allquatation','side','moneyin'),('Record Delivery',87,'cart-plus','recorddelivery','1','user/deliveryhome','side','moneyin'),('Manage Report',25,'folder-open','reports','1','user/startsales','side','report'),('Retail sales',90,'cart-plus','sales','1','user/viewsales','side','moneyin'),('Sales Order',87,'money','salesorder','1','user/salesorder','side','moneyin'),('Select User',1,'rss-square','selectuser','0','login','side','contact'),('Send Sms',15,'paper-plane','sendsms','1','user/viewsms','side','project'),('Tasks',12,'bullseye','task','1','user/viewtasks','side','project'),('Tasks Category',13,'birthday-cake','taskscategory','1','user/viewtaskcategory','side','project'),('Users',75,'rss-square','users','1','user/viewemployee','side','contact'),('Return/RePrint Sales',86,'paw','viewreturnsales','1','user/viewreturnsales','side','moneyout'),('Whole sale',88,'cart-plus','wholesale','1','user/viewwholesales','side','moneyin'); /*!40000 ALTER TABLE `modules` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `modulesactions` -- DROP TABLE IF EXISTS `modulesactions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `modulesactions` ( `actionid` varchar(100) NOT NULL, `moduleid` varchar(100) NOT NULL, `name` varchar(100) NOT NULL, `sort` int(11) NOT NULL, PRIMARY KEY (`actionid`,`moduleid`), KEY `phppos_modules_actions_ibfk_1` (`moduleid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `modulesactions` -- LOCK TABLES `modulesactions` WRITE; /*!40000 ALTER TABLE `modulesactions` DISABLE KEYS */; INSERT INTO `modulesactions` VALUES ('accommodationcleaner','accomodation','Tick ONLY if Cleaner',26),('accommodationreceiptionist','accomodation','Tick ONLY if Receptionist',27),('accomodationmanager','accomodation','Tick ONLY if manager',25),('accountlimit','sales','Enforce Daily Sales Limit',16),('add','assets','Add asset',1),('add','bankdeposits','add',1),('add','banktransfer','add',1),('add','biometricrecords','add',1),('add','branch','Add Baranch',1),('add','callcenter','Add Calls',1),('add','chequemanagemant','Post Cheque',1),('add','complain','Add complain',2),('add','config','add',1),('add','damagedproducts','add',1),('add','deals','add',1),('add','departments','add',1),('add','documents','add',1),('add','ecommerce','Add',1),('add','events','add',1),('add','grouping','add',1),('add','humanresource','Add Expense Request Form',1),('add','income','add',2),('add','incomeexpenses','add',1),('add','incomingstock','add',1),('add','incomingstore','Add incoming',1),('add','journalentry','add',1),('add','labourrecords','add',1),('add','leavemanagement','add',0),('add','lowproducts','add',1),('add','lowstocklist','add',6),('add','loyalitycards','add',1),('add','members','add',1),('add','payroll','add',1),('add','payrollsetup','add',1),('add','peoplecategory','add',1),('add','productlist','Add Products',7),('add','products','add',1),('add','productscategory','add',1),('add','projectsmanagement','Create New Project',2),('add','purchases','add',1),('add','quotation','Add Quotaion',1),('add','recorddelivery','Add Delivery',1),('add','sales','add',1),('add','salesorder','Create Sales Order',1),('add','sendsms','add',1),('add','task','add',1),('add','taskscategory','add',1),('add','users','add',1),('add','viewreturnsales','add',1),('add','wholesale','add',1),('AddAgents','deals','Add Agents',30),('addbatchno','purchases','Add batch No',33),('addcharges','accomodation','Add Room Chaerges',4),('adddailycollection','cashiersales','Add Daily Collection',7),('addexpirydate','purchases','Add Expiry Date',34),('addhouse','accomodation','Add House',1),('addpossiblefeedback','deals','Add Possible feedback',20),('addroom','accomodation','Add Room',3),('addstock','productlist','Add stock',4),('addstock','products','addstock',4),('advancebooking','accomodation','advance booking',11),('all','cashiersales','View all Cashier sales',4),('allcompalin','complain','View Others Complain',11),('allleaves ','humanresource','View all leaves',20),('allocate','humanresource','Allocate Money',5),('approve','humanresource','Make Approval',2),('approve','purchases','Approve Purchase order',22),('approveorders','ecommerce','Approve New orders',7),('assignproduction','productlist','Assign Production Items',62),('assignrooms','accomodation','Asign Cleaning rooms',7),('assigntask','task','Assign Task',10),('backdatesales','sales','Back date sales',17),('bioattendance','humanresource','Biometric Attendance',30),('budget','purchases','View Budget',10),('bulk','productlist','Upload bulk stock',1),('bulk','products','bulk',5),('bulkcheckin','accomodation','Bulk Checkin',58),('bulkpriceupdate','productlist','Bulk Price Update',33),('bulkpriceupdate','products','Bulk Price Update',33),('bulkreservation','accomodation','Bulk Reservation',59),('bulkstatuschange','accomodation','Bulk Room Status Change',60),('cancel','accomodation','Cancel Payment/Bookings',3),('card','accomodation','Sale in Visa Card',2),('card','sales','Card Sales',7),('cash','accomodation','Sale in Cash',2),('cash','sales','Sell in Cash',3),('cashiersales','cashiersales','View Sales',5),('change','password','change',1),('changepayment','accomodation','Change payment',9),('changeserialstatus','productlist','Change Serial Status',20),('changestatus','cashiersales','Approve Till Collections',68),('changestatus','recorddelivery','Change Status',6),('changetaxstatus','sales','Change Tax Status',30),('changeuomonsales','sales','Change Unit Of Measurement',33),('checkin','accomodation','View Room window',4),('checkinroom','accomodation','Check in Rooms',2),('checkoutcustomerwithbalance','accomodation','Check out customer with balance',20),('checkoutroom','accomodation','Check out Room',3),('cheque','accomodation','Sale in Cheque/Bank',2),('cheque','sales','Cheque/Bank sales',8),('ClaimDamaged','recorddelivery','Change to Claim Damaged',17),('ClaimOK','recorddelivery','Cahange to Claim OK',16),('Claimraised','recorddelivery','Change to Claim raised',15),('cleanrooms','accomodation','Clean Rooms',4),('clear','viewreturnsales','Clear Sales',5),('clearallsales','cashiersales','Clear all sales for others',10),('clearpayments','sales','Clear/Add payments',7),('clearsales','accomodation','Clear room sales',40),('clearsalesisdefault','cashiersales','Enable Clear-Sales Page As Default',79),('closebill','sales',' Close Bill',6),('closeexpense','incomeexpenses','Close Expense',3),('config','accomodation','Accommodation Settings',33),('credit','accomodation','Sale in Credit',2),('credit','sales','Credit sales',10),('creditnote','sales','Credit Note',8),('customerregister','accomodation','Customer Register',10),('dailycollections','accomodation','Daily Collections',56),('dailypayments','accomodation','View Daily Payments',10),('dailysales','accomodation',' Daily Sales',1),('dailysalesonly','cashiersales','View Only Daily sales Report',40),('delete','assets','Delete',5),('delete','bankdeposits','delete',3),('delete','branch','Delete Branch',5),('delete','callcenter','Delete calls',5),('delete','cashiersales','Delete Sales',4),('delete','complain','Delete Complain',11),('delete','config','delete',0),('delete','damagedproducts','delete',3),('delete','deals','delete',3),('delete','documents','delete',3),('delete','ecommerce','delete',3),('delete','events','delete',3),('delete','grouping','delete',3),('delete','humanresource','Delete Expense Request Form',3),('delete','incomingstock','delete',3),('delete','incomingstore','Delete incoming',3),('delete','peoplecategory','delete',3),('delete','productlist','Delete Products',4),('delete','products','delete',3),('delete','productscategory','delete',3),('delete','projectsmanagement','Delete Products',5),('delete','purchases','delete',3),('delete','quotation','Delete',3),('delete','recorddelivery','Delete Delivery',5),('delete','reports','Delete sales',3),('delete','sales','delete',3),('delete','sendsms','delete',3),('delete','task','delete',3),('delete','taskscategory','delete',3),('delete','users','delete',3),('delete','viewreturnsales','delete',3),('delete','wholesale','delete',2),('deleteallroles','users','Delete all Roles',5),('deletebank','accounting','Delete Bank Account',2),('deletedailycollections','cashiersales','Delete Daily Collections',9),('deleteglaccount','accounting','Delete GL Account',4),('deleteorder','products','Delete Order',5),('deletepeople','members','Delete Contacts',5),('deleteproductionitem','productlist','Delete Production Item',63),('Delivered','recorddelivery','Change to Delivered',14),('detailedvatinvoice','income','Show Detailed Vat Invoice',5),('discount','sales','Print Discount',5),('dispatch','products','Dispatch Products',6),('Dispatched','recorddelivery','Change to Dispatched',10),('displaycustomers','sales','Display employees using buttons',5),('displaypreviousbalance','sales','Display Previous Bal on Invoice',65),('dontprint','sales','Display Dont Print Button',15),('dontshowbp','reports','Dont Show B.Price',7),('dontshowprofit','reports','Don Not Show Profit',10),('dontshowstock','productlist','Dont show stock',82),('dontshowstock','products','Dont show stock',80),('dontshowstock','sales','Dont show stock balance during sales',30),('dontshowtotal','cashiersales','Do Not Show grand Total',6),('download','callcenter','download calls',4),('download','reports','download',2),('downloaddeals','deals','Download deals',20),('editmpesa','cashiersales','Enter Mpesa Amount Directly',3),('editmpesadate','cashiersales','Edit Mpesa Entry date',5),('editopenclosestock','productlist','Update Closing and Opening stock',10),('editsellingprice','sales','Change Selling Price',7),('editstocktaken','productlist','Change closed and stock taken',9),('entermpesacode','cashiersales','Enter Mpesa Code',3),('entermpesacode','sales','Enter Mpesa Code',40),('FailedDelivery','recorddelivery','Change to Failed Delivery',12),('givediscount','accomodation','Give Discount',4),('giveloyalityponts','sales','Give Poinsts',30),('housekeeping','accomodation','House Keeping',9),('leaseitems','sales','Lease Items',30),('leavesetup','humanresource','Add Leave setup',8),('linksalesorders','openclose','Link Order and sales',4),('Logout','sales','Log out After printing',5),('managecustomer','accomodation','Manager Customer',22),('managehotel','accomodation','Manage Hotel',6),('managerental','accomodation','Manage Rental Houses',8),('mergebill','sales','Merge Bill:',32),('more','lowstocklist','View more',6),('more','productlist','View Added stock',2),('more','products','more',4),('moresales','sales','Add More Sales',4),('moresales','viewreturnsales','Add more Sales',5),('move','productlist','Move stock/ Break/Distribute',2),('mpesa','accomodation','Sale in mpesa',2),('mpesa','sales','Sale in Mpesa',6),('mpesabalance','sales','Bank /Mpesa Balance',5),('mpesapendingreport','cashiersales','View All Pending Mpesa Report',20),('mpesaverifiedreport','cashiersales','View All Verified Mpesa Report',21),('negativesales','sales','Make Negative sales',60),('negativestockadjustment','productlist','Negative Stock Adjustment',51),('negativestockadjustment','products','Negative Stock Adjustment',51),('Novatsales','config','No Vat Sales',20),('opencloseshift','members','Open and Close Employee Shift',26),('openclosestock','productlist','Open and Close stock',8),('order','sales','User Order Button',6),('overalclearingpendingtasks','task','Clear Overal pending tasks for anyone',20),('pendingisdefault','cashiersales','Enable Pending Page As Default',69),('plotexpenses','accomodation','Plot Expenses',63),('points','accomodation','Sale in Loyality Points',2),('points','sales','Loyality Point sales',9),('Post Bank Deposits','accomodation','bankdeposits',6),('postexpense','accomodation','Post Expense',5),('postgeneraltask','task','Post General Task',5),('postrentalexpenses','incomeexpenses','Post rental Expeses',20),('postspecifictask','task','Post Specific Task',3),('posttaskforothers','task','Post task for others',11),('price','products','change price',7),('printbill','sales',' Print Bill',6),('printdelivery','sales','Print delivery',38),('printreceipt','sales','Print Receipt',1),('productcode','config','Display Product code in receipt',5),('productdiscount','sales','Give discount Product',6),('receiptno','sales','Enter Receipt No Directly',50),('receiveoverpayment','income','Receive overpayment',7),('recordcoins','sales','Record Savings/Coins',26),('removeallstock','products','View all outgoing stock',7),('removestock','products','Issue stock from store',6),('report','recorddelivery','Delivery Report',9),('reprint','sales','Reprint Receipt',5),('return','viewreturnsales','Return Sales',4),('ReturnedandReceived','recorddelivery','Change to Returned and Received',13),('reversempesa','cashiersales','Reverse Mpesa',9),('sale','sales','sale',4),('sale','wholesale','sale',0),('salebelowbprice','sales','Can sell below set b.price',10),('salesbeyondbprice','sales','Can sell below set s.price',9),('salesorder','purchases','Sales Order',10),('salesperson','sales','Choose Sales person',50),('select','sales','Select Customers',5),('selectcurrency','sales','Select Currency',50),('selectmessage','sales','Select Order Message',1),('selectroom','sales','Select Room',12),('selecttable','sales','Select Table',35),('sell','openclose','Sell',1),('sendsms','sales','Send Digital Receipt/Sms',40),('setup','ecommerce','Setup E-commerce',6),('showdefaultserials','purchases','Generate with default Serial Numbers',20),('splitbill','sales','Split Bill',31),('stocktaking','productlist','Do stock Taking',8),('suspend','sales','Suspend/Cancel Sales',1),('transfer','productlist','Transfer Products',3),('transferdeals','deals','Transfer Deals',30),('transfersms','sendsms','Transfer sms to others',5),('upadate','callcenter','Update',2),('update','assets','Update',2),('update','bankdeposits','update',2),('update','branch','Update Branch',3),('update','complain','Update Complain',6),('update','config','update',2),('update','damagedproducts','update',2),('update','deals','update',2),('update','documents','update',2),('update','ecommerce','Upadate Data',2),('update','events','update',2),('update','grouping','update',2),('update','humanresource','Update Expense Request Form',2),('update','incomeexpenses','update',3),('update','incomingstock','update',2),('update','lowproducts','update',1),('update','loyalitycards','update',2),('update','members','update',2),('update','peoplecategory','update',2),('update','productlist','Update Product',6),('update','products','update',2),('update','productscategory','update',2),('update','profile','update',1),('update','projectsmanagement','Edit Projects',4),('update','purchases','update',2),('update','quotation','Update',2),('update','recorddelivery','Update Delivery',3),('update','reports','update sales',4),('update','sales','update',2),('update','salesorder','Update Sales Order',4),('update','sendsms','update',2),('update','task','update',2),('update','taskscategory','update',2),('update','users','update',2),('update','viewreturnsales','update',2),('update','wholesale','update',4),('updatebuyingprice','purchases','update buying price',4),('updatecharges','accomodation','Update Room Charges',4),('updateclosedexpenses','incomeexpenses','Edit closed expenses',4),('updateclosedinvoice','purchases','update closed invoice',6),('updatedailycollections','cashiersales','Update Daily Collection',9),('updatehouse','accomodation','Update House',5),('updatepaymentmode','sales','Update Payment Mode',7),('updateproductionitem','productlist','Update Production Item',64),('updateqtysales','sales','Update Quantity on sales Window',61),('UpdateRenewal','members','Update Renewal',30),('updateroom','accomodation','Update Room',5),('updatesellingprice','purchases','update selling price',5),('updateserial','purchases','Update Serial',35),('updatestock','productlist','Update Stock (Cl.Stock)',2),('uploadexpenses','incomeexpenses','Upload Expenses',30),('usekeyboard','sales','Use Internal Keyboard',50),('view','accounting','View Accounting',4),('view','accountingreports','view',1),('view','branch','View Branch',2),('view','callcenter','View Calls',3),('view','chequemanagemant','View Cheques',2),('view','complain','View Complain',5),('view','displayreport','Display Report',1),('view','humanresource','View Expense Request Form',4),('View','income','View',1),('view','incomingstock','View Incoming store products',2),('view','incomingstore','View Incoming store products',4),('view','lowstocklist','View',6),('view','productlist','View Products',5),('view','projectsmanagement','View Projects',1),('view','quotation','View',5),('view','recorddelivery','View Delivery',2),('view','reports','view',1),('view','salesorder','View Sales Order',3),('View others contact','deals','viewcontact',20),('viewall','deals','View other people\'s deals',5),('viewall','quotation','View others quoation',10),('viewall','reports','View all Branches',6),('viewall','salesorder','View others Sales Order',5),('viewall','task','View other people\'s tasks',2),('viewallcollections','cashiersales','View Others Daily Collection',16),('viewallcounters','cashiersales','View All Counters',20),('viewallcounters','purchases','View All Counters',20),('viewalldocuments','documents','View all Documents',5),('viewallpayroll','humanresource','View Payroll For everyone',5),('viewbills','incomeexpenses','View Bills',6),('viewbprice','productlist','Dont View Bprice',88),('viewbprice','products','Dont View Bprice',88),('viewbuyingprice','sales','view buying price',7),('viewcommission','cashiersales','View Commision',31),('viewcreditors','incomeexpenses','VIew creditors',8),('viewdailycollections','cashiersales','View Daily Collection',8),('viewdebtors','incomeexpenses','View Deptors',7),('viewdirectpurchases','purchases','View Direct Purchase',8),('viewexpense','incomeexpenses','View Expense',6),('viewhouse','accomodation','View House',1),('viewmpesamessages','cashiersales','View Mpesa Messages',40),('vieworders','ecommerce','View Orders',4),('viewothersgeneraltask','task','View Others General Task',9),('viewothersspecifictask','task','View Others Specific Task',7),('viewproduction','productlist','View Production',60),('viewproductsfromallbranches','productlist','View Products From All Branches',30),('viewpurchase','purchases','Purchase Order',9),('viewquotation','purchases','View Quotation',7),('viewreport','openclose','view open and close report',3),('viewreports','accomodation','View Reports',22),('viewroomcleaned','accomodation','View Room Cleaned',33),('viewrooms','accomodation','View All Rooms',1),('viewserials','productlist','View serial Number',20),('viewserials','purchases','View serial Numbers',8),('viewtill','cashiersales','View Till Collections',8),('voucher','accomodation','Sale in Voucher',2),('voucher','sales','Gift Voucher sales',9),('wiewinvoices','incomeexpenses','View all Expenses',5); /*!40000 ALTER TABLE `modulesactions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `moneydocuments` -- DROP TABLE IF EXISTS `moneydocuments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `moneydocuments` ( `id` int(50) NOT NULL, `name` text NOT NULL, `imageid` varchar(50) NOT NULL, `user` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `moneydocuments` -- LOCK TABLES `moneydocuments` WRITE; /*!40000 ALTER TABLE `moneydocuments` DISABLE KEYS */; /*!40000 ALTER TABLE `moneydocuments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `mpesasales` -- DROP TABLE IF EXISTS `mpesasales`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `mpesasales` ( `id` int(11) NOT NULL AUTO_INCREMENT, `amount` decimal(10,2) NOT NULL, `userid` int(20) NOT NULL, `companyid` int(5) NOT NULL, `dateposted` varchar(30) NOT NULL, `paymentstatus` varchar(10) NOT NULL, `branch` int(10) NOT NULL, `type` varchar(30) NOT NULL, `code` varchar(50) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `code` (`code`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `mpesasales` -- LOCK TABLES `mpesasales` WRITE; /*!40000 ALTER TABLE `mpesasales` DISABLE KEYS */; /*!40000 ALTER TABLE `mpesasales` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `nation` -- DROP TABLE IF EXISTS `nation`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `nation` ( `id` int(11) NOT NULL AUTO_INCREMENT, `code` varchar(4) NOT NULL DEFAULT '', `name` varchar(100) NOT NULL DEFAULT '', `description` varchar(40) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=245 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `nation` -- LOCK TABLES `nation` WRITE; /*!40000 ALTER TABLE `nation` DISABLE KEYS */; INSERT INTO `nation` VALUES (1,'KE','Kenya',''),(2,'CA','Canada',''),(3,'AF','Afghanistan',''),(4,'AL','Albania',''),(5,'DZ','Algeria',''),(6,'DS','American Samoa',''),(7,'AD','Andorra',''),(8,'AO','Angola',''),(9,'AI','Anguilla',''),(10,'AQ','Antarctica',''),(11,'AG','Antigua and/or Barbuda',''),(12,'AR','Argentina',''),(13,'AM','Armenia',''),(14,'AW','Aruba',''),(15,'AU','Australia',''),(16,'AT','Austria',''),(17,'AZ','Azerbaijan',''),(18,'BS','Bahamas',''),(19,'BH','Bahrain',''),(20,'BD','Bangladesh',''),(21,'BB','Barbados',''),(22,'BY','Belarus',''),(23,'BE','Belgium',''),(24,'BZ','Belize',''),(25,'BJ','Benin',''),(26,'BM','Bermuda',''),(27,'BT','Bhutan',''),(28,'BO','Bolivia',''),(29,'BA','Bosnia and Herzegovina',''),(30,'BW','Botswana',''),(31,'BV','Bouvet Island',''),(32,'BR','Brazil',''),(33,'IO','British lndian Ocean Territory',''),(34,'BN','Brunei Darussalam',''),(35,'BG','Bulgaria',''),(36,'BF','Burkina Faso',''),(37,'BI','Burundi',''),(38,'KH','Cambodia',''),(39,'CM','Cameroon',''),(40,'CV','Cape Verde',''),(41,'KY','Cayman Islands',''),(42,'CF','Central African Republic',''),(43,'TD','Chad',''),(44,'CL','Chile',''),(45,'CN','China',''),(46,'CX','Christmas Island',''),(47,'CC','Cocos (Keeling) Islands',''),(48,'CO','Colombia',''),(49,'KM','Comoros',''),(50,'CG','Congo',''),(51,'CK','Cook Islands',''),(52,'CR','Costa Rica',''),(53,'HR','Croatia (Hrvatska)',''),(54,'CU','Cuba',''),(55,'CY','Cyprus',''),(56,'CZ','Czech Republic',''),(57,'DK','Denmark',''),(58,'DJ','Djibouti',''),(59,'DM','Dominica',''),(60,'DO','Dominican Republic',''),(61,'TP','East Timor',''),(62,'EC','Ecuador',''),(63,'EG','Egypt',''),(64,'SV','El Salvador',''),(65,'GQ','Equatorial Guinea',''),(66,'ER','Eritrea',''),(67,'EE','Estonia',''),(68,'ET','Ethiopia',''),(69,'FK','Falkland Islands (Malvinas)',''),(70,'FO','Faroe Islands',''),(71,'FJ','Fiji',''),(72,'FI','Finland',''),(73,'FR','France',''),(74,'FX','France, Metropolitan',''),(75,'GF','French Guiana',''),(76,'PF','French Polynesia',''),(77,'TF','French Southern Territories',''),(78,'GA','Gabon',''),(79,'GM','Gambia',''),(80,'GE','Georgia',''),(81,'DE','Germany',''),(82,'GH','Ghana',''),(83,'GI','Gibraltar',''),(84,'GR','Greece',''),(85,'GL','Greenland',''),(86,'GD','Grenada',''),(87,'GP','Guadeloupe',''),(88,'GU','Guam',''),(89,'GT','Guatemala',''),(90,'GN','Guinea',''),(91,'GW','Guinea-Bissau',''),(92,'GY','Guyana',''),(93,'HT','Haiti',''),(94,'HM','Heard and Mc Donald Islands',''),(95,'HN','Honduras',''),(96,'HK','Hong Kong',''),(97,'HU','Hungary',''),(98,'IS','Iceland',''),(99,'IN','India',''),(100,'ID','Indonesia',''),(101,'IR','Iran (Islamic Republic of)',''),(102,'IQ','Iraq',''),(103,'IE','Ireland',''),(104,'IL','Israel',''),(105,'IT','Italy',''),(106,'CI','Ivory Coast',''),(107,'JM','Jamaica',''),(108,'JP','Japan',''),(109,'JO','Jordan',''),(110,'KZ','Kazakhstan',''),(111,'US','United States ',''),(112,'KI','Kiribati',''),(113,'KP','Korea, Democratic People\'s Republic of',''),(114,'KR','Korea, Republic of',''),(115,'XK','Kosovo',''),(116,'KW','Kuwait',''),(117,'KG','Kyrgyzstan',''),(118,'LA','Lao People\'s Democratic Republic',''),(119,'LV','Latvia',''),(120,'LB','Lebanon',''),(121,'LS','Lesotho',''),(122,'LR','Liberia',''),(123,'LY','Libyan Arab Jamahiriya',''),(124,'LI','Liechtenstein',''),(125,'LT','Lithuania',''),(126,'LU','Luxembourg',''),(127,'MO','Macau',''),(128,'MK','Macedonia',''),(129,'MG','Madagascar',''),(130,'MW','Malawi',''),(131,'MY','Malaysia',''),(132,'MV','Maldives',''),(133,'ML','Mali',''),(134,'MT','Malta',''),(135,'MH','Marshall Islands',''),(136,'MQ','Martinique',''),(137,'MR','Mauritania',''),(138,'MU','Mauritius',''),(139,'TY','Mayotte',''),(140,'MX','Mexico',''),(141,'FM','Micronesia, Federated States of',''),(142,'MD','Moldova, Republic of',''),(143,'MC','Monaco',''),(144,'MN','Mongolia',''),(145,'ME','Montenegro',''),(146,'MS','Montserrat',''),(147,'MA','Morocco',''),(148,'MZ','Mozambique',''),(149,'MM','Myanmar',''),(150,'NA','Namibia',''),(151,'NR','Nauru',''),(152,'NP','Nepal',''),(153,'NL','Netherlands',''),(154,'AN','Netherlands Antilles',''),(155,'NC','New Caledonia',''),(156,'NZ','New Zealand',''),(157,'NI','Nicaragua',''),(158,'NE','Niger',''),(159,'NG','Nigeria',''),(160,'NU','Niue',''),(161,'NF','Norfork Island',''),(162,'MP','Northern Mariana Islands',''),(163,'NO','Norway',''),(164,'OM','Oman',''),(165,'PK','Pakistan',''),(166,'PW','Palau',''),(167,'PA','Panama',''),(168,'PG','Papua New Guinea',''),(169,'PY','Paraguay',''),(170,'PE','Peru',''),(171,'PH','Philippines',''),(172,'PN','Pitcairn',''),(173,'PL','Poland',''),(174,'PT','Portugal',''),(175,'PR','Puerto Rico',''),(176,'QA','Qatar',''),(177,'RE','Reunion',''),(178,'RO','Romania',''),(179,'RU','Russian Federation',''),(180,'RW','Rwanda',''),(181,'KN','Saint Kitts and Nevis',''),(182,'LC','Saint Lucia',''),(183,'VC','Saint Vincent and the Grenadines',''),(184,'WS','Samoa',''),(185,'SM','San Marino',''),(186,'ST','Sao Tome and Principe',''),(187,'SA','Saudi Arabia',''),(188,'SN','Senegal',''),(189,'RS','Serbia',''),(190,'SC','Seychelles',''),(191,'SL','Sierra Leone',''),(192,'SG','Singapore',''),(193,'SK','Slovakia',''),(194,'SI','Slovenia',''),(195,'SB','Solomon Islands',''),(196,'SO','Somalia',''),(197,'ZA','South Africa',''),(198,'GS','South Georgia South Sandwich Islands',''),(199,'ES','Spain',''),(200,'LK','Sri Lanka',''),(201,'SH','St. Helena',''),(202,'PM','St. Pierre and Miquelon',''),(203,'SD','Sudan',''),(204,'SR','Suriname',''),(205,'SJ','Svalbarn and Jan Mayen Islands',''),(206,'SZ','Swaziland',''),(207,'SE','Sweden',''),(208,'CH','Switzerland',''),(209,'SY','Syrian Arab Republic',''),(210,'TW','Taiwan',''),(211,'TJ','Tajikistan',''),(212,'TZ','Tanzania, United Republic of',''),(213,'TH','Thailand',''),(214,'TG','Togo',''),(215,'TK','Tokelau',''),(216,'TO','Tonga',''),(217,'TT','Trinidad and Tobago',''),(218,'TN','Tunisia',''),(219,'TR','Turkey',''),(220,'TM','Turkmenistan',''),(221,'TC','Turks and Caicos Islands',''),(222,'TV','Tuvalu',''),(223,'UG','Uganda',''),(224,'UA','Ukraine',''),(225,'AE','United Arab Emirates',''),(226,'GB','United Kingdom',''),(227,'UM','United States minor outlying islands',''),(228,'UY','Uruguay',''),(229,'UZ','Uzbekistan',''),(230,'VU','Vanuatu',''),(231,'VA','Vatican City State',''),(232,'VE','Venezuela',''),(233,'VN','Vietnam',''),(234,'VG','Virigan Islands (British)',''),(235,'VI','Virgin Islands (U.S.)',''),(236,'WF','Wallis and Futuna Islands',''),(237,'EH','Western Sahara',''),(238,'YE','Yemen',''),(239,'YU','Yugoslavia',''),(240,'ZR','Zaire',''),(241,'ZM','Zambia',''),(242,'ZW','Zimbabwe',''),(243,'UGX','Uganda',' \r\n'),(244,'SA','South Sudan','South Sudan'); /*!40000 ALTER TABLE `nation` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `newstock` -- DROP TABLE IF EXISTS `newstock`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `newstock` ( `id` int(50) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `total` decimal(10,2) NOT NULL, `date` varchar(50) NOT NULL, `item_id1` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'newstock', `companyid` varchar(100) NOT NULL, `invoice_number` varchar(30) NOT NULL, `supplier` varchar(30) NOT NULL, `buyingprice` decimal(10,2) NOT NULL, `amount` varchar(30) NOT NULL, `type` varchar(30) NOT NULL DEFAULT '1', `balance` varchar(30) NOT NULL, `stockfrom` varchar(50) NOT NULL, `stockto` varchar(50) NOT NULL, `item_id` varchar(30) NOT NULL, `invoice` varchar(30) NOT NULL, `discount` varchar(10) NOT NULL, `qty` decimal(10,2) NOT NULL, `tax` varchar(30) NOT NULL, `sellingprice` varchar(11) NOT NULL, `vat` varchar(50) NOT NULL, `taxable` varchar(50) NOT NULL, `vatrate` varchar(50) NOT NULL DEFAULT '16', `serial` varchar(30) NOT NULL, `itemstatus` varchar(30) NOT NULL DEFAULT 'received', `updatedby` int(11) NOT NULL, `updatedat` datetime NOT NULL, `uom` varchar(30) NOT NULL, `uomqty` varchar(30) NOT NULL DEFAULT '0', `branchid` int(11) NOT NULL DEFAULT 1, `buyingpriceinclusive` decimal(10,2) DEFAULT NULL, `taxtype` varchar(20) NOT NULL DEFAULT 'Inclusive', `category` varchar(20) NOT NULL DEFAULT 'branch', `projectid` int(50) DEFAULT NULL, `batchno` varchar(50) NOT NULL, `enddate` varchar(30) NOT NULL, `frombefore` varchar(20) NOT NULL, `fromafter` varchar(20) NOT NULL, `fromremoved` varchar(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=192 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `newstock` -- LOCK TABLES `newstock` WRITE; /*!40000 ALTER TABLE `newstock` DISABLE KEYS */; INSERT INTO `newstock` VALUES (1,'DOUBLE ESPRESSO','3',1.00,'2023-02-05 15:41:59','-7.00','1','newstock','1','','',0.00,'','1','-6','1','1','3','','',0.00,'','','','','','','returned',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(2,'LEMON & GINGER HONEY SIDE DAWA','38',1.00,'2023-02-05 15:42:02','-9.00','1','newstock','1','','',0.00,'','1','-8','1','1','38','','',0.00,'','','','','','','returned',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(3,'LEMON & GINGER HONEY SIDE DAWA','38',1.00,'2023-02-05 15:42:11','-8.00','1','newstock','1','','',0.00,'','1','-7','1','1','38','','',0.00,'','','','','','','returned',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(4,'STRAWBERRY SMOOTHY','37',1.00,'2023-02-05 15:42:13','-4.00','1','newstock','1','','',0.00,'','1','-3','1','1','37','','',0.00,'','','','','','','returned',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(5,'PARTY CUPS','49',1.00,'2023-02-05 15:42:15','-8.00','1','newstock','1','','',0.00,'','1','-7','1','1','49','','',0.00,'','','','','','','returned',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(6,'PARTY CUPS','49',1.00,'2023-02-05 15:42:17','-7.00','1','newstock','1','','',0.00,'','1','-6','1','1','49','','',0.00,'','','','','','','returned',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(7,'CINNAMON TEA','',50.00,'2023-02-26 18:18:30','0.00','5','newstock','1','','',100.00,'','Main','50','Internal','Main','51','','',0.00,'','200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(8,'COFFEE','',14.00,'2023-02-26 18:19:13','0.00','5','newstock','1','','',650.00,'','Main','14','Internal','Main','50','','',0.00,'','800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(9,'PARTY CUPS','',20.00,'2023-02-26 18:20:17','0.00','5','newstock','1','','',0.00,'','Main','20','Internal','Main','49','','',0.00,'','10','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(10,'COFFEE CUPS','',40.00,'2023-02-26 18:20:58','0.00','5','newstock','1','','',0.00,'','Main','40','Internal','Main','48','','',0.00,'','10','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(11,'PAIN AU CHOCOLATE','',60.00,'2023-02-26 18:21:43','0.00','5','newstock','1','','',0.00,'','Main','60','Internal','Main','47','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(12,'CROISANTS','',60.00,'2023-02-26 18:21:58','0.00','5','newstock','1','','',0.00,'','Main','60','Internal','Main','46','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(13,'TOMATO SANDWICH','',50.00,'2023-02-26 18:26:57','0.00','5','newstock','1','','',0.00,'','Main','50','Internal','Main','45','','',0.00,'','350','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(14,'EGG SANDWICH','',50.00,'2023-02-26 18:27:13','0.00','5','newstock','1','','',0.00,'','Main','50','Internal','Main','44','','',0.00,'','400','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(15,'CHICKEN SANDWICH','',50.00,'2023-02-26 18:27:28','0.00','5','newstock','1','','',0.00,'','Main','50','Internal','Main','43','','',0.00,'','600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(16,'BAILEYS HOT CHOCOLATE','',50.00,'2023-02-26 18:27:41','0.00','5','newstock','1','','',0.00,'','Main','50','Internal','Main','42','','',0.00,'','600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(17,'CALYSO COFFEE','',50.00,'2023-02-26 18:27:53','0.00','5','newstock','1','','',0.00,'','Main','50','Internal','Main','41','','',0.00,'','600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(18,'IRISH COFFEE','',50.00,'2023-02-26 18:28:08','0.00','5','newstock','1','','',0.00,'','Main','50','Internal','Main','40','','',0.00,'','600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(19,'CHAI LATE DAWA','',50.00,'2023-02-26 18:28:45','0.00','5','newstock','1','','',0.00,'','Main','50','Internal','Main','39','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(20,'LEMON & GINGER HONEY SIDE DAWA','',50.00,'2023-02-26 18:29:43','0.00','5','newstock','1','','',0.00,'','Main','50','Internal','Main','38','','',0.00,'','350','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(21,'STRAWBERRY SMOOTHY','',30.00,'2023-02-26 18:30:07','0.00','5','newstock','1','','',0.00,'','Main','30','Internal','Main','37','','',0.00,'','400','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(22,'MIXED BERRY SMOOTHY','',30.00,'2023-02-26 18:30:23','0.00','5','newstock','1','','',0.00,'','Main','30','Internal','Main','36','','',0.00,'','400','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(23,'ESPRESSO SHAKES','',30.00,'2023-02-26 18:30:36','0.00','5','newstock','1','','',0.00,'','Main','30','Internal','Main','35','','',0.00,'','350','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(24,'VANILLA SHAKES','',30.00,'2023-02-26 18:30:53','0.00','5','newstock','1','','',0.00,'','Main','30','Internal','Main','34','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(25,'MOCHA SHAKES','',30.00,'2023-02-26 18:31:04','0.00','5','newstock','1','','',0.00,'','Main','30','Internal','Main','33','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(26,'STRAWBERRY SHAKES','',30.00,'2023-02-26 18:31:26','0.00','5','newstock','1','','',0.00,'','Main','30','Internal','Main','32','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(27,'MOCHA COLD','',50.00,'2023-02-26 18:31:42','0.00','5','newstock','1','','',0.00,'','Main','50','Internal','Main','30','','',0.00,'','330','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(28,'BLACK ICED COLD COFFEE','',30.00,'2023-02-26 18:31:58','0.00','5','newstock','1','','',0.00,'','Main','30','Internal','Main','31','','',0.00,'','200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(29,'ICED COLD COFFEE LATE','',30.00,'2023-02-26 18:32:13','0.00','5','newstock','1','','',0.00,'','Main','30','Internal','Main','29','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(30,'ICED COLD CAPPUCINO','',30.00,'2023-02-26 18:33:02','0.00','5','newstock','1','','',0.00,'','Main','30','Internal','Main','28','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(31,'COCONUT COFFEE','',25.00,'2023-02-26 18:34:14','0.00','5','newstock','1','','',0.00,'','Main','25','Internal','Main','27','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(32,'CARAMEL COFFEE','',25.00,'2023-02-26 18:34:38','0.00','5','newstock','1','','',0.00,'','Main','25','Internal','Main','26','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(33,'HAZELNUT COFFEE','',25.00,'2023-02-26 18:35:02','0.00','5','newstock','1','','',0.00,'','Main','25','Internal','Main','25','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(34,'CARAMEL COFFEE','',32.00,'2023-02-26 18:36:07','25.00','5','newstock','1','','',0.00,'','Main','57','Internal','Main','26','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(35,'VANILLA COFFEE','',25.00,'2023-02-26 18:36:23','0.00','5','newstock','1','','',0.00,'','Main','25','Internal','Main','24','','',0.00,'','100','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(36,'MASALA TEA','',30.00,'2023-02-26 18:37:05','0.00','5','newstock','1','','',0.00,'','Main','30','Internal','Main','23','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(37,'GINGER TEA','',50.00,'2023-02-26 18:37:18','0.00','5','newstock','1','','',0.00,'','Main','50','Internal','Main','22','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(38,'HOT CHOCOLATE','',30.00,'2023-02-26 18:40:20','0.00','5','newstock','1','','',0.00,'','Main','30','Internal','Main','20','','',0.00,'','200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(39,'STRAWBERRY TEA','',30.00,'2023-02-26 18:41:28','0.00','5','newstock','1','','',0.00,'','Main','30','Internal','Main','19','','',0.00,'','200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(40,'PAPER MINT','',30.00,'2023-02-26 18:42:26','0.00','5','newstock','1','','',0.00,'','Main','30','Internal','Main','18','','',0.00,'','200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(41,'GREEN TEA','',22.00,'2023-02-26 18:43:18','0.00','5','newstock','1','','',0.00,'','Main','22','Internal','Main','16','','',0.00,'','200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(42,'LEMON TEA','',30.00,'2023-02-26 18:43:30','0.00','5','newstock','1','','',0.00,'','Main','30','Internal','Main','17','','',0.00,'','200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(43,'HIBISCUS TEA','',16.00,'2023-02-26 18:44:30','0.00','5','newstock','1','','',0.00,'','Main','16','Internal','Main','15','','',0.00,'','200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(44,'SINGLE DECAF','',30.00,'2023-02-26 18:44:48','0.00','5','newstock','1','','',0.00,'','Main','30','Internal','Main','14','','',0.00,'','200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(45,'SINGLE DECAF','',15.00,'2023-02-26 18:45:19','30.00','5','newstock','1','','',0.00,'','Main','45','Internal','Main','14','','',0.00,'','200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(46,'DOUBLE DECAF','',30.00,'2023-02-26 18:45:39','0.00','5','newstock','1','','',0.00,'','Main','30','Internal','Main','13','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(47,'SINGLE LATTE','',54.00,'2023-02-26 18:45:54','0.00','5','newstock','1','','',0.00,'','Main','54','Internal','Main','12','','',0.00,'','200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(48,'KENYAN TEA(BREWED TEA)','',50.00,'2023-02-26 18:48:00','0.00','5','newstock','1','','',0.00,'','Main','50','Internal','Main','21','','',0.00,'','200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(49,'DOUBLE LATTE','',25.00,'2023-02-26 18:49:14','0.00','5','newstock','1','','',0.00,'','Main','25','Internal','Main','11','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(50,'SINGLE ESPRESSO MACCHIATO','',54.00,'2023-02-26 18:50:04','0.00','5','newstock','1','','',0.00,'','Main','54','Internal','Main','10','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(51,'DOUBLE ESPRESSO MACCHIATO','',54.00,'2023-02-26 18:50:20','0.00','5','newstock','1','','',0.00,'','Main','54','Internal','Main','9','','',0.00,'','200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(52,'SINGLE AMERICANO','',25.00,'2023-02-26 18:50:32','0.00','5','newstock','1','','',0.00,'','Main','25','Internal','Main','8','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(53,'DOUBLE AMERICANO','',54.00,'2023-02-26 18:50:43','0.00','5','newstock','1','','',0.00,'','Main','54','Internal','Main','7','','',0.00,'','200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(54,'SINGLE MOCHA','',25.00,'2023-02-26 18:50:58','0.00','5','newstock','1','','',0.00,'','Main','25','Internal','Main','6','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(55,'DOUBLE MOCHA','',25.00,'2023-02-26 18:51:10','0.00','5','newstock','1','','',0.00,'','Main','25','Internal','Main','5','','',0.00,'','280','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(56,'DOUBLE ESPRESSO MACCHIATO','',25.00,'2023-02-26 18:51:31','54.00','5','newstock','1','','',0.00,'','Main','79','Internal','Main','9','','',0.00,'','200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(57,'DOUBLE ESPRESSO MACCHIATO','',54.00,'2023-02-26 18:51:57','79.00','5','newstock','1','','',0.00,'','Main','133','Internal','Main','9','','',0.00,'','200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(58,'SINGLE ESPRESSO','',54.00,'2023-02-26 18:53:35','0.00','5','newstock','1','','',0.00,'','Main','54','Internal','Main','4','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(59,'DOUBLE ESPRESSO','',25.00,'2023-02-26 18:53:52','0.00','5','newstock','1','','',0.00,'','Main','25','Internal','Main','3','','',0.00,'','200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(60,'SINGLE CAPPUCCINO','',50.00,'2023-02-26 18:54:26','0.00','5','newstock','1','','',0.00,'','Main','50','Internal','Main','2','','',0.00,'','200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(61,'DOUBLE CAPPUCCINO','',50.00,'2023-02-26 18:54:37','0.00','5','newstock','1','','',0.00,'','Main','50','Internal','Main','1','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(62,'DOUBLE LATTE','',25.00,'2023-02-26 18:54:58','25.00','5','newstock','1','','',0.00,'','Main','50','Internal','Main','11','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(63,'SINGLE AMERICANO','',25.00,'2023-02-26 18:55:33','25.00','5','newstock','1','','',0.00,'','Main','50','Internal','Main','8','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(64,'COFFEE','',13.00,'2023-02-26 19:11:13','0.00','5','newstock','1','','',650.00,'','1','13','internal','1','50','','',0.00,'','800','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(65,'PARTY CUPS','',228.00,'2023-02-26 19:13:07','-12.00','5','newstock','1','','',10.00,'','1','216','internal','1','49','','',0.00,'','15','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(66,'COFFEE CUPS','',222.00,'2023-02-26 19:13:44','-20.00','5','newstock','1','','',0.00,'','1','202','internal','1','48','','',0.00,'','10','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(67,'PAIN AU CHOCOLATE','',60.00,'2023-02-26 19:14:05','-1.00','5','newstock','1','','',0.00,'','1','59','internal','1','47','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(68,'CROISANTS','',60.00,'2023-02-26 19:14:27','-1.00','5','newstock','1','','',0.00,'','1','59','internal','1','46','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(69,'TOMATO SANDWICH','',25.00,'2023-02-26 19:14:49','0.00','5','newstock','1','','',0.00,'','1','25','internal','1','45','','',0.00,'','350','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(70,'EGG SANDWICH','',25.00,'2023-02-26 19:15:13','-3.00','5','newstock','1','','',0.00,'','1','22','internal','1','44','','',0.00,'','400','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(71,'BAILEYS HOT CHOCOLATE','',25.00,'2023-02-26 19:17:31','0.00','5','newstock','1','','',0.00,'','1','25','internal','1','42','','',0.00,'','600','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(72,'DOUBLE CAPPUCCINO','',50.00,'2023-02-26 19:18:30','-31.00','5','newstock','1','','',0.00,'','1','19','internal','1','1','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(73,'DOUBLE LATTE','',54.00,'2023-02-26 19:18:48','-12.00','5','newstock','1','','',0.00,'','1','42','internal','1','11','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(74,'DOUBLE LATTE','',100.00,'2023-02-26 19:19:09','42.00','5','newstock','1','','',0.00,'','1','142','internal','1','11','','',0.00,'','250','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(75,'MOCHA SHAKES','',50.00,'2023-02-26 19:36:11','-5.00','5','newstock','1','','',0.00,'','1','45','internal','1','33','','',0.00,'','300','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(76,'ICED BLACK TEA','',50.00,'2023-02-26 19:46:15','0.00','5','newstock','1','','',150.00,'','Main','50','Internal','Main','53','','',0.00,'','200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(77,'BLACK TEA','',50.00,'2023-02-26 19:46:25','0.00','5','newstock','1','','',200.00,'','Main','50','Internal','Main','52','','',0.00,'','150','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(78,'COFFEE CUPS','',220.00,'2023-02-27 20:33:43','199.00','5','newstock','1','','',0.00,'','1','419','internal','1','48','','',0.00,'','20','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(79,'PROMO PASTRY','',30.00,'2023-03-01 20:25:30','0.00','5','newstock','1','','',200.00,'','Main','30','Internal','Main','54','','',0.00,'','350','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(80,'CINNAMOM TEA','',30.00,'2023-03-01 20:25:40','0.00','5','newstock','1','','',150.00,'','Main','30','Internal','Main','55','','',0.00,'','200','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(81,'EXTRA HONEY 25g','',50.00,'2023-03-01 20:59:32','0.00','5','newstock','1','','',15.00,'','Main','50','Internal','Main','58','','',0.00,'','30','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(82,'MANGO SHAKE','',50.00,'2023-03-01 20:59:45','0.00','5','newstock','1','','',200.00,'','Main','50','Internal','Main','57','','',0.00,'','350','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(83,'OREO SHAKES','',50.00,'2023-03-01 20:59:55','0.00','5','newstock','1','','',200.00,'','Main','50','Internal','Main','56','','',0.00,'','400','','','','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(84,'MANGO SMOOTHY','',30.00,'2024-01-05 12:48:31','30.00','5','newstock','1','','',300.00,'','1','60','internal','1','68','','',0.00,'','400','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(85,'CHICKEN WRAP','',30.00,'2024-01-05 12:58:45','28.00','5','newstock','1','','',600.00,'','1','58','internal','1','67','','',0.00,'','800','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(86,'CHICKEN WRAP','37',0.00,'2024-01-05 13:00:59','58.00','5','newstock','1','','',0.00,'','1','58','','Move','67','','',0.00,'','800','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(87,'CHICKEN WRAP','37',0.00,'2024-01-05 13:01:20','58.00','5','newstock','1','','',0.00,'','1','58','','Move','67','','',0.00,'','800','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(88,'MANGO SMOOTHY','38',0.00,'2024-01-06 13:55:00','60.00','5','newstock','1','','',0.00,'','1','60','','Move','68','','',0.00,'','400','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(89,'CHICKEN WRAP','28',1.00,'2024-01-06 13:58:48','58.00','5','newstock','1','','',0.00,'','1','59','','Move','67','','',0.00,'','800','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(90,'CHICKEN WRAP','29',1.00,'2024-01-06 13:59:12','59.00','5','newstock','1','','',0.00,'','1','60','','Move','67','','',0.00,'','800','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(91,'CHICKEN WRAP','40',0.00,'2024-01-06 14:00:43','60.00','5','newstock','1','','',0.00,'','1','60','','Move','67','','',0.00,'','800','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(92,'MANGO SMOOTHY','',-35.00,'2024-01-06 14:03:40','60.00','5','newstock','1','','',300.00,'','1','25','internal','1','68','','',0.00,'','400','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(93,'SMALL DAWA','-30',300.00,'2024-01-06 16:54:59','0.00','5','newstock','1','','',0.00,'','1','300','','Move','69','','',0.00,'','250','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(94,'SMALL DAWA','',50.00,'2024-01-06 18:15:34','300.00','5','newstock','1','','',200.00,'','1','350','internal','1','69','','',0.00,'','250','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(95,'SMALL DAWA','',10.00,'2024-01-06 18:16:11','350.00','5','newstock','1','','',200.00,'','1','360','internal','1','69','','',0.00,'','250','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(96,'LATTE MACCHIATO','',30.00,'2024-01-07 14:41:27','0.00','5','newstock','1','','',200.00,'','1','30','internal','1','70','','',0.00,'','250','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(97,'PAIN AU CHOCOLATE','',13.00,'2024-01-07 14:42:19','-8.00','5','newstock','1','','',0.00,'','1','5','internal','1','47','','',0.00,'','200','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(98,'PAIN AU CHOCOLATE','',8.00,'2024-01-07 14:43:01','5.00','5','newstock','1','','',0.00,'','1','13','internal','1','47','','',0.00,'','200','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(99,'CROISANTS','',-62.00,'2024-01-07 14:43:52','-31.00','5','newstock','1','','',0.00,'','1','-93','internal','1','46','','',0.00,'','200','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(100,'CROISANTS','',20.00,'2024-01-07 14:44:35','-93.00','5','newstock','1','','',0.00,'','1','-73','internal','1','46','','',0.00,'','200','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(101,'CROISANTS','',40.00,'2024-01-07 14:45:22','-73.00','5','newstock','1','','',0.00,'','1','-33','internal','1','46','','',0.00,'','200','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(102,'CROISANTS','',-33.00,'2024-01-07 14:45:44','-33.00','5','newstock','1','','',0.00,'','1','-66','internal','1','46','','',0.00,'','200','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(103,'CROISANTS','',50.00,'2024-01-07 14:46:06','-66.00','5','newstock','1','','',0.00,'','1','-16','internal','1','46','','',0.00,'','200','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(104,'CROISANTS','',17.00,'2024-01-07 14:46:32','-16.00','5','newstock','1','','',0.00,'','1','1','internal','1','46','','',0.00,'','200','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(105,'CROISANTS','',32.00,'2024-01-07 14:46:54','1.00','5','newstock','1','','',0.00,'','1','33','internal','1','46','','',0.00,'','200','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(106,'CHICKEN SANDWICH','',-11.00,'2024-01-07 14:47:35','-11.00','5','newstock','1','','',0.00,'','1','-22','internal','1','43','','',0.00,'','600','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(107,'CHICKEN SANDWICH','',-22.00,'2024-01-07 14:48:04','-22.00','5','newstock','1','','',0.00,'','1','-44','internal','1','43','','',0.00,'','600','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(108,'CHICKEN SANDWICH','',44.00,'2024-01-07 14:48:26','-44.00','5','newstock','1','','',0.00,'','1','0','internal','1','43','','',0.00,'','600','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(109,'CHICKEN SANDWICH','',15.00,'2024-01-07 14:48:51','0.00','5','newstock','1','','',0.00,'','1','15','internal','1','43','','',0.00,'','600','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(110,'IRISH COFFEE','',53.00,'2024-01-07 14:50:24','-53.00','5','newstock','1','','',0.00,'','1','0','internal','1','40','','',0.00,'','600','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(111,'IRISH COFFEE','',30.00,'2024-01-07 14:50:58','0.00','5','newstock','1','','',0.00,'','1','30','internal','1','40','','',0.00,'','600','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(112,'CHAI LATE DAWA','',10.00,'2024-01-07 14:51:25','-10.00','5','newstock','1','','',0.00,'','1','0','internal','1','39','','',0.00,'','300','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(113,'LEMON & GINGER HONEY SIDE DAWA','',600.00,'2024-01-07 14:51:54','-665.00','5','newstock','1','','',0.00,'','1','-65','internal','1','38','','',0.00,'','350','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(114,'LEMON & GINGER HONEY SIDE DAWA','',65.00,'2024-01-07 14:52:10','-65.00','5','newstock','1','','',0.00,'','1','0','internal','1','38','','',0.00,'','350','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(115,'LEMON & GINGER HONEY SIDE DAWA','',60.00,'2024-01-07 14:52:53','0.00','5','newstock','1','','',0.00,'','1','60','internal','1','38','','',0.00,'','350','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(116,'CHAI LATE DAWA','',30.00,'2024-01-07 14:53:17','0.00','5','newstock','1','','',0.00,'','1','30','internal','1','39','','',0.00,'','300','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(117,'CINNAMOM TEA','',285.00,'2024-01-07 14:53:34','285.00','5','newstock','1','','',150.00,'','1','570','internal','1','55','','',0.00,'','200','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(118,'CINNAMOM TEA','',570.00,'2024-01-07 14:53:56','570.00','5','newstock','1','','',150.00,'','1','1140','internal','1','55','','',0.00,'','200','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(119,'SMALL DAWA','',360.00,'2024-01-07 14:54:12','360.00','5','newstock','1','','',200.00,'','1','720','internal','1','69','','',0.00,'','250','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(120,'SMALL DAWA','',-700.00,'2024-01-07 14:54:28','720.00','5','newstock','1','','',200.00,'','1','20','internal','1','69','','',0.00,'','250','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(121,'SMALL DAWA','',30.00,'2024-01-07 14:54:44','20.00','5','newstock','1','','',200.00,'','1','50','internal','1','69','','',0.00,'','250','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(122,'HOT WATER','',15.00,'2024-01-07 14:55:15','10.00','5','newstock','1','','',70.00,'','1','25','internal','1','60','','',0.00,'','100','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(123,'CINNAMOM TEA','',114.00,'2024-01-07 14:55:42','1140.00','5','newstock','1','','',150.00,'','1','1254','internal','1','55','','',0.00,'','200','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(124,'CINNAMOM TEA','',1254.00,'2024-01-07 14:56:02','1254.00','5','newstock','1','','',150.00,'','1','2508','internal','1','55','','',0.00,'','200','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(125,'CINNAMOM TEA','',-2500.00,'2024-01-07 14:56:32','2508.00','5','newstock','1','','',150.00,'','1','8','internal','1','55','','',0.00,'','200','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(126,'STRAWBERRY SMOOTHY','',30.00,'2024-01-07 14:58:21','-8.00','5','newstock','1','','',0.00,'','1','22','internal','1','37','','',0.00,'','400','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(127,'MIXED BERRY SMOOTHY','',30.00,'2024-01-07 14:58:57','-15.00','5','newstock','1','','',0.00,'','1','15','internal','1','36','','',0.00,'','400','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(128,'MIXED BERRY SMOOTHY','',15.00,'2024-01-07 14:59:31','15.00','5','newstock','1','','',0.00,'','1','30','internal','1','36','','',0.00,'','400','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(129,'ESPRESSO SHAKES','',5.00,'2024-01-07 14:59:55','-4.00','5','newstock','1','','',0.00,'','1','1','internal','1','35','','',0.00,'','350','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(130,'STRAWBERRY SMOOTHY','',3.00,'2024-01-07 15:00:20','22.00','5','newstock','1','','',0.00,'','1','25','internal','1','37','','',0.00,'','400','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(131,'STRAWBERRY SMOOTHY','',5.00,'2024-01-07 15:00:36','25.00','5','newstock','1','','',0.00,'','1','30','internal','1','37','','',0.00,'','400','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(132,'ESPRESSO SHAKES','',29.00,'2024-01-07 15:01:02','1.00','5','newstock','1','','',0.00,'','1','30','internal','1','35','','',0.00,'','350','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(133,'VANILLA SHAKES','',66.00,'2024-01-07 15:01:23','-66.00','5','newstock','1','','',0.00,'','1','0','internal','1','34','','',0.00,'','300','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(134,'VANILLA SHAKES','',30.00,'2024-01-07 15:01:50','0.00','5','newstock','1','','',0.00,'','1','30','internal','1','34','','',0.00,'','300','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(135,'STRAWBERRY SHAKES','',23.00,'2024-01-07 15:02:23','-23.00','5','newstock','1','','',0.00,'','1','0','internal','1','32','','',0.00,'','300','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(136,'STRAWBERRY SHAKES','',30.00,'2024-01-07 15:02:46','0.00','5','newstock','1','','',0.00,'','1','30','internal','1','32','','',0.00,'','300','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(137,'BLACK ICED COLD COFFEE','',19.00,'2024-01-07 15:02:57','-19.00','5','newstock','1','','',0.00,'','1','0','internal','1','31','','',0.00,'','200','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(138,'BLACK ICED COLD COFFEE','',30.00,'2024-01-07 15:03:14','0.00','5','newstock','1','','',0.00,'','1','30','internal','1','31','','',0.00,'','200','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(139,'MOCHA COLD','',19.00,'2024-01-07 15:03:36','-19.00','5','newstock','1','','',0.00,'','1','0','internal','1','30','','',0.00,'','330','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(140,'MOCHA COLD','',30.00,'2024-01-07 15:03:48','0.00','5','newstock','1','','',0.00,'','1','30','internal','1','30','','',0.00,'','330','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(141,'ICED COLD COFFEE LATE','',43.00,'2024-01-07 15:04:00','-43.00','5','newstock','1','','',0.00,'','1','0','internal','1','29','','',0.00,'','300','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(142,'ICED COLD COFFEE LATE','',30.00,'2024-01-07 15:04:16','0.00','5','newstock','1','','',0.00,'','1','30','internal','1','29','','',0.00,'','300','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(143,'ICED COLD CAPPUCINO','',8.00,'2024-01-07 15:04:29','-8.00','5','newstock','1','','',0.00,'','1','0','internal','1','28','','',0.00,'','300','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(144,'ICED COLD CAPPUCINO','',30.00,'2024-01-07 15:05:00','0.00','5','newstock','1','','',0.00,'','1','30','internal','1','28','','',0.00,'','300','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(145,'COCONUT COFFEE','',5.00,'2024-01-07 15:05:08','-5.00','5','newstock','1','','',0.00,'','1','0','internal','1','27','','',0.00,'','100','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(146,'CARAMEL COFFEE','',55.00,'2024-01-07 15:06:28','-55.00','5','newstock','1','','',0.00,'','1','0','internal','1','26','','',0.00,'','100','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(147,'HAZELNUT COFFEE','',7.00,'2024-01-07 15:06:40','-7.00','5','newstock','1','','',0.00,'','1','0','internal','1','25','','',0.00,'','100','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(148,'VANILLA COFFEE','',41.00,'2024-01-07 15:06:53','-41.00','5','newstock','1','','',0.00,'','1','0','internal','1','24','','',0.00,'','100','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(149,'MASALA TEA','',225.00,'2024-01-07 15:07:05','-225.00','5','newstock','1','','',0.00,'','1','0','internal','1','23','','',0.00,'','250','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(150,'MASALA TEA','',60.00,'2024-01-07 15:07:35','0.00','5','newstock','1','','',0.00,'','1','60','internal','1','23','','',0.00,'','250','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(151,'GINGER TEA','',74.00,'2024-01-07 15:08:13','-74.00','5','newstock','1','','',0.00,'','1','0','internal','1','22','','',0.00,'','250','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(152,'GINGER TEA','',30.00,'2024-01-07 15:08:33','0.00','5','newstock','1','','',0.00,'','1','30','internal','1','22','','',0.00,'','250','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(153,'KENYAN TEA(BREWED TEA)','',694.00,'2024-01-07 15:09:18','-694.00','5','newstock','1','','',0.00,'','1','0','internal','1','21','','',0.00,'','200','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(154,'KENYAN TEA(BREWED TEA)','',60.00,'2024-01-07 15:09:31','0.00','5','newstock','1','','',0.00,'','1','60','internal','1','21','','',0.00,'','200','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(155,'HOT CHOCOLATE','',261.00,'2024-01-07 15:10:10','-261.00','5','newstock','1','','',0.00,'','1','0','internal','1','20','','',0.00,'','200','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(156,'HOT CHOCOLATE','',60.00,'2024-01-07 15:11:05','0.00','5','newstock','1','','',0.00,'','1','60','internal','1','20','','',0.00,'','200','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(157,'STRAWBERRY TEA','',13.00,'2024-01-07 15:11:27','-13.00','5','newstock','1','','',0.00,'','1','0','internal','1','19','','',0.00,'','200','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(158,'STRAWBERRY TEA','',25.00,'2024-01-07 15:11:55','0.00','5','newstock','1','','',0.00,'','1','25','internal','1','19','','',0.00,'','200','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(159,'PAPER MINT','',53.00,'2024-01-07 15:12:53','-28.00','5','newstock','1','','',0.00,'','1','25','internal','1','18','','',0.00,'','200','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(160,'LEMON TEA','',120.00,'2024-01-07 15:13:27','-92.00','5','newstock','1','','',0.00,'','1','28','internal','1','17','','',0.00,'','200','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(161,'LEMON TEA','',2.00,'2024-01-07 15:13:51','28.00','5','newstock','1','','',0.00,'','1','30','internal','1','17','','',0.00,'','200','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(162,'GREEN TEA','',64.00,'2024-01-07 15:14:27','-39.00','5','newstock','1','','',0.00,'','1','25','internal','1','16','','',0.00,'','200','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(163,'HIBISCUS TEA','',53.00,'2024-01-07 15:14:50','-28.00','5','newstock','1','','',0.00,'','1','25','internal','1','15','','',0.00,'','200','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(164,'SINGLE DECAF','',28.00,'2024-01-07 15:15:10','-3.00','5','newstock','1','','',0.00,'','1','25','internal','1','14','','',0.00,'','250','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(165,'DOUBLE DECAF','',36.00,'2024-01-07 15:15:31','-11.00','5','newstock','1','','',0.00,'','1','25','internal','1','13','','',0.00,'','280','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(166,'SINGLE ESPRESSO MACCHIATO','',30.00,'2024-01-07 15:16:11','0.00','5','newstock','1','','',0.00,'','1','30','internal','1','10','','',0.00,'','150','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(167,'SINGLE LATTE','',151.00,'2024-01-07 15:16:35','-131.00','5','newstock','1','','',0.00,'','1','20','internal','1','12','','',0.00,'','250','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(168,'SINGLE LATTE','',10.00,'2024-01-07 15:16:49','20.00','5','newstock','1','','',0.00,'','1','30','internal','1','12','','',0.00,'','250','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(169,'DOUBLE LATTE','',166.00,'2024-01-07 15:17:14','-141.00','5','newstock','1','','',0.00,'','1','25','internal','1','11','','',0.00,'','280','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(170,'DOUBLE ESPRESSO MACCHIATO','',32.00,'2024-01-07 15:17:36','-17.00','5','newstock','1','','',0.00,'','1','15','internal','1','9','','',0.00,'','200','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(171,'SINGLE AMERICANO','',127.00,'2024-01-07 15:18:18','-102.00','5','newstock','1','','',0.00,'','1','25','internal','1','8','','',0.00,'','150','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(172,'DOUBLE AMERICANO','',298.00,'2024-01-07 15:19:07','-273.00','5','newstock','1','','',0.00,'','1','25','internal','1','7','','',0.00,'','200','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(173,'DOUBLE ESPRESSO MACCHIATO','',15.00,'2024-01-07 15:19:31','15.00','5','newstock','1','','',0.00,'','1','30','internal','1','9','','',0.00,'','200','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(174,'SINGLE MOCHA','',58.00,'2024-01-07 15:20:05','-33.00','5','newstock','1','','',0.00,'','1','25','internal','1','6','','',0.00,'','280','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(175,'DOUBLE MOCHA','',169.00,'2024-01-07 15:20:32','-144.00','5','newstock','1','','',0.00,'','1','25','internal','1','5','','',0.00,'','300','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(176,'SINGLE ESPRESSO','',92.00,'2024-01-07 15:21:14','-67.00','5','newstock','1','','',0.00,'','1','25','internal','1','4','','',0.00,'','150','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(177,'DOUBLE ESPRESSO','',204.00,'2024-01-07 15:21:52','-179.00','5','newstock','1','','',0.00,'','1','25','internal','1','3','','',0.00,'','200','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(178,'SINGLE CAPPUCCINO','',136.00,'2024-01-07 15:22:19','-111.00','5','newstock','1','','',0.00,'','1','25','internal','1','2','','',0.00,'','250','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(179,'SINGLE CAPPUCCINO','',5.00,'2024-01-07 15:22:37','25.00','5','newstock','1','','',0.00,'','1','30','internal','1','2','','',0.00,'','250','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(180,'DOUBLE ESPRESSO','',5.00,'2024-01-07 15:22:49','25.00','5','newstock','1','','',0.00,'','1','30','internal','1','3','','',0.00,'','200','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(181,'SINGLE ESPRESSO','',5.00,'2024-01-07 15:23:03','25.00','5','newstock','1','','',0.00,'','1','30','internal','1','4','','',0.00,'','150','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(182,'DOUBLE MOCHA','',5.00,'2024-01-07 15:23:15','25.00','5','newstock','1','','',0.00,'','1','30','internal','1','5','','',0.00,'','300','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(183,'DOUBLE AMERICANO','',5.00,'2024-01-07 15:23:29','25.00','5','newstock','1','','',0.00,'','1','30','internal','1','7','','',0.00,'','200','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(184,'PAPER MINT','',5.00,'2024-01-07 15:23:54','25.00','5','newstock','1','','',0.00,'','1','30','internal','1','18','','',0.00,'','200','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(185,'SINGLE MOCHA','',5.00,'2024-01-07 15:24:07','25.00','5','newstock','1','','',0.00,'','1','30','internal','1','6','','',0.00,'','280','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(186,'SINGLE AMERICANO','',5.00,'2024-01-07 15:24:16','25.00','5','newstock','1','','',0.00,'','1','30','internal','1','8','','',0.00,'','150','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(187,'DOUBLE LATTE','',5.00,'2024-01-07 15:24:26','25.00','5','newstock','1','','',0.00,'','1','30','internal','1','11','','',0.00,'','280','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(188,'SINGLE DECAF','',5.00,'2024-01-07 15:24:55','25.00','5','newstock','1','','',0.00,'','1','30','internal','1','14','','',0.00,'','250','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(189,'SINGLE DECAF','',5.00,'2024-01-07 15:25:07','30.00','5','newstock','1','','',0.00,'','1','35','internal','1','14','','',0.00,'','250','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(190,'DOUBLE CAPPUCCINO','',422.00,'2024-01-07 15:27:42','-422.00','5','newstock','1','','',0.00,'','1','0','internal','1','1','','',0.00,'','280','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''),(191,'DOUBLE CAPPUCCINO','',30.00,'2024-01-07 15:28:10','0.00','5','newstock','1','','',0.00,'','1','30','internal','1','1','','',0.00,'','280','','','16','','received',0,'0000-00-00 00:00:00','','0',1,NULL,'Inclusive','branch',NULL,'','','','',''); /*!40000 ALTER TABLE `newstock` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `newupgrade` -- DROP TABLE IF EXISTS `newupgrade`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `newupgrade` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(45) DEFAULT NULL, `companyid` int(11) NOT NULL DEFAULT 1, `description` text NOT NULL, `phone` varchar(50) NOT NULL, `email` varchar(50) NOT NULL, `exactdate` varchar(50) NOT NULL, `comment` text NOT NULL, `status` varchar(30) NOT NULL DEFAULT 'new', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `newupgrade` -- LOCK TABLES `newupgrade` WRITE; /*!40000 ALTER TABLE `newupgrade` DISABLE KEYS */; INSERT INTO `newupgrade` VALUES (1,'General systems',1,'','','','','','new'),(2,'E-commerce',1,'','','','','','new'),(3,'Biometric',1,'','','','','','new'),(4,'Website',1,'','','','','','new'),(5,'PMS',1,'','','','','','new'),(6,'Bulk sms',1,'','','','','','new'),(7,'Pos',1,'','','','','','new'); /*!40000 ALTER TABLE `newupgrade` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `nhif` -- DROP TABLE IF EXISTS `nhif`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `nhif` ( `id` int(50) NOT NULL AUTO_INCREMENT, `start` decimal(10,2) NOT NULL, `end` decimal(10,2) NOT NULL, `amount` decimal(10,2) NOT NULL, `branchid` int(11) NOT NULL, `companyid` int(11) NOT NULL, `status` varchar(20) NOT NULL DEFAULT 'active', `category` varchar(20) NOT NULL, `userid` int(11) NOT NULL, `nhifrelief` decimal(10,2) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `nhif` -- LOCK TABLES `nhif` WRITE; /*!40000 ALTER TABLE `nhif` DISABLE KEYS */; INSERT INTO `nhif` VALUES (1,0.00,5999.00,150.00,1,1,'active','employee',1,22.50),(2,6000.00,7999.00,300.00,1,1,'active','employee',1,45.00),(3,8000.00,11999.00,400.00,1,1,'active','employee',1,60.00),(4,12000.00,14999.00,500.00,1,1,'active','employee',1,75.00),(5,15000.00,19999.00,600.00,1,1,'active','employee',1,90.00),(6,20000.00,24999.00,750.00,1,1,'active','employee',1,112.50),(7,25000.00,29999.00,850.00,1,1,'active','employee',1,127.50),(8,30000.00,34999.00,900.00,1,1,'active','employee',1,135.00),(9,35000.00,39000.00,950.00,1,1,'active','employee',1,142.50),(10,40000.00,44999.00,1000.00,1,1,'active','employee',1,150.00),(11,45000.00,49000.00,1100.00,1,1,'active','employee',1,165.00),(12,50000.00,59999.00,1200.00,1,1,'active','employee',1,180.00),(13,60000.00,69999.00,1300.00,1,1,'active','employee',1,195.00),(14,70000.00,79999.00,1400.00,1,1,'active','employee',1,210.00),(15,80000.00,89999.00,1500.00,1,1,'active','employee',1,225.00),(16,90000.00,99999.00,1600.00,1,1,'active','employee',1,240.00),(17,100000.00,99999999.00,1700.00,1,1,'active','employee',1,255.00),(18,0.00,0.00,500.00,1,1,'active','employer',1,75.00); /*!40000 ALTER TABLE `nhif` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `nssf` -- DROP TABLE IF EXISTS `nssf`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `nssf` ( `id` int(11) NOT NULL AUTO_INCREMENT, `start` decimal(10,2) NOT NULL, `end` decimal(10,2) NOT NULL, `amount` decimal(10,2) NOT NULL, `branchid` int(11) NOT NULL, `companyid` int(11) NOT NULL, `status` varchar(20) NOT NULL DEFAULT 'active', `category` varchar(20) NOT NULL, `userid` int(11) NOT NULL, `tire1` decimal(10,2) NOT NULL, `tire2` decimal(10,2) NOT NULL, `tire1tire2` decimal(10,2) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `nssf` -- LOCK TABLES `nssf` WRITE; /*!40000 ALTER TABLE `nssf` DISABLE KEYS */; INSERT INTO `nssf` VALUES (1,0.00,3000.00,180.00,1,1,'active','employee',1,180.00,0.00,180.00),(2,3000.00,4500.00,270.00,1,1,'active','employee',1,270.00,0.00,270.00),(3,4500.00,6000.00,360.00,1,1,'active','employee',1,360.00,0.00,360.00),(4,6000.00,10000.00,360.00,1,1,'active','employee',1,360.00,240.00,600.00),(5,10000.00,14000.00,360.00,1,1,'active','employee',1,360.00,480.00,840.00),(6,14000.00,18000.00,360.00,1,1,'active','employee',1,360.00,720.00,1080.00),(7,18000.00,20000.00,360.00,1,1,'active','employee',1,360.00,720.00,1080.00),(8,20000.00,100000.00,360.00,1,1,'active','employee',1,360.00,720.00,1080.00),(9,100000.00,500000.00,360.00,1,1,'active','employee',1,360.00,720.00,1080.00); /*!40000 ALTER TABLE `nssf` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `offdays` -- DROP TABLE IF EXISTS `offdays`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `offdays` ( `id` int(11) NOT NULL AUTO_INCREMENT, `groupid` int(11) NOT NULL, `offday` varchar(30) NOT NULL, `type` int(11) NOT NULL, `title` varchar(128) NOT NULL, `userid` varchar(30) DEFAULT NULL, `createdate` varchar(30) NOT NULL, PRIMARY KEY (`id`), KEY `type` (`type`), KEY `contract` (`groupid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci COMMENT='List of non working days'; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `offdays` -- LOCK TABLES `offdays` WRITE; /*!40000 ALTER TABLE `offdays` DISABLE KEYS */; /*!40000 ALTER TABLE `offdays` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `offtypes` -- DROP TABLE IF EXISTS `offtypes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `offtypes` ( `id` int(10) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `createdate` varchar(50) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `offtypes` -- LOCK TABLES `offtypes` WRITE; /*!40000 ALTER TABLE `offtypes` DISABLE KEYS */; INSERT INTO `offtypes` VALUES (1,'All day is off','2018-05-17 04:40:12am'),(2,'Half day is off','2018-05-17 04:41:13am'),(3,'Morning is off ','2018-05-17 04:41:30am'),(4,'Afternoon is off','2018-05-17 04:41:30am'); /*!40000 ALTER TABLE `offtypes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `openorders` -- DROP TABLE IF EXISTS `openorders`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `openorders` ( `id` int(11) NOT NULL AUTO_INCREMENT, `code` varchar(50) NOT NULL, `description` text NOT NULL, `startdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `category` varchar(30) NOT NULL, `messageid` varchar(30) NOT NULL, `updatedby` int(11) NOT NULL, `updateddate` varchar(30) NOT NULL, `closedate` text NOT NULL, `receiver` text NOT NULL, `millage` varchar(30) NOT NULL, `fuel` varchar(50) NOT NULL, `trips` text NOT NULL, `createdate` varchar(30) NOT NULL, `nextfuel` varchar(20) NOT NULL, `previoufueldate` varchar(30) NOT NULL, `previousfuelused` varchar(20) NOT NULL, `adjusted` varchar(20) NOT NULL, `fuellimit` varchar(20) NOT NULL, `fuelrate` varchar(20) NOT NULL, `exactfuel` varchar(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `openorders` -- LOCK TABLES `openorders` WRITE; /*!40000 ALTER TABLE `openorders` DISABLE KEYS */; /*!40000 ALTER TABLE `openorders` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `orderlist` -- DROP TABLE IF EXISTS `orderlist`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `orderlist` ( `id` int(30) NOT NULL AUTO_INCREMENT, `type` varchar(30) NOT NULL, `userid` varchar(30) NOT NULL, `exactime` varchar(50) NOT NULL, `batchid` varchar(50) NOT NULL, `itemid` varchar(30) NOT NULL, `invoice` varchar(30) NOT NULL, `qty` decimal(10,2) DEFAULT NULL, `companyid` int(11) NOT NULL, `branchid` int(11) NOT NULL, `code` varchar(30) NOT NULL, `amount` decimal(10,2) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `orderlist` -- LOCK TABLES `orderlist` WRITE; /*!40000 ALTER TABLE `orderlist` DISABLE KEYS */; /*!40000 ALTER TABLE `orderlist` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `outgoingstock` -- DROP TABLE IF EXISTS `outgoingstock`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `outgoingstock` ( `id` int(50) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `total` varchar(50) NOT NULL, `date` varchar(50) NOT NULL, `item_id` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'newstock', `companyid` varchar(100) NOT NULL, `invoice_number` varchar(30) NOT NULL, `supplier` varchar(30) NOT NULL, `buyingprice` varchar(30) NOT NULL, `amount` varchar(30) NOT NULL, `type` varchar(30) NOT NULL DEFAULT 'shop', `comments` text NOT NULL, `branchid` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `outgoingstock` -- LOCK TABLES `outgoingstock` WRITE; /*!40000 ALTER TABLE `outgoingstock` DISABLE KEYS */; /*!40000 ALTER TABLE `outgoingstock` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `parceldelivery` -- DROP TABLE IF EXISTS `parceldelivery`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `parceldelivery` ( `id` int(10) NOT NULL AUTO_INCREMENT, `branchfrom` varchar(50) NOT NULL, `serial` varchar(50) NOT NULL, `qty` varchar(50) NOT NULL, `details` text NOT NULL, `dateposted` datetime NOT NULL, `customer` varchar(40) NOT NULL, `userid` varchar(50) NOT NULL, `companyid` varchar(30) NOT NULL, `entrydate` varchar(50) NOT NULL, `supplier` varchar(30) NOT NULL, `original` text NOT NULL, `balance` decimal(10,2) NOT NULL, `branchid` int(11) NOT NULL DEFAULT 1, `amount` varchar(10) NOT NULL DEFAULT '0.00', `duedate` varchar(20) NOT NULL, `status` varchar(30) NOT NULL DEFAULT 'Dispatched', `mode` varchar(30) NOT NULL, `invoice` varchar(30) NOT NULL, `totalamount` varchar(30) NOT NULL DEFAULT '', `type` varchar(50) DEFAULT NULL, `receiver` varchar(50) NOT NULL, `receiverphone` varchar(50) NOT NULL, `receiveraddress` text NOT NULL, `origin` text NOT NULL, `destination` text NOT NULL, `weight` varchar(50) NOT NULL, `receiveremail` varchar(50) DEFAULT NULL, `totalvalue` varchar(20) NOT NULL, `vat` decimal(10,2) NOT NULL, `vatable` decimal(10,2) NOT NULL, `receiveridno` varchar(20) NOT NULL, `riderdetails` text NOT NULL, `senderidno` varchar(50) NOT NULL, `senderphone` varchar(50) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `parceldelivery` -- LOCK TABLES `parceldelivery` WRITE; /*!40000 ALTER TABLE `parceldelivery` DISABLE KEYS */; /*!40000 ALTER TABLE `parceldelivery` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `password_resets` -- DROP TABLE IF EXISTS `password_resets`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `password_resets` ( `email` varchar(255) NOT NULL, `token` varchar(255) NOT NULL, `created_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), KEY `password_resets_email_index` (`email`), KEY `password_resets_token_index` (`token`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `password_resets` -- LOCK TABLES `password_resets` WRITE; /*!40000 ALTER TABLE `password_resets` DISABLE KEYS */; /*!40000 ALTER TABLE `password_resets` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `paye` -- DROP TABLE IF EXISTS `paye`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `paye` ( `id` int(11) NOT NULL AUTO_INCREMENT, `start` decimal(10,2) NOT NULL, `end` decimal(15,2) NOT NULL, `amt` decimal(10,2) NOT NULL, `branchid` int(11) NOT NULL, `companyid` int(11) NOT NULL, `status` varchar(20) NOT NULL DEFAULT 'active', `percentage` decimal(10,2) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `paye` -- LOCK TABLES `paye` WRITE; /*!40000 ALTER TABLE `paye` DISABLE KEYS */; INSERT INTO `paye` VALUES (1,0.00,24000.00,24000.00,1,1,'active',10.00),(2,24001.00,32333.00,8333.00,1,1,'active',25.00),(3,32333.00,10000000000.00,32333.00,1,1,'active',30.00); /*!40000 ALTER TABLE `paye` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `paymentmethodes` -- DROP TABLE IF EXISTS `paymentmethodes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `paymentmethodes` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` text NOT NULL, `description` text NOT NULL, `status` varchar(10) NOT NULL DEFAULT 'active', `dateposted` varchar(30) NOT NULL, `userid` varchar(30) NOT NULL, `companyid` varchar(30) NOT NULL, `type` text NOT NULL, `balance` varchar(30) NOT NULL, `branchid` int(11) NOT NULL, `accountno` text DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `paymentmethodes` -- LOCK TABLES `paymentmethodes` WRITE; /*!40000 ALTER TABLE `paymentmethodes` DISABLE KEYS */; INSERT INTO `paymentmethodes` VALUES (1,'cash','Cash payment','active','2021-09-07 05:52:05','1','1','1050','',1,NULL),(2,'mpesa','mpesa','active','2021-09-22 10:35:37','1','1','1010','',1,NULL),(3,'card','card payment','active','2021-09-07 05:52:50','1','1','1030','',1,NULL),(4,'bank','Bank payment','active','2021-09-07 05:53:23','1','1','1030','',1,NULL),(5,'credit','account receivable ','active','2021-09-07 06:31:55','1','1','1100','',1,NULL),(6,'voucher','Directors account','active','2021-09-07 06:32:21','1','1','1040','',1,NULL),(7,'creditnote','Account payable','active','2021-09-07 06:34:11','1','1','2130','',1,NULL),(8,'points','Account redeemable','active','2021-09-07 06:36:16','1','1','2130','',1,NULL); /*!40000 ALTER TABLE `paymentmethodes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `payments` -- DROP TABLE IF EXISTS `payments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `payments` ( `id` int(100) NOT NULL AUTO_INCREMENT, `paidto` varchar(100) NOT NULL, `paiby` varchar(100) NOT NULL, `paiddate` varchar(100) NOT NULL, `todate` varchar(100) NOT NULL, `contact` varchar(100) NOT NULL, `status` varchar(100) NOT NULL, `approvedby` varchar(100) NOT NULL, `type` varchar(100) NOT NULL, `amount` varchar(100) NOT NULL, `receiptno` varchar(100) NOT NULL DEFAULT 'no', `comments` text NOT NULL, `idno` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `email` varchar(50) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `payments` -- LOCK TABLES `payments` WRITE; /*!40000 ALTER TABLE `payments` DISABLE KEYS */; /*!40000 ALTER TABLE `payments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `paymentsection` -- DROP TABLE IF EXISTS `paymentsection`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `paymentsection` ( `id` int(40) NOT NULL AUTO_INCREMENT, `methodid` varchar(100) NOT NULL, `name` varchar(100) NOT NULL, `description` text NOT NULL, `createdat` varchar(100) NOT NULL, `updatedat` varchar(100) NOT NULL, `userid` varchar(100) NOT NULL, `companyid` varchar(100) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `paymentsection` -- LOCK TABLES `paymentsection` WRITE; /*!40000 ALTER TABLE `paymentsection` DISABLE KEYS */; INSERT INTO `paymentsection` VALUES (8,'2','KCB Bank','KCB Bank','2016-04-20 10:39:59','','3','3'),(9,'2','Equity Bank','Equity Bank','2016-04-20 10:40:10','','3','3'),(10,'4','cash','CASH','2016-04-20 10:40:34','','3','3'),(11,'3','Lipa rent','','2016-04-20 10:40:48','','3','3'),(12,'1','Airtel Money','Airtel Money','2016-04-20 10:41:17','','3','3'),(13,'1','M-pesa','M-pesa','2016-04-20 10:41:32','','3','3'),(15,'6','Coparent','Coparent','2016-05-25 04:21:55','','3','3'),(16,'2','Unaitas','Unaitas','2017-12-16 06:51:45','','',''); /*!40000 ALTER TABLE `paymentsection` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `payroll` -- DROP TABLE IF EXISTS `payroll`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `payroll` ( `id` int(100) NOT NULL AUTO_INCREMENT, `type` varchar(255) NOT NULL, `designation` varchar(255) NOT NULL, `allowance` varchar(255) NOT NULL, `paytype` varchar(255) NOT NULL, `nohours` varchar(255) NOT NULL, `salary` varchar(255) NOT NULL, `nodays` varchar(255) NOT NULL, `nodaysyearly` varchar(255) NOT NULL, `annualsalary` varchar(255) NOT NULL, `monthlysalary` varchar(50) NOT NULL, `dailysalary` varchar(100) DEFAULT NULL, `comments` text NOT NULL, `vat` varchar(50) NOT NULL DEFAULT 'active', `payee` varchar(50) NOT NULL, `nssf` varchar(100) NOT NULL, `nihf` text NOT NULL, `employeeid` varchar(100) NOT NULL, `advance` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `createdate` varchar(50) NOT NULL, `updatedat` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `other` varchar(50) NOT NULL, `month` varchar(50) NOT NULL, `year` varchar(50) NOT NULL, `loan` varchar(100) NOT NULL, PRIMARY KEY (`id`), KEY `first_name` (`type`), KEY `last_name` (`designation`), KEY `email` (`paytype`), KEY `phppos_people_ibfk_1` (`dailysalary`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `payroll` -- LOCK TABLES `payroll` WRITE; /*!40000 ALTER TABLE `payroll` DISABLE KEYS */; /*!40000 ALTER TABLE `payroll` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `people` -- DROP TABLE IF EXISTS `people`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `people` ( `id` int(11) NOT NULL AUTO_INCREMENT, `nhifrelief` decimal(10,2) DEFAULT NULL, `firstname` varchar(255) NOT NULL, `surname` varchar(20) NOT NULL, `lastname` varchar(255) DEFAULT NULL, `phone` varchar(255) DEFAULT NULL, `email` varchar(255) DEFAULT NULL, `password` text NOT NULL, `address_1` varchar(255) NOT NULL, `gender` varchar(255) DEFAULT NULL, `city` varchar(255) NOT NULL, `zip` varchar(255) NOT NULL, `country` varchar(255) NOT NULL, `comments` text NOT NULL, `image_id` varchar(100) DEFAULT NULL, `category` varchar(50) NOT NULL DEFAULT 'accommodation', `status` varchar(50) NOT NULL DEFAULT '1', `company` varchar(50) DEFAULT NULL, `account` varchar(100) NOT NULL, `website` text NOT NULL, `idno` varchar(100) NOT NULL, `balance` decimal(10,2) NOT NULL, `userid` varchar(50) NOT NULL, `createdate` varchar(50) NOT NULL, `updatedat` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `entrydate` varchar(50) NOT NULL, `jobstatus` varchar(30) NOT NULL, `salary` decimal(10,2) NOT NULL, `department` varchar(20) NOT NULL, `dob` varchar(20) NOT NULL, `passport` varchar(30) NOT NULL, `ethnicity` varchar(30) NOT NULL, `religion` varchar(30) NOT NULL, `salarystartdate` varchar(30) NOT NULL, `salaryreviewdate` varchar(30) NOT NULL, `bankname` varchar(30) NOT NULL, `bankaccount` varchar(30) NOT NULL, `paymentmode` varchar(30) NOT NULL, `method` varchar(30) NOT NULL, `probationdate` varchar(30) NOT NULL, `number` varchar(20) NOT NULL, `relief` decimal(10,2) NOT NULL, `leavegroup` varchar(30) NOT NULL, `manager` varchar(30) NOT NULL, `marital` varchar(30) NOT NULL, `smstype` varchar(20) NOT NULL, `totalsms` decimal(10,2) NOT NULL, `apiaccount_id` int(11) NOT NULL, `photo` text NOT NULL, `code` varchar(30) NOT NULL, `service` varchar(20) NOT NULL, `usertype` varchar(20) NOT NULL DEFAULT 'user', `username` varchar(20) NOT NULL, `county` int(11) NOT NULL, `province` int(11) NOT NULL, `box` int(11) NOT NULL, `town` varchar(20) NOT NULL, `updatedate` varchar(20) NOT NULL, `recoverpassword` int(11) NOT NULL, `createddate` varchar(30) NOT NULL, `rate` decimal(10,2) DEFAULT NULL, `kra` varchar(50) DEFAULT NULL, `nssf` varchar(50) DEFAULT NULL, `nhif` varchar(50) DEFAULT NULL, `paid` varchar(20) NOT NULL, `supplierbalance` decimal(10,2) NOT NULL, `balanceuploaded` int(11) DEFAULT 0, `savedcoins` decimal(10,2) NOT NULL, `savedpoints` decimal(10,2) NOT NULL, `customerlimit` varchar(10) NOT NULL DEFAULT 'no', `limitamount` decimal(10,2) NOT NULL, `dropdown` varchar(10) NOT NULL DEFAULT 'no', `lastbalancedate` varchar(30) NOT NULL, `accountname` varchar(30) NOT NULL, `accountno` varchar(30) NOT NULL, `certificate` varchar(30) NOT NULL, `shares` varchar(30) NOT NULL, `certificateno` varchar(30) NOT NULL, `renewaldetails` varchar(30) DEFAULT NULL, `salesperson` varchar(10) DEFAULT NULL, `idnumber` text DEFAULT NULL, `branchid` int(11) NOT NULL DEFAULT 1, `bankcode` varchar(20) DEFAULT NULL, `branchcode` varchar(20) DEFAULT NULL, `group` int(20) DEFAULT NULL, `transactionid` varchar(50) NOT NULL, `smscode` varchar(50) NOT NULL, `timesent` datetime NOT NULL, `computerno` text NOT NULL, `computernostatus` varchar(20) NOT NULL DEFAULT 'new', `computernodate` varchar(50) NOT NULL, `computernouserdata` text NOT NULL, PRIMARY KEY (`id`), KEY `first_name` (`firstname`), KEY `last_name` (`lastname`), KEY `email` (`email`), KEY `phppos_people_ibfk_1` (`image_id`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `people` -- LOCK TABLES `people` WRITE; /*!40000 ALTER TABLE `people` DISABLE KEYS */; INSERT INTO `people` VALUES (1,112.50,'FAITH','FAITH','FAITH','1234567890','N /A','12345678','','female','','','0','','132222201635401988','user','1','','','','',60.00,'1','2024-01-06','','1','2019-06-11','Contract',20000.00,'','2019-06-06','','','','2019-06-05','2019-06-06','KCB','2412423','Daily','1','2019-09-20','0222222',0.00,'','','Single','',992.00,1,'','','yes','admin','',0,0,0,'','2019-08-28',0,'',0.00,'','','','Yes',2570.00,0,0.00,0.60,'no',200.00,'','2022-08-25 15:15:09','','','','','','','','',1,'022','444',2,'','534032','2022-10-23 20:40:59','','new','',''),(2,NULL,'Default','','','254718667391','admin','Robisearch321','Default','','','','1 ','',NULL,'supplier','1','Default','','','666663',5200.00,'1','2022-01-27 05:57:22','','1','','',0.00,'','','','','','','','','','Monthly','4','','',0.00,'','','','',0.00,0,'','','','user','',0,0,0,'','',0,'',10.00,'','','','yes',77119.00,0,0.00,0.00,'no',300.00,'yes','2022-11-16 15:02:14','','','','','','','','',1,NULL,NULL,0,'','','0000-00-00 00:00:00','','new','',''),(3,NULL,'CEDRICK','CEDRICK',NULL,'NA','SALES','2010','','female','','','','',NULL,'user','1',NULL,'','','',0.00,'','2023-02-11','','1','','',0.00,'','','','','','','','','','','','','',0.00,'','','','',0.00,0,'','','no','user','',0,0,0,'','',0,'',NULL,NULL,NULL,NULL,'',0.00,0,0.00,0.00,'no',0.00,'','','','','','','',NULL,NULL,'',1,NULL,NULL,NULL,'606162332','','0000-00-00 00:00:00','','new','',''),(4,NULL,'PURITY','PURITY',NULL,'NA','PURITY','2520','','female','','','','',NULL,'user','1',NULL,'','','',0.00,'','2024-01-07','','1','','',0.00,'','','','','','','','','','','','','',0.00,'','','','',0.00,0,'','','no','user','',0,0,0,'','',0,'',0.00,NULL,NULL,NULL,'',0.00,0,0.00,0.00,'no',0.00,'','','','','','','',NULL,NULL,'',1,NULL,NULL,NULL,'325032239','','0000-00-00 00:00:00','','new','',''),(5,NULL,'EVER','EVER',NULL,'0713262524','EVER','1579','','female','','','','',NULL,'user','1',NULL,'','','',0.00,'','2024-01-04','','1','','',0.00,'','','','','','','','','','','','','',0.00,'','','','',0.00,0,'','','no','user','',0,0,0,'','',0,'',0.00,NULL,NULL,NULL,'',0.00,0,0.00,0.00,'no',0.00,'','','','','','','',NULL,NULL,'',1,NULL,NULL,NULL,'332633503','','0000-00-00 00:00:00','','new','',''),(6,NULL,'FATUMA','FATUMA',NULL,'12345678','N/A','2525','','','','','','',NULL,'user','1',NULL,'','','12345678',0.00,'','2024-01-07','','1','','',0.00,'','','','','','','','','','','','','',0.00,'','','','',0.00,0,'','','no','user','',0,0,0,'','',0,'',0.00,NULL,NULL,NULL,'',0.00,0,0.00,0.00,'no',0.00,'','','','','','','',NULL,NULL,'',1,NULL,NULL,NULL,'333993322','','0000-00-00 00:00:00','','new','',''); /*!40000 ALTER TABLE `people` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `peopleregistration` -- DROP TABLE IF EXISTS `peopleregistration`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `peopleregistration` ( `id` int(11) NOT NULL AUTO_INCREMENT, `nhifrelief` decimal(10,2) DEFAULT NULL, `firstname` varchar(255) NOT NULL, `surname` varchar(20) NOT NULL, `lastname` varchar(255) DEFAULT NULL, `phone` varchar(255) DEFAULT NULL, `email` varchar(255) DEFAULT NULL, `password` text NOT NULL, `address_1` varchar(255) NOT NULL, `gender` varchar(255) DEFAULT NULL, `city` varchar(255) NOT NULL, `zip` varchar(255) NOT NULL, `country` varchar(255) NOT NULL, `comments` text NOT NULL, `image_id` varchar(100) DEFAULT NULL, `category` varchar(50) NOT NULL DEFAULT 'accommodation', `status` varchar(50) NOT NULL DEFAULT '1', `company` varchar(50) DEFAULT NULL, `account` varchar(100) NOT NULL, `website` text NOT NULL, `idno` varchar(100) NOT NULL, `balance` decimal(10,2) NOT NULL, `userid` varchar(50) NOT NULL, `createdate` varchar(50) NOT NULL, `updatedat` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `entrydate` varchar(50) NOT NULL, `jobstatus` varchar(30) NOT NULL, `salary` decimal(10,2) NOT NULL, `department` varchar(20) NOT NULL, `dob` varchar(20) NOT NULL, `passport` varchar(30) NOT NULL, `ethnicity` varchar(30) NOT NULL, `religion` varchar(30) NOT NULL, `salarystartdate` varchar(30) NOT NULL, `salaryreviewdate` varchar(30) NOT NULL, `bankname` varchar(30) NOT NULL, `bankaccount` varchar(30) NOT NULL, `paymentmode` varchar(30) NOT NULL, `method` varchar(30) NOT NULL, `probationdate` varchar(30) NOT NULL, `number` varchar(20) NOT NULL, `relief` decimal(10,2) NOT NULL, `leavegroup` varchar(30) NOT NULL, `manager` varchar(30) NOT NULL, `marital` varchar(30) NOT NULL, `smstype` varchar(20) NOT NULL, `totalsms` decimal(10,2) NOT NULL, `apiaccount_id` int(11) NOT NULL, `photo` text NOT NULL, `code` varchar(30) NOT NULL, `service` varchar(20) NOT NULL, `usertype` varchar(20) NOT NULL DEFAULT 'user', `username` varchar(20) NOT NULL, `county` int(11) NOT NULL, `province` int(11) NOT NULL, `box` int(11) NOT NULL, `town` varchar(20) NOT NULL, `updatedate` varchar(20) NOT NULL, `recoverpassword` int(11) NOT NULL, `createddate` varchar(30) NOT NULL, `rate` decimal(10,2) DEFAULT NULL, `kra` varchar(50) DEFAULT NULL, `nssf` varchar(50) DEFAULT NULL, `nhif` varchar(50) DEFAULT NULL, `paid` varchar(20) NOT NULL, `supplierbalance` decimal(10,2) NOT NULL, `balanceuploaded` int(11) DEFAULT 0, `savedcoins` decimal(10,2) NOT NULL, `savedpoints` decimal(10,2) NOT NULL, `customerlimit` varchar(10) NOT NULL DEFAULT 'no', `limitamount` decimal(10,2) NOT NULL, `dropdown` varchar(10) NOT NULL DEFAULT 'no', `lastbalancedate` varchar(30) NOT NULL, `accountname` varchar(30) NOT NULL, `accountno` varchar(30) NOT NULL, `certificate` varchar(30) NOT NULL, `shares` varchar(30) NOT NULL, `certificateno` varchar(30) NOT NULL, `renewaldetails` varchar(30) DEFAULT NULL, `salesperson` varchar(10) DEFAULT NULL, `idnumber` text DEFAULT NULL, `branchid` int(11) NOT NULL DEFAULT 1, `bankcode` varchar(20) DEFAULT NULL, `branchcode` varchar(20) DEFAULT NULL, `group` int(20) DEFAULT NULL, `transactionid` varchar(50) NOT NULL, `smscode` varchar(50) NOT NULL, `timesent` datetime NOT NULL, `computerno` text NOT NULL, `computernostatus` varchar(20) NOT NULL DEFAULT 'new', `computernodate` varchar(50) NOT NULL, `computernouserdata` text NOT NULL, PRIMARY KEY (`id`), KEY `first_name` (`firstname`), KEY `last_name` (`lastname`), KEY `email` (`email`), KEY `phppos_people_ibfk_1` (`image_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `peopleregistration` -- LOCK TABLES `peopleregistration` WRITE; /*!40000 ALTER TABLE `peopleregistration` DISABLE KEYS */; /*!40000 ALTER TABLE `peopleregistration` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `periods` -- DROP TABLE IF EXISTS `periods`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `periods` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `periods` -- LOCK TABLES `periods` WRITE; /*!40000 ALTER TABLE `periods` DISABLE KEYS */; INSERT INTO `periods` VALUES (1,'Daily','Daily','','active','1','','1'),(2,'Weekly','Weekly','','active','1','','1'),(3,'Monthly','Monthly','','active','1','','1'),(4,'Quarterly','Quarterly','','active','1','','1'),(5,'Annually','Annually','','active','1','','1'),(6,'Fortnightly','Fortnightly','','active','1','','1'),(7,'Bi monthly','Bi monthly','','active','1','','1'); /*!40000 ALTER TABLE `periods` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `permissions` -- DROP TABLE IF EXISTS `permissions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `permissions` ( `moduleid` varchar(100) NOT NULL, `userid` int(10) NOT NULL, PRIMARY KEY (`moduleid`,`userid`), KEY `person_id` (`userid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `permissions` -- LOCK TABLES `permissions` WRITE; /*!40000 ALTER TABLE `permissions` DISABLE KEYS */; INSERT INTO `permissions` VALUES ('accomodation',1),('accounting',1),('accountingreports',1),('assets',1),('bankdeposits',1),('banktransfer',1),('biometricrecords',1),('branch',1),('callcenter',1),('cashiersales',1),('cashiersales',3),('cashiersales',4),('cashiersales',5),('cashiersales',6),('complain',1),('config',1),('config',5),('damagedproducts',1),('deals',1),('departments',1),('displayreport',1),('documents',1),('ecommerce',1),('events',1),('grouping',1),('humanresource',1),('income',1),('incomeexpenses',1),('incomingstock',1),('incomingstore',1),('journalentry',1),('labourrecords',1),('leavemanagement',1),('lowproducts',1),('lowstocklist',1),('lowstocklist',5),('loyalitycards',1),('members',1),('password',1),('password',3),('password',5),('payroll',1),('payrollsetup',1),('peoplecategory',1),('productlist',1),('productlist',5),('products',1),('products',5),('productscategory',1),('productscategory',5),('profile',1),('profile',5),('projectsmanagement',1),('purchases',1),('quotation',1),('recorddelivery',1),('reports',1),('sales',1),('sales',3),('sales',4),('sales',5),('sales',6),('sendsms',1),('task',1),('taskscategory',1),('users',1),('users',5),('viewreturnsales',1),('wholesale',1); /*!40000 ALTER TABLE `permissions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `permissionsactions` -- DROP TABLE IF EXISTS `permissionsactions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `permissionsactions` ( `id` int(11) NOT NULL AUTO_INCREMENT, `moduleid` varchar(100) NOT NULL, `userid` varchar(100) NOT NULL, `actionid` varchar(100) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=85791 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `permissionsactions` -- LOCK TABLES `permissionsactions` WRITE; /*!40000 ALTER TABLE `permissionsactions` DISABLE KEYS */; INSERT INTO `permissionsactions` VALUES (84783,'sales','3','add'),(84784,'sales','3','suspend'),(84785,'sales','3','update'),(84786,'sales','3','cash'),(84787,'sales','3','moresales'),(84788,'sales','3','sale'),(84789,'sales','3','printbill'),(84790,'sales','3','mpesa'),(84791,'sales','3','order'),(84792,'sales','3','closebill'),(84793,'sales','3','card'),(84794,'sales','3','updatepaymentmode'),(84795,'sales','3','clearpayments'),(84796,'sales','3','cheque'),(84797,'sales','3','voucher'),(84798,'cashiersales','3','entermpesacode'),(84799,'cashiersales','3','editmpesa'),(84800,'cashiersales','3','all'),(84801,'cashiersales','3','cashiersales'),(84802,'cashiersales','3','editmpesadate'),(84803,'cashiersales','3','adddailycollection'),(84804,'cashiersales','3','viewtill'),(84805,'cashiersales','3','viewdailycollections'),(84806,'cashiersales','3','updatedailycollections'),(84807,'cashiersales','3','clearallsales'),(84808,'cashiersales','3','mpesapendingreport'),(84809,'cashiersales','3','viewallcounters'),(84810,'cashiersales','3','mpesaverifiedreport'),(84811,'cashiersales','3','viewcommission'),(84812,'cashiersales','3','dailysalesonly'),(84813,'cashiersales','3','viewmpesamessages'),(84814,'password','3','change'),(85301,'sales','5','add'),(85302,'sales','5','printreceipt'),(85303,'sales','5','suspend'),(85304,'sales','5','update'),(85305,'sales','5','delete'),(85306,'sales','5','cash'),(85307,'sales','5','sale'),(85308,'sales','5','moresales'),(85309,'sales','5','reprint'),(85310,'sales','5','mpesabalance'),(85311,'sales','5','Logout'),(85312,'sales','5','select'),(85313,'sales','5','displaycustomers'),(85314,'sales','5','discount'),(85315,'sales','5','printbill'),(85316,'sales','5','order'),(85317,'sales','5','mpesa'),(85318,'sales','5','closebill'),(85319,'sales','5','productdiscount'),(85320,'sales','5','card'),(85321,'sales','5','viewbuyingprice'),(85322,'sales','5','editsellingprice'),(85323,'sales','5','updatepaymentmode'),(85324,'sales','5','clearpayments'),(85325,'sales','5','creditnote'),(85326,'sales','5','cheque'),(85327,'sales','5','points'),(85328,'sales','5','voucher'),(85329,'sales','5','salesbeyondbprice'),(85330,'sales','5','credit'),(85331,'sales','5','dontprint'),(85332,'sales','5','backdatesales'),(85333,'sales','5','recordcoins'),(85334,'sales','5','changetaxstatus'),(85335,'sales','5','selecttable'),(85336,'sales','5','printdelivery'),(85337,'sales','5','sendsms'),(85338,'sales','5','entermpesacode'),(85339,'sales','5','usekeyboard'),(85340,'sales','5','receiptno'),(85341,'sales','5','selectcurrency'),(85342,'sales','5','salesperson'),(85343,'cashiersales','5','entermpesacode'),(85344,'cashiersales','5','editmpesa'),(85345,'cashiersales','5','all'),(85346,'cashiersales','5','cashiersales'),(85347,'cashiersales','5','editmpesadate'),(85348,'cashiersales','5','viewtill'),(85349,'cashiersales','5','viewdailycollections'),(85350,'cashiersales','5','updatedailycollections'),(85351,'cashiersales','5','clearallsales'),(85352,'cashiersales','5','viewallcounters'),(85353,'cashiersales','5','viewcommission'),(85354,'cashiersales','5','viewmpesamessages'),(85355,'recorddelivery','5','add'),(85356,'recorddelivery','5','view'),(85357,'recorddelivery','5','update'),(85358,'recorddelivery','5','report'),(85359,'purchases','5','add'),(85360,'purchases','5','update'),(85361,'purchases','5','delete'),(85362,'purchases','5','updatebuyingprice'),(85363,'purchases','5','updatesellingprice'),(85364,'purchases','5','updateclosedinvoice'),(85365,'purchases','5','viewquotation'),(85366,'purchases','5','viewpurchase'),(85367,'purchases','5','salesorder'),(85368,'incomeexpenses','5','add'),(85369,'incomeexpenses','5','closeexpense'),(85370,'incomeexpenses','5','update'),(85371,'incomeexpenses','5','viewbills'),(85372,'incomeexpenses','5','viewexpense'),(85373,'incomeexpenses','5','viewdebtors'),(85374,'incomeexpenses','5','viewcreditors'),(85375,'users','5','add'),(85376,'users','5','update'),(85377,'users','5','delete'),(85378,'users','5','deleteallroles'),(85379,'productscategory','5','add'),(85380,'productscategory','5','update'),(85381,'productscategory','5','delete'),(85382,'productlist','5','bulk'),(85383,'productlist','5','move'),(85384,'productlist','5','more'),(85385,'productlist','5','updatestock'),(85386,'productlist','5','transfer'),(85387,'productlist','5','addstock'),(85388,'productlist','5','delete'),(85389,'productlist','5','view'),(85390,'productlist','5','update'),(85391,'productlist','5','add'),(85392,'productlist','5','stocktaking'),(85393,'productlist','5','openclosestock'),(85394,'productlist','5','editstocktaken'),(85395,'productlist','5','editopenclosestock'),(85396,'productlist','5','changeserialstatus'),(85397,'productlist','5','viewserials'),(85398,'productlist','5','viewproductsfromallbranches'),(85399,'productlist','5','bulkpriceupdate'),(85400,'productlist','5','negativestockadjustment'),(85401,'products','5','add'),(85402,'products','5','update'),(85403,'products','5','delete'),(85404,'products','5','addstock'),(85405,'products','5','more'),(85406,'products','5','bulk'),(85407,'products','5','deleteorder'),(85408,'products','5','dispatch'),(85409,'products','5','removestock'),(85410,'products','5','price'),(85411,'products','5','removeallstock'),(85412,'products','5','bulkpriceupdate'),(85413,'products','5','negativestockadjustment'),(85414,'lowstocklist','5','add'),(85415,'lowstocklist','5','more'),(85416,'lowstocklist','5','view'),(85417,'password','5','change'),(85418,'profile','5','update'),(85419,'config','5','delete'),(85420,'config','5','add'),(85421,'config','5','update'),(85422,'sales','1','printreceipt'),(85423,'sales','1','selectmessage'),(85424,'sales','1','cash'),(85425,'sales','1','moresales'),(85426,'sales','1','sale'),(85427,'sales','1','displaycustomers'),(85428,'sales','1','mpesabalance'),(85429,'sales','1','Logout'),(85430,'sales','1','select'),(85431,'sales','1','mpesa'),(85432,'sales','1','printbill'),(85433,'sales','1','order'),(85434,'sales','1','clearpayments'),(85435,'sales','1','updatepaymentmode'),(85436,'sales','1','card'),(85437,'sales','1','viewbuyingprice'),(85438,'sales','1','creditnote'),(85439,'sales','1','cheque'),(85440,'sales','1','voucher'),(85441,'sales','1','salesbeyondbprice'),(85442,'sales','1','points'),(85443,'sales','1','credit'),(85444,'sales','1','selectroom'),(85445,'sales','1','dontprint'),(85446,'sales','1','backdatesales'),(85447,'sales','1','recordcoins'),(85448,'sales','1','changetaxstatus'),(85449,'sales','1','giveloyalityponts'),(85450,'sales','1','leaseitems'),(85451,'sales','1','splitbill'),(85452,'sales','1','changeuomonsales'),(85453,'sales','1','selecttable'),(85454,'sales','1','printdelivery'),(85455,'sales','1','entermpesacode'),(85456,'sales','1','sendsms'),(85457,'sales','1','selectcurrency'),(85458,'sales','1','salesperson'),(85459,'wholesale','1','sale'),(85460,'wholesale','1','add'),(85461,'wholesale','1','delete'),(85462,'wholesale','1','update'),(85463,'cashiersales','1','editmpesa'),(85464,'cashiersales','1','all'),(85465,'cashiersales','1','delete'),(85466,'cashiersales','1','cashiersales'),(85467,'cashiersales','1','editmpesadate'),(85468,'cashiersales','1','adddailycollection'),(85469,'cashiersales','1','viewtill'),(85470,'cashiersales','1','viewdailycollections'),(85471,'cashiersales','1','deletedailycollections'),(85472,'cashiersales','1','reversempesa'),(85473,'cashiersales','1','updatedailycollections'),(85474,'cashiersales','1','clearallsales'),(85475,'cashiersales','1','viewallcollections'),(85476,'cashiersales','1','viewallcounters'),(85477,'cashiersales','1','mpesapendingreport'),(85478,'cashiersales','1','mpesaverifiedreport'),(85479,'cashiersales','1','viewcommission'),(85480,'cashiersales','1','viewmpesamessages'),(85481,'recorddelivery','1','add'),(85482,'recorddelivery','1','view'),(85483,'recorddelivery','1','update'),(85484,'recorddelivery','1','delete'),(85485,'recorddelivery','1','changestatus'),(85486,'recorddelivery','1','report'),(85487,'recorddelivery','1','Dispatched'),(85488,'recorddelivery','1','FailedDelivery'),(85489,'recorddelivery','1','ReturnedandReceived'),(85490,'recorddelivery','1','Delivered'),(85491,'recorddelivery','1','Claimraised'),(85492,'recorddelivery','1','ClaimOK'),(85493,'recorddelivery','1','ClaimDamaged'),(85494,'purchases','1','add'),(85495,'purchases','1','updatebuyingprice'),(85496,'purchases','1','updatesellingprice'),(85497,'purchases','1','viewquotation'),(85498,'purchases','1','viewserials'),(85499,'purchases','1','viewdirectpurchases'),(85500,'purchases','1','viewpurchase'),(85501,'purchases','1','salesorder'),(85502,'purchases','1','budget'),(85503,'purchases','1','showdefaultserials'),(85504,'purchases','1','approve'),(85505,'purchases','1','addbatchno'),(85506,'purchases','1','addexpirydate'),(85507,'viewreturnsales','1','add'),(85508,'viewreturnsales','1','update'),(85509,'viewreturnsales','1','delete'),(85510,'viewreturnsales','1','return'),(85511,'viewreturnsales','1','clear'),(85512,'viewreturnsales','1','moresales'),(85513,'income','1','View'),(85514,'income','1','add'),(85515,'incomeexpenses','1','add'),(85516,'incomeexpenses','1','closeexpense'),(85517,'incomeexpenses','1','update'),(85518,'incomeexpenses','1','wiewinvoices'),(85519,'incomeexpenses','1','viewbills'),(85520,'incomeexpenses','1','viewdebtors'),(85521,'incomeexpenses','1','viewcreditors'),(85522,'incomeexpenses','1','postrentalexpenses'),(85523,'accomodation','1','viewrooms'),(85524,'accomodation','1','viewhouse'),(85525,'accomodation','1','addhouse'),(85526,'accomodation','1','dailysales'),(85527,'accomodation','1','credit'),(85528,'accomodation','1','voucher'),(85529,'accomodation','1','points'),(85530,'accomodation','1','mpesa'),(85531,'accomodation','1','cheque'),(85532,'accomodation','1','checkinroom'),(85533,'accomodation','1','cash'),(85534,'accomodation','1','card'),(85535,'accomodation','1','cancel'),(85536,'accomodation','1','addroom'),(85537,'accomodation','1','checkoutroom'),(85538,'accomodation','1','checkin'),(85539,'accomodation','1','updatecharges'),(85540,'accomodation','1','givediscount'),(85541,'accomodation','1','cleanrooms'),(85542,'accomodation','1','addcharges'),(85543,'accomodation','1','postexpense'),(85544,'accomodation','1','updatehouse'),(85545,'accomodation','1','updateroom'),(85546,'accomodation','1','managehotel'),(85547,'accomodation','1','Post Bank Deposits'),(85548,'accomodation','1','assignrooms'),(85549,'accomodation','1','managerental'),(85550,'accomodation','1','housekeeping'),(85551,'accomodation','1','changepayment'),(85552,'accomodation','1','customerregister'),(85553,'accomodation','1','dailypayments'),(85554,'accomodation','1','advancebooking'),(85555,'accomodation','1','checkoutcustomerwithbalance'),(85556,'accomodation','1','viewreports'),(85557,'accomodation','1','managecustomer'),(85558,'accomodation','1','config'),(85559,'accomodation','1','viewroomcleaned'),(85560,'accomodation','1','clearsales'),(85561,'accomodation','1','dailycollections'),(85562,'branch','1','add'),(85563,'branch','1','view'),(85564,'branch','1','update'),(85565,'branch','1','delete'),(85566,'members','1','add'),(85567,'members','1','update'),(85568,'members','1','opencloseshift'),(85569,'users','1','add'),(85570,'users','1','update'),(85571,'productscategory','1','add'),(85572,'productscategory','1','update'),(85573,'productscategory','1','delete'),(85574,'productlist','1','bulk'),(85575,'productlist','1','updatestock'),(85576,'productlist','1','move'),(85577,'productlist','1','more'),(85578,'productlist','1','transfer'),(85579,'productlist','1','addstock'),(85580,'productlist','1','delete'),(85581,'productlist','1','view'),(85582,'productlist','1','update'),(85583,'productlist','1','add'),(85584,'productlist','1','stocktaking'),(85585,'productlist','1','editstocktaken'),(85586,'productlist','1','editopenclosestock'),(85587,'productlist','1','viewserials'),(85588,'productlist','1','changeserialstatus'),(85589,'productlist','1','viewproductsfromallbranches'),(85590,'products','1','add'),(85591,'products','1','update'),(85592,'products','1','delete'),(85593,'products','1','addstock'),(85594,'products','1','more'),(85595,'products','1','bulk'),(85596,'products','1','deleteorder'),(85597,'products','1','dispatch'),(85598,'products','1','removestock'),(85599,'products','1','price'),(85600,'products','1','removeallstock'),(85601,'products','1','bulkpriceupdate'),(85602,'incomingstock','1','add'),(85603,'incomingstock','1','update'),(85604,'incomingstock','1','view'),(85605,'incomingstock','1','delete'),(85606,'incomingstore','1','add'),(85607,'incomingstore','1','delete'),(85608,'incomingstore','1','view'),(85609,'lowstocklist','1','more'),(85610,'lowstocklist','1','view'),(85611,'lowproducts','1','add'),(85612,'lowproducts','1','update'),(85613,'damagedproducts','1','add'),(85614,'damagedproducts','1','update'),(85615,'damagedproducts','1','delete'),(85616,'projectsmanagement','1','view'),(85617,'projectsmanagement','1','add'),(85618,'projectsmanagement','1','update'),(85619,'projectsmanagement','1','delete'),(85620,'assets','1','add'),(85621,'assets','1','update'),(85622,'assets','1','delete'),(85623,'accounting','1','deletebank'),(85624,'accounting','1','deleteglaccount'),(85625,'accounting','1','view'),(85626,'bankdeposits','1','update'),(85627,'bankdeposits','1','delete'),(85628,'banktransfer','1','add'),(85629,'journalentry','1','add'),(85630,'accountingreports','1','view'),(85631,'peoplecategory','1','add'),(85632,'peoplecategory','1','update'),(85633,'peoplecategory','1','delete'),(85634,'departments','1','add'),(85635,'payrollsetup','1','add'),(85636,'labourrecords','1','add'),(85637,'leavemanagement','1','add'),(85638,'biometricrecords','1','add'),(85639,'payroll','1','add'),(85640,'loyalitycards','1','add'),(85641,'loyalitycards','1','update'),(85642,'reports','1','view'),(85643,'reports','1','download'),(85644,'reports','1','update'),(85645,'reports','1','viewall'),(85646,'displayreport','1','view'),(85647,'grouping','1','add'),(85648,'grouping','1','update'),(85649,'grouping','1','delete'),(85650,'sendsms','1','add'),(85651,'sendsms','1','update'),(85652,'sendsms','1','delete'),(85653,'sendsms','1','transfersms'),(85654,'documents','1','add'),(85655,'documents','1','update'),(85656,'documents','1','delete'),(85657,'documents','1','viewalldocuments'),(85658,'humanresource','1','add'),(85659,'humanresource','1','approve'),(85660,'humanresource','1','update'),(85661,'humanresource','1','delete'),(85662,'humanresource','1','view'),(85663,'humanresource','1','allocate'),(85664,'humanresource','1','viewallpayroll'),(85665,'humanresource','1','leavesetup'),(85666,'humanresource','1','allleaves '),(85667,'humanresource','1','bioattendance'),(85668,'taskscategory','1','add'),(85669,'taskscategory','1','update'),(85670,'taskscategory','1','delete'),(85671,'task','1','add'),(85672,'task','1','update'),(85673,'task','1','viewall'),(85674,'task','1','delete'),(85675,'task','1','postspecifictask'),(85676,'task','1','postgeneraltask'),(85677,'task','1','viewothersspecifictask'),(85678,'task','1','viewothersgeneraltask'),(85679,'task','1','assigntask'),(85680,'task','1','posttaskforothers'),(85681,'callcenter','1','add'),(85682,'callcenter','1','upadate'),(85683,'callcenter','1','view'),(85684,'callcenter','1','download'),(85685,'callcenter','1','delete'),(85686,'deals','1','update'),(85687,'deals','1','delete'),(85688,'deals','1','viewall'),(85689,'complain','1','add'),(85690,'complain','1','view'),(85691,'complain','1','update'),(85692,'complain','1','allcompalin'),(85693,'complain','1','delete'),(85694,'events','1','add'),(85695,'events','1','update'),(85696,'events','1','delete'),(85697,'password','1','change'),(85698,'profile','1','update'),(85699,'ecommerce','1','add'),(85700,'ecommerce','1','update'),(85701,'ecommerce','1','delete'),(85702,'ecommerce','1','vieworders'),(85703,'ecommerce','1','setup'),(85704,'ecommerce','1','approveorders'),(85705,'quotation','1','add'),(85706,'quotation','1','update'),(85707,'quotation','1','delete'),(85708,'quotation','1','view'),(85709,'quotation','1','viewall'),(85710,'config','1','delete'),(85711,'config','1','update'),(85712,'config','1','Novatsales'),(85742,'sales','6','add'),(85743,'sales','6','suspend'),(85744,'sales','6','update'),(85745,'sales','6','cash'),(85746,'sales','6','moresales'),(85747,'sales','6','sale'),(85748,'sales','6','closebill'),(85749,'sales','6','mpesa'),(85750,'sales','6','printbill'),(85751,'sales','6','order'),(85752,'sales','6','clearpayments'),(85753,'sales','6','updatepaymentmode'),(85754,'sales','6','card'),(85755,'sales','6','cheque'),(85756,'cashiersales','6','entermpesacode'),(85757,'cashiersales','6','editmpesa'),(85758,'cashiersales','6','cashiersales'),(85759,'cashiersales','6','adddailycollection'),(85760,'cashiersales','6','dailysalesonly'),(85761,'viewreturnsales','6','delete'),(85762,'sales','4','add'),(85763,'sales','4','update'),(85764,'sales','4','cash'),(85765,'sales','4','moresales'),(85766,'sales','4','sale'),(85767,'sales','4','closebill'),(85768,'sales','4','mpesa'),(85769,'sales','4','printbill'),(85770,'sales','4','order'),(85771,'sales','4','clearpayments'),(85772,'sales','4','updatepaymentmode'),(85773,'sales','4','card'),(85774,'sales','4','cheque'),(85775,'sales','4','voucher'),(85776,'cashiersales','4','entermpesacode'),(85777,'cashiersales','4','editmpesa'),(85778,'cashiersales','4','all'),(85779,'cashiersales','4','cashiersales'),(85780,'cashiersales','4','editmpesadate'),(85781,'cashiersales','4','viewdailycollections'),(85782,'cashiersales','4','updatedailycollections'),(85783,'cashiersales','4','clearallsales'),(85784,'cashiersales','4','viewallcounters'),(85785,'cashiersales','4','mpesapendingreport'),(85786,'cashiersales','4','mpesaverifiedreport'),(85787,'cashiersales','4','viewcommission'),(85788,'cashiersales','4','dailysalesonly'),(85789,'cashiersales','4','viewmpesamessages'),(85790,'users','4','delete'); /*!40000 ALTER TABLE `permissionsactions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `plot` -- DROP TABLE IF EXISTS `plot`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `plot` ( `id` int(20) NOT NULL AUTO_INCREMENT, `code` varchar(50) NOT NULL, `name` varchar(100) NOT NULL, `location` varchar(100) NOT NULL, `agentid` varchar(100) NOT NULL, `landlordid` varchar(100) NOT NULL, `totalhouse` varchar(100) NOT NULL, `country` varchar(40) NOT NULL, `createdat` varchar(100) NOT NULL, `updatedat` varchar(100) NOT NULL, `description` text NOT NULL, `userid` varchar(100) NOT NULL, `accountname` varchar(100) NOT NULL, `accountno` varchar(100) NOT NULL, `commission` varchar(100) NOT NULL, `companyid` varchar(100) NOT NULL, `status` varchar(10) NOT NULL DEFAULT '1', `tax` decimal(10,2) NOT NULL, `bank` text NOT NULL, `branch` text NOT NULL, `penalty` decimal(10,2) NOT NULL, `category` varchar(30) NOT NULL DEFAULT 'rental', `branchid` int(11) NOT NULL, `penaltytype` varchar(30) NOT NULL DEFAULT 'percentage', `areas` varchar(30) NOT NULL DEFAULT 'yes', `coparent` varchar(30) NOT NULL DEFAULT 'yes', `water` varchar(30) NOT NULL DEFAULT 'yes', `garbage` varchar(30) NOT NULL DEFAULT 'yes', `power` varchar(30) NOT NULL DEFAULT 'yes', `showpenalty` varchar(30) NOT NULL, `partial` varchar(30) NOT NULL DEFAULT '', `vat2` decimal(10,0) DEFAULT 0, `invoicedate` varchar(10) NOT NULL DEFAULT '01', `penaltydate` varchar(10) NOT NULL DEFAULT '10', `duedate` varchar(30) NOT NULL DEFAULT '10', `taxtype` varchar(30) NOT NULL DEFAULT 'Landlord', `invoicesms` text NOT NULL, `receiptsms` text NOT NULL, `utility` varchar(20) NOT NULL DEFAULT 'yes', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `plot` -- LOCK TABLES `plot` WRITE; /*!40000 ALTER TABLE `plot` DISABLE KEYS */; /*!40000 ALTER TABLE `plot` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `plotcharges` -- DROP TABLE IF EXISTS `plotcharges`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `plotcharges` ( `id` int(100) NOT NULL AUTO_INCREMENT, `chargeid` varchar(40) NOT NULL, `description` text NOT NULL, `plotno` varchar(100) NOT NULL, `cost` varchar(100) NOT NULL, `status` varchar(40) NOT NULL, `createdat` varchar(100) NOT NULL, `updatedat` varchar(100) NOT NULL, `userid` varchar(100) NOT NULL, `order` int(10) NOT NULL, `plotcharges` int(5) NOT NULL DEFAULT 1, `companyid` int(11) NOT NULL DEFAULT 1, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `plotcharges` -- LOCK TABLES `plotcharges` WRITE; /*!40000 ALTER TABLE `plotcharges` DISABLE KEYS */; /*!40000 ALTER TABLE `plotcharges` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `post` -- DROP TABLE IF EXISTS `post`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `post` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) DEFAULT NULL, `description` text DEFAULT NULL, `createdat` varchar(30) NOT NULL DEFAULT '0000-00-00 00:00:00', `updatedat` varchar(30) NOT NULL DEFAULT '0000-00-00 00:00:00', `total` int(30) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `post` -- LOCK TABLES `post` WRITE; /*!40000 ALTER TABLE `post` DISABLE KEYS */; /*!40000 ALTER TABLE `post` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `postrecharge` -- DROP TABLE IF EXISTS `postrecharge`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `postrecharge` ( `id` int(11) NOT NULL AUTO_INCREMENT, `amount` decimal(10,2) NOT NULL, `userid` int(20) NOT NULL, `companyid` int(5) NOT NULL, `dateposted` varchar(30) NOT NULL, `paymentstatus` varchar(10) NOT NULL, `branch` int(10) NOT NULL, `type` varchar(30) NOT NULL, `description` text NOT NULL, `balance` double(10,2) NOT NULL, `rate` decimal(10,2) NOT NULL, `balancebefore` decimal(10,2) DEFAULT NULL, `units` decimal(10,2) NOT NULL, `code` varchar(50) NOT NULL, `phone` varchar(30) NOT NULL, `business` text NOT NULL, `status` varchar(20) NOT NULL DEFAULT 'active', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `postrecharge` -- LOCK TABLES `postrecharge` WRITE; /*!40000 ALTER TABLE `postrecharge` DISABLE KEYS */; /*!40000 ALTER TABLE `postrecharge` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `printers` -- DROP TABLE IF EXISTS `printers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `printers` ( `id` int(11) NOT NULL AUTO_INCREMENT, `categoryno` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `branchid` int(11) NOT NULL DEFAULT 1, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `printers` -- LOCK TABLES `printers` WRITE; /*!40000 ALTER TABLE `printers` DISABLE KEYS */; INSERT INTO `printers` VALUES (1,'1','dd','2023-08-17 08:39:31','active','1','','1',1); /*!40000 ALTER TABLE `printers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `productcategory` -- DROP TABLE IF EXISTS `productcategory`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `productcategory` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` int(11) NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `maincategory` varchar(30) NOT NULL, `commission` varchar(20) NOT NULL DEFAULT '0', `shipping` varchar(20) NOT NULL, `type` varchar(30) NOT NULL DEFAULT 'Percentage', `imgid` varchar(50) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `productcategory` -- LOCK TABLES `productcategory` WRITE; /*!40000 ALTER TABLE `productcategory` DISABLE KEYS */; INSERT INTO `productcategory` VALUES (1,'COFFEE',0,'2023-02-05 13:35:46','active','1','','1','','0','','Percentage',NULL),(2,'TEA HERBAL',0,'2023-02-05 13:35:53','active','1','','1','','0','','Percentage',NULL),(3,'COFFEE SYRUP',0,'2023-02-05 13:36:00','active','1','','1','','0','','Percentage',NULL),(4,'ICED(COLD)',0,'2023-02-05 13:36:05','active','1','','1','','0','','Percentage',NULL),(5,'SHAKES',0,'2023-02-05 13:36:12','active','1','','1','','0','','Percentage',NULL),(6,'SMOOTHY',0,'2023-02-05 13:36:18','active','1','','1','','0','','Percentage',NULL),(7,'DAWA',0,'2023-02-05 13:36:25','active','1','','1','','0','','Percentage',NULL),(8,'SPECIAL COFFEE',0,'2023-02-05 13:36:31','active','1','','1','','0','','Percentage',NULL),(9,'SANDWICH',0,'2023-02-05 13:36:39','active','1','','1','','0','','Percentage',NULL),(10,'PASTRY',0,'2023-02-05 13:36:45','active','1','','1','','0','','Percentage',NULL),(11,'CUPS',0,'2023-02-05 14:02:34','active','1','','1','','0','','Percentage',NULL),(12,'ONLINE ORDERS',0,'2024-01-06 18:01:39','active','5','','1','1','0','','Percentage',NULL),(13,'ONLINE ORDERS',0,'2024-01-06 18:03:07','active','5','','1','1','0','','Percentage',NULL),(14,'ONLINE ORDERS 1',0,'2024-01-06 18:40:56','active','1','','1','','0','','Percentage',NULL); /*!40000 ALTER TABLE `productcategory` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `productcategorybox` -- DROP TABLE IF EXISTS `productcategorybox`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `productcategorybox` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` int(11) NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `maincategory` varchar(30) NOT NULL, `commission` varchar(20) NOT NULL DEFAULT '0', `shipping` varchar(20) NOT NULL, `type` varchar(30) NOT NULL DEFAULT 'New', `imgid` varchar(50) DEFAULT NULL, `myheader` varchar(50) DEFAULT 'primary', `icon` varchar(50) NOT NULL DEFAULT 'home', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `productcategorybox` -- LOCK TABLES `productcategorybox` WRITE; /*!40000 ALTER TABLE `productcategorybox` DISABLE KEYS */; /*!40000 ALTER TABLE `productcategorybox` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `productlist` -- DROP TABLE IF EXISTS `productlist`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `productlist` ( `id` int(30) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `category` varchar(50) NOT NULL, `supplier` varchar(51) DEFAULT NULL, `description` varchar(255) NOT NULL, `tax_included` decimal(10,2) NOT NULL DEFAULT 16.00, `buyingprice` varchar(50) NOT NULL, `sellingprice` varchar(50) NOT NULL DEFAULT '0.00', `promoprice` varchar(50) DEFAULT NULL, `wholesaleprice` varchar(50) NOT NULL, `start_date` date DEFAULT NULL, `end_date` date DEFAULT NULL, `reorderevel` varchar(50) DEFAULT NULL, `allow_alt_description` tinyint(1) NOT NULL, `is_serialized` tinyint(1) NOT NULL, `imgid` varchar(255) DEFAULT NULL, `override_default_tax` int(1) NOT NULL DEFAULT 0, `is_service` int(1) NOT NULL DEFAULT 0, `deleted` int(1) NOT NULL DEFAULT 0, `qty` decimal(10,2) NOT NULL, `dateposted` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `branch` varchar(50) NOT NULL, `expdate` date NOT NULL, `orderamount` varchar(50) NOT NULL DEFAULT 'mainitem', `taxtype` varchar(30) NOT NULL DEFAULT 'Inclusive', `shortname` text NOT NULL, `status` varchar(30) NOT NULL DEFAULT 'active', `store` text NOT NULL, `code` varchar(100) NOT NULL, `uom` varchar(20) NOT NULL DEFAULT 'pcs', `producttype` varchar(30) NOT NULL DEFAULT 'Inventory', `vattype` varchar(20) NOT NULL DEFAULT 'VATABLE', `reorderquantity` varchar(20) DEFAULT NULL, `hscode` varchar(100) DEFAULT NULL, `iddd` int(11) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `code` (`code`,`branch`), KEY `phppos_items_ibfk_1` (`supplier`), KEY `name` (`name`), KEY `deleted` (`deleted`), KEY `phppos_items_ibfk_2` (`imgid`) ) ENGINE=InnoDB AUTO_INCREMENT=71 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `productlist` -- LOCK TABLES `productlist` WRITE; /*!40000 ALTER TABLE `productlist` DISABLE KEYS */; INSERT INTO `productlist` VALUES (1,'DOUBLE CAPPUCCINO','1','1','',16.00,'0','250','','0',NULL,NULL,'5',0,0,NULL,0,0,0,25.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','','1','pcs','None Inventory','VATABLE','0',NULL,0),(2,'SINGLE CAPPUCCINO','1','1','',16.00,'0','200','','0',NULL,NULL,'5',0,0,NULL,0,0,0,30.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','','2','pcs','None Inventory','VATABLE','0',NULL,0),(3,'DOUBLE ESPRESSO','1','1','',16.00,'0','200',NULL,'0',NULL,NULL,'5',0,0,NULL,0,0,0,28.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','','3','pcs','None Inventory','VATABLE','0',NULL,0),(4,'SINGLE ESPRESSO','1','1','',16.00,'0','150',NULL,'0',NULL,NULL,'5',0,0,NULL,0,0,0,29.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','','4','pcs','None Inventory','VATABLE','0',NULL,0),(5,'DOUBLE MOCHA','1','1','',16.00,'0','280','','0',NULL,NULL,'5',0,0,NULL,0,0,0,27.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','','5','pcs','None Inventory','VATABLE','0',NULL,0),(6,'SINGLE MOCHA','1','1','',16.00,'0','250','','0',NULL,NULL,'5',0,0,NULL,0,0,0,30.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','','6','pcs','None Inventory','VATABLE','0',NULL,0),(7,'DOUBLE AMERICANO','1','1','',16.00,'0','200',NULL,'0',NULL,NULL,'5',0,0,NULL,0,0,0,27.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','','7','pcs','None Inventory','VATABLE','0',NULL,0),(8,'SINGLE AMERICANO','1','1','',16.00,'0','150',NULL,'0',NULL,NULL,'5',0,0,NULL,0,0,0,30.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','','8','pcs','None Inventory','VATABLE','0',NULL,0),(9,'DOUBLE ESPRESSO MACCHIATO','1','1','',16.00,'0','200',NULL,'0',NULL,NULL,'5',0,0,NULL,0,0,0,30.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','','9','pcs','None Inventory','VATABLE','0',NULL,0),(10,'SINGLE ESPRESSO MACCHIATO','1','1','',16.00,'0','150',NULL,'0',NULL,NULL,'5',0,0,NULL,0,0,0,30.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','','10','pcs','None Inventory','VATABLE','0',NULL,0),(11,'DOUBLE LATTE','1','1','',16.00,'0','250','','0',NULL,NULL,'5',0,0,NULL,0,0,0,28.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','','11','pcs','None Inventory','VATABLE','0',NULL,0),(12,'SINGLE LATTE','1','1','',16.00,'0','200','','0',NULL,NULL,'5',0,0,NULL,0,0,0,29.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','','12','pcs','None Inventory','VATABLE','0',NULL,0),(13,'DOUBLE DECAF','1','1','',16.00,'0','250','','0',NULL,NULL,'5',0,0,NULL,0,0,0,25.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','','13','pcs','None Inventory','VATABLE','0',NULL,0),(14,'SINGLE DECAF','1','1','',16.00,'0','200','','0',NULL,NULL,'5',0,0,NULL,0,0,0,35.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','','14','pcs','None Inventory','VATABLE','0',NULL,0),(15,'HIBISCUS TEA','2','1','',16.00,'0','200',NULL,'0',NULL,NULL,'5',0,0,NULL,0,0,0,25.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','','15','pcs','None Inventory','VATABLE','0',NULL,0),(16,'GREEN TEA','2','1','',16.00,'0','200',NULL,'0',NULL,NULL,'5',0,0,NULL,0,0,0,25.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','','16','pcs','None Inventory','VATABLE','0',NULL,0),(17,'LEMON TEA','2','1','',16.00,'0','200',NULL,'0',NULL,NULL,'5',0,0,NULL,0,0,0,30.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','','17','pcs','None Inventory','VATABLE','0',NULL,0),(18,'PAPER MINT','2','1','',16.00,'0','200',NULL,'0',NULL,NULL,'5',0,0,NULL,0,0,0,30.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','','18','pcs','None Inventory','VATABLE','0',NULL,0),(19,'STRAWBERRY TEA','2','1','',16.00,'0','200',NULL,'0',NULL,NULL,'5',0,0,NULL,0,0,0,25.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','','19','pcs','None Inventory','VATABLE','0',NULL,0),(20,'HOT CHOCOLATE','2','1','',16.00,'0','200',NULL,'0',NULL,NULL,'5',0,0,NULL,0,0,0,60.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','','20','pcs','None Inventory','VATABLE','0',NULL,0),(21,'KENYAN TEA(BREWED TEA)','2','1','',16.00,'0','200',NULL,'0',NULL,NULL,'5',0,0,NULL,0,0,0,60.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','','21','pcs','None Inventory','VATABLE','0',NULL,0),(22,'GINGER TEA','2','1','',16.00,'0','250',NULL,'0',NULL,NULL,'5',0,0,NULL,0,0,0,29.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','','22','pcs','None Inventory','VATABLE','0',NULL,0),(23,'MASALA TEA','2','1','',16.00,'0','250',NULL,'0',NULL,NULL,'5',0,0,NULL,0,0,0,59.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','','23','pcs','None Inventory','VATABLE','0',NULL,0),(24,'VANILLA COFFEE','3','1','',16.00,'0','100',NULL,'0',NULL,NULL,'5',0,0,NULL,0,0,0,0.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','','24','pcs','None Inventory','VATABLE','0',NULL,0),(25,'HAZELNUT COFFEE','3','1','',16.00,'0','100',NULL,'0',NULL,NULL,'5',0,0,NULL,0,0,0,-1.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','','25','pcs','None Inventory','VATABLE','0',NULL,0),(26,'CARAMEL COFFEE','3','1','',16.00,'0','100',NULL,'0',NULL,NULL,'5',0,0,NULL,0,0,0,0.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','','26','pcs','None Inventory','VATABLE','0',NULL,0),(27,'COCONUT COFFEE','3','1','',16.00,'0','100',NULL,'0',NULL,NULL,'5',0,0,NULL,0,0,0,0.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','','27','pcs','None Inventory','VATABLE','0',NULL,0),(28,'ICED COLD CAPPUCINO','4','1','',16.00,'0','300',NULL,'0',NULL,NULL,'30',0,0,NULL,0,0,0,30.00,'2024-01-05 12:39:07','5','1','1','0000-00-00','mainitem','Inclusive','','active','','28','pcs','Inventory','VATABLE','30','',0),(29,'ICED COLD COFFEE LATE','4','1','',16.00,'0','300',NULL,'0',NULL,NULL,'5',0,0,NULL,0,0,0,30.00,'2024-01-05 12:43:04','5','1','1','0000-00-00','mainitem','Inclusive','','active','','29','pcs','Inventory','VATABLE','0','',0),(30,'MOCHA COLD','4','1','',16.00,'0','330',NULL,'0',NULL,NULL,'5',0,0,NULL,0,0,0,30.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','','30','pcs','None Inventory','VATABLE','0',NULL,0),(31,'BLACK ICED COLD COFFEE','4','1','',16.00,'0','200',NULL,'0',NULL,NULL,'5',0,0,NULL,0,0,0,30.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','','31','pcs','None Inventory','VATABLE','0',NULL,0),(32,'STRAWBERRY SHAKES','5','1','',16.00,'0','300',NULL,'0',NULL,NULL,'5',0,0,NULL,0,0,0,30.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','','32','pcs','None Inventory','VATABLE','0',NULL,0),(33,'MOCHA SHAKES','5','1','',16.00,'0','300',NULL,'0',NULL,NULL,'5',0,0,NULL,0,0,0,30.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','','33','pcs','None Inventory','VATABLE','0',NULL,0),(34,'VANILLA SHAKES','5','1','',16.00,'0','300',NULL,'0',NULL,NULL,'5',0,0,NULL,0,0,0,30.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','','34','pcs','None Inventory','VATABLE','0',NULL,0),(35,'ESPRESSO SHAKES','5','1','',16.00,'0','350',NULL,'0',NULL,NULL,'5',0,0,NULL,0,0,0,30.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','','35','pcs','None Inventory','VATABLE','0',NULL,0),(36,'MIXED BERRY SMOOTHY','6','1','',16.00,'0','400',NULL,'0',NULL,NULL,'5',0,0,NULL,0,0,0,30.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','','36','pcs','None Inventory','VATABLE','0',NULL,0),(37,'STRAWBERRY SMOOTHY','6','1','',16.00,'0','400',NULL,'0',NULL,NULL,'5',0,0,NULL,0,0,0,30.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','','37','pcs','None Inventory','VATABLE','0',NULL,0),(38,'LEMON & GINGER HONEY SIDE DAWA','7','1','',16.00,'0','350',NULL,'0',NULL,NULL,'5',0,0,NULL,0,0,0,59.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','','38','pcs','None Inventory','VATABLE','0',NULL,0),(39,'CHAI LATE DAWA','7','1','',16.00,'0','300',NULL,'0',NULL,NULL,'5',0,0,NULL,0,0,0,30.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','','39','pcs','None Inventory','VATABLE','0',NULL,0),(40,'IRISH COFFEE','8','1','',16.00,'0','600',NULL,'0',NULL,NULL,'5',0,0,NULL,0,0,0,30.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','','40','pcs','None Inventory','VATABLE','0',NULL,0),(41,'CALYSO COFFEE','8','1','',16.00,'0','600',NULL,'0',NULL,NULL,'5',0,0,NULL,0,0,0,0.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','','41','pcs','None Inventory','VATABLE','0',NULL,0),(42,'BAILEYS HOT CHOCOLATE','8','1','',16.00,'0','600',NULL,'0',NULL,NULL,'5',0,0,NULL,0,0,0,13.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','','42','pcs','None Inventory','VATABLE','0',NULL,0),(43,'CHICKEN SANDWICH','9','1','',16.00,'0','600',NULL,'0',NULL,NULL,'5',0,0,NULL,0,0,0,15.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','','43','pcs','None Inventory','VATABLE','0',NULL,0),(44,'EGG CROISANT SANDWICH ','9','1','',16.00,'0','500','','0',NULL,NULL,'5',0,0,NULL,0,0,0,19.00,'2023-03-01 20:20:27','5','1','1','0000-00-00','mainitem','Inclusive','','active','','44','pcs','Inventory','VATABLE','0','',0),(45,'TOMATO SANDWICH','9','1','',16.00,'0','350',NULL,'0',NULL,NULL,'5',0,0,NULL,0,0,0,23.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','','45','pcs','None Inventory','VATABLE','0',NULL,0),(46,'CROISANTS','10','1','',16.00,'0','200','','0',NULL,NULL,'5',0,0,NULL,0,0,0,33.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','','46','pcs','None Inventory','VATABLE','0',NULL,0),(47,'PAIN AU CHOCOLATE','10','1','',16.00,'0','200','','0',NULL,NULL,'5',0,0,NULL,0,0,0,13.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','','47','pcs','None Inventory','VATABLE','0',NULL,0),(48,'COFFEE CUPS','11','2','',0.00,'0','20','1','20',NULL,NULL,'0',0,0,'6041361675594956',0,0,0,383.00,'2023-02-05 14:03:00','1','1','1','0000-00-00','mainitem','Inclusive','','active','','48','pcs','None Inventory','EXEMPTED','0',NULL,0),(49,'PARTY CUPS','11','2','',0.00,'10','15','0','1',NULL,NULL,'0',0,0,'7237051675594981',0,0,0,196.00,'2023-02-05 14:03:21','1','1','1','0000-00-00','mainitem','Inclusive','','active','','49','pcs','None Inventory','EXEMPTED','0',NULL,0),(50,'COFFEE','1','2','',0.00,'650','800','0','800',NULL,NULL,'0',0,0,'3079941675596631',0,0,0,10.00,'2023-02-05 14:31:55','5','1','1','0000-00-00','mainitem','Inclusive','','active','','50','pcs','None Inventory','EXEMPTED','0',NULL,0),(51,'CINNAMON TEA','2','2','',0.00,'100','200','0','',NULL,NULL,'0',0,0,'7924011677423096',0,0,0,30.00,'2023-02-26 17:55:26','5','1','1','0000-00-00','mainitem','Inclusive','','global','','51','pcs','Service','EXEMPTED','10',NULL,0),(52,'BLACK TEA','2','2','',0.00,'200','150','0','150',NULL,NULL,'0',0,0,'2610781677428860',0,0,0,50.00,'2023-02-26 19:29:20','5','1','1','0000-00-00','mainitem','Inclusive','','active','','52','pcs','Service','EXEMPTED','50',NULL,0),(53,'ICED BLACK TEA','4','2','',0.00,'150','200','0','',NULL,NULL,'0',0,0,'6484231677428961',0,0,0,40.00,'2023-02-26 19:31:41','5','1','1','0000-00-00','mainitem','Inclusive','','active','','53','pcs','Inventory','EXEMPTED','50',NULL,0),(54,'PROMO PASTRY','10','2','',0.00,'200','350','0','',NULL,NULL,'0',0,0,'2382401677518966',0,0,0,34.00,'2023-02-27 20:33:02','5','1','1','0000-00-00','mainitem','Inclusive','','active','','54','pcs','Service','EXEMPTED','10',NULL,0),(55,'CINNAMOM TEA ','2','2','',0.00,'150','200','0','',NULL,NULL,'0',0,0,'9723881677684443',0,0,0,8.00,'2023-03-01 18:32:47','5','1','1','0000-00-00','mainitem','Inclusive','','active','','55','pcs','Inventory','EXEMPTED','','',0),(56,'OREO SHAKES','5','2','',0.00,'200','400','0','',NULL,NULL,'0',0,0,'9131781677691586',0,0,0,20.00,'2023-03-01 20:29:47','5','1','1','0000-00-00','mainitem','Inclusive','','active','','56','pcs','Service','EXEMPTED','10',NULL,0),(57,'MANGO SHAKE','5','2','',0.00,'200','350','0','',NULL,NULL,'0',0,0,'3122231677691810',0,0,0,30.00,'2023-03-01 20:33:04','5','1','1','0000-00-00','mainitem','Inclusive','','active','','57','pcs','Service','EXEMPTED','10',NULL,0),(58,'EXTRA HONEY 25g','7','2','',0.00,'15','30','0','',NULL,NULL,'0',0,0,'5449261677693310',0,0,0,55.00,'2023-03-01 20:58:12','5','1','1','0000-00-00','mainitem','Inclusive','','active','','58','pcs','Service','EXEMPTED','','',0),(59,'staff tea/coffee','1','2','',0.00,'100','150','0','',NULL,NULL,'0',0,0,'8885571678203658',0,0,0,40.00,'2023-03-07 18:42:54','5','1','1','0000-00-00','mainitem','Inclusive','','active','','59','pcs','Service','EXEMPTED','','',0),(60,'HOT WATER','2','2','',0.00,'70','100','0','',NULL,NULL,'0',0,0,'1922611678376745',0,0,0,25.00,'2023-03-09 18:48:34','5','1','1','0000-00-00','mainitem','Inclusive','','active','','60','pcs','Inventory','EXEMPTED','','',0),(61,'HOT MILK','2','2','',0.00,'100','150','0','',NULL,NULL,'0',0,0,'2632231678721026',0,0,0,32.00,'2023-03-13 18:26:33','5','1','1','0000-00-00','mainitem','Inclusive','','active','','61','pcs','Service','EXEMPTED','','',0),(62,'CAMMOMILE','2','2','',0.00,'200','200','0','',NULL,NULL,'0',0,0,'61111678721194',0,0,0,22.00,'2024-01-05 12:37:04','5','1','1','0000-00-00','mainitem','na','','active','30','62','pcs','Inventory','EXEMPTED','','',0),(63,'PURPLE TEA','2','2','',0.00,'150','200','0','',NULL,NULL,'0',0,0,'3013471678721366',0,0,0,30.00,'2023-03-13 18:31:54','5','1','1','0000-00-00','mainitem','Inclusive','','active','','63','pcs','Service','EXEMPTED','','',0),(64,'SOYA','2','2','',0.00,'100','150','0','',NULL,NULL,'0',0,0,'3596211680272393',0,0,0,30.00,'2023-03-31 17:22:21','5','1','1','0000-00-00','mainitem','Inclusive','','active','','64','pcs','Service','EXEMPTED','','',0),(65,'SAMOSA','2','2','',0.00,'45','50','0','',NULL,NULL,'0',0,0,'6942811680272552',0,0,0,30.00,'2023-03-31 17:24:16','5','1','1','0000-00-00','mainitem','Inclusive','','active','','65','pcs','Service','EXEMPTED','','',0),(66,'CLUB SANDWICH','9','2','',0.00,'450','600','0','',NULL,NULL,'0',0,0,'4136361680272665',0,0,0,30.00,'2023-03-31 17:28:10','5','1','1','0000-00-00','mainitem','Inclusive','','active','','66','pcs','Service','EXEMPTED','','',0),(67,'CHICKEN WRAP','9','2','',0.00,'600','800','0','',NULL,NULL,'30',0,0,'3225241680273805',0,0,0,60.00,'2024-01-05 12:57:15','5','1','1','0000-00-00','mainitem','na','','active','','67','pcs','Inventory','EXEMPTED','','',0),(68,'MANGO SMOOTHY','6','2','',0.00,'300','400','0','',NULL,NULL,'0',0,0,'7315891680273925',0,0,0,25.00,'2023-03-31 17:48:05','5','1','1','0000-00-00','mainitem','Inclusive','','active','','68','pcs','Inventory','EXEMPTED','','',0),(69,'SMALL DAWA','7','2','',0.00,'200','250','30','',NULL,NULL,'0',0,0,'6569941704549004',0,0,0,50.00,'2024-01-06 16:53:27','5','1','1','0000-00-00','mainitem','Inclusive','SMALL DAWA','active','','69','pcs','Inventory','EXEMPTED','30',NULL,0),(70,'LATTE MACCHIATO','1','2','',0.00,'200','250','0','250',NULL,NULL,'0',0,0,'5205311704626691',0,0,0,30.00,'2024-01-07 14:32:20','5','1','1','0000-00-00','mainitem','na','DOUBLE','active','','70','pcs','Service','EXEMPTED','','',0); /*!40000 ALTER TABLE `productlist` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `products` -- DROP TABLE IF EXISTS `products`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `products` ( `id` int(30) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `category` varchar(50) NOT NULL, `supplier` varchar(50) DEFAULT NULL, `code` varchar(255) DEFAULT NULL, `description` varchar(255) NOT NULL, `tax_included` decimal(10,2) NOT NULL DEFAULT 16.00, `buyingprice` varchar(50) NOT NULL, `sellingprice` varchar(50) NOT NULL DEFAULT '0.00', `promoprice` varchar(50) DEFAULT NULL, `wholesaleprice` varchar(50) NOT NULL, `start_date` date DEFAULT NULL, `end_date` date DEFAULT NULL, `reorderevel` int(50) DEFAULT NULL, `allow_alt_description` tinyint(1) NOT NULL, `is_serialized` tinyint(1) NOT NULL, `imgid` varchar(255) DEFAULT NULL, `override_default_tax` int(1) NOT NULL DEFAULT 0, `is_service` int(1) NOT NULL DEFAULT 0, `deleted` int(1) NOT NULL DEFAULT 0, `qty` decimal(10,2) NOT NULL, `dateposted` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `store` varchar(50) NOT NULL, `expdate` date NOT NULL, `orderamount` varchar(50) NOT NULL DEFAULT 'mainitem', `taxtype` varchar(30) NOT NULL DEFAULT 'Inclusive', `shortname` varchar(50) NOT NULL, `status` varchar(30) NOT NULL DEFAULT 'active', `uom` varchar(20) NOT NULL DEFAULT 'pcs', `producttype` varchar(30) NOT NULL DEFAULT 'Inventory', `assetaccount` varchar(30) NOT NULL, `salesaccount` varchar(30) NOT NULL, `expenseaccount` varchar(30) NOT NULL, `vattype` varchar(20) NOT NULL DEFAULT 'VATABLE', `reorderquantity` varchar(20) DEFAULT NULL, `hscode` varchar(100) DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `item_number` (`code`), KEY `phppos_items_ibfk_1` (`supplier`), KEY `name` (`name`), KEY `deleted` (`deleted`), KEY `phppos_items_ibfk_2` (`imgid`) ) ENGINE=InnoDB AUTO_INCREMENT=71 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `products` -- LOCK TABLES `products` WRITE; /*!40000 ALTER TABLE `products` DISABLE KEYS */; INSERT INTO `products` VALUES (1,'DOUBLE CAPPUCCINO','1','1','1','',16.00,'0','250','','0',NULL,NULL,5,0,0,NULL,0,0,0,50.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(2,'SINGLE CAPPUCCINO','1','1','2','',16.00,'0','200','','0',NULL,NULL,5,0,0,NULL,0,0,0,50.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(3,'DOUBLE ESPRESSO','1','1','3','',16.00,'0','200',NULL,'0',NULL,NULL,5,0,0,NULL,0,0,0,25.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(4,'SINGLE ESPRESSO','1','1','4','',16.00,'0','150',NULL,'0',NULL,NULL,5,0,0,NULL,0,0,0,54.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(5,'DOUBLE MOCHA','1','1','5','',16.00,'0','280','','0',NULL,NULL,5,0,0,NULL,0,0,0,25.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(6,'SINGLE MOCHA','1','1','6','',16.00,'0','250','','0',NULL,NULL,5,0,0,NULL,0,0,0,25.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(7,'DOUBLE AMERICANO','1','1','7','',16.00,'0','200',NULL,'0',NULL,NULL,5,0,0,NULL,0,0,0,54.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(8,'SINGLE AMERICANO','1','1','8','',16.00,'0','150',NULL,'0',NULL,NULL,5,0,0,NULL,0,0,0,50.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(9,'DOUBLE ESPRESSO MACCHIATO','1','1','9','',16.00,'0','200',NULL,'0',NULL,NULL,5,0,0,NULL,0,0,0,133.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(10,'SINGLE ESPRESSO MACCHIATO','1','1','10','',16.00,'0','150',NULL,'0',NULL,NULL,5,0,0,NULL,0,0,0,54.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(11,'DOUBLE LATTE','1','1','11','',16.00,'0','250','','0',NULL,NULL,5,0,0,NULL,0,0,0,50.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(12,'SINGLE LATTE','1','1','12','',16.00,'0','200','','0',NULL,NULL,5,0,0,NULL,0,0,0,54.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(13,'DOUBLE DECAF','1','1','13','',16.00,'0','250','','0',NULL,NULL,5,0,0,NULL,0,0,0,30.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(14,'SINGLE DECAF','1','1','14','',16.00,'0','200','','0',NULL,NULL,5,0,0,NULL,0,0,0,45.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(15,'HIBISCUS TEA','2','1','15','',16.00,'0','200',NULL,'0',NULL,NULL,5,0,0,NULL,0,0,0,16.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(16,'GREEN TEA','2','1','16','',16.00,'0','200',NULL,'0',NULL,NULL,5,0,0,NULL,0,0,0,22.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(17,'LEMON TEA','2','1','17','',16.00,'0','200',NULL,'0',NULL,NULL,5,0,0,NULL,0,0,0,30.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(18,'PAPER MINT','2','1','18','',16.00,'0','200',NULL,'0',NULL,NULL,5,0,0,NULL,0,0,0,30.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(19,'STRAWBERRY TEA','2','1','19','',16.00,'0','200',NULL,'0',NULL,NULL,5,0,0,NULL,0,0,0,30.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(20,'HOT CHOCOLATE','2','1','20','',16.00,'0','200',NULL,'0',NULL,NULL,5,0,0,NULL,0,0,0,30.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(21,'KENYAN TEA(BREWED TEA)','2','1','21','',16.00,'0','200',NULL,'0',NULL,NULL,5,0,0,NULL,0,0,0,50.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(22,'GINGER TEA','2','1','22','',16.00,'0','250',NULL,'0',NULL,NULL,5,0,0,NULL,0,0,0,50.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(23,'MASALA TEA','2','1','23','',16.00,'0','250',NULL,'0',NULL,NULL,5,0,0,NULL,0,0,0,30.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(24,'VANILLA COFFEE','3','1','24','',16.00,'0','100',NULL,'0',NULL,NULL,5,0,0,NULL,0,0,0,25.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(25,'HAZELNUT COFFEE','3','1','25','',16.00,'0','100',NULL,'0',NULL,NULL,5,0,0,NULL,0,0,0,25.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(26,'CARAMEL COFFEE','3','1','26','',16.00,'0','100',NULL,'0',NULL,NULL,5,0,0,NULL,0,0,0,57.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(27,'COCONUT COFFEE','3','1','27','',16.00,'0','100',NULL,'0',NULL,NULL,5,0,0,NULL,0,0,0,25.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(28,'ICED COLD CAPPUCINO','4','1','28','',16.00,'0','300','','0',NULL,NULL,30,0,0,NULL,0,0,0,30.00,'2024-01-05 12:39:07','5','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','30',''),(29,'ICED COLD COFFEE LATE','4','1','29','',16.00,'0','300','50','0',NULL,NULL,5,0,0,NULL,0,0,0,30.00,'2024-01-05 12:43:04','5','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',''),(30,'MOCHA COLD','4','1','30','',16.00,'0','330',NULL,'0',NULL,NULL,5,0,0,NULL,0,0,0,50.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(31,'BLACK ICED COLD COFFEE','4','1','31','',16.00,'0','200',NULL,'0',NULL,NULL,5,0,0,NULL,0,0,0,30.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(32,'STRAWBERRY SHAKES','5','1','32','',16.00,'0','300',NULL,'0',NULL,NULL,5,0,0,NULL,0,0,0,30.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(33,'MOCHA SHAKES','5','1','33','',16.00,'0','300',NULL,'0',NULL,NULL,5,0,0,NULL,0,0,0,30.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(34,'VANILLA SHAKES','5','1','34','',16.00,'0','300',NULL,'0',NULL,NULL,5,0,0,NULL,0,0,0,30.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(35,'ESPRESSO SHAKES','5','1','35','',16.00,'0','350',NULL,'0',NULL,NULL,5,0,0,NULL,0,0,0,30.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(36,'MIXED BERRY SMOOTHY','6','1','36','',16.00,'0','400',NULL,'0',NULL,NULL,5,0,0,NULL,0,0,0,30.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(37,'STRAWBERRY SMOOTHY','6','1','37','',16.00,'0','400',NULL,'0',NULL,NULL,5,0,0,NULL,0,0,0,30.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(38,'LEMON & GINGER HONEY SIDE DAWA','7','1','38','',16.00,'0','350',NULL,'0',NULL,NULL,5,0,0,NULL,0,0,0,50.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(39,'CHAI LATE DAWA','7','1','39','',16.00,'0','300',NULL,'0',NULL,NULL,5,0,0,NULL,0,0,0,50.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(40,'IRISH COFFEE','8','1','40','',16.00,'0','600',NULL,'0',NULL,NULL,5,0,0,NULL,0,0,0,50.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(41,'CALYSO COFFEE','8','1','41','',16.00,'0','600',NULL,'0',NULL,NULL,5,0,0,NULL,0,0,0,50.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(42,'BAILEYS HOT CHOCOLATE','8','1','42','',16.00,'0','600',NULL,'0',NULL,NULL,5,0,0,NULL,0,0,0,50.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(43,'CHICKEN SANDWICH','9','1','43','',16.00,'0','600',NULL,'0',NULL,NULL,5,0,0,NULL,0,0,0,50.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(44,'EGG CROISANT SANDWICH ','9','1','44','',16.00,'0','500','','0',NULL,NULL,5,0,0,'51677691179',0,0,0,50.00,'2023-03-01 20:20:27','5','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',''),(45,'TOMATO SANDWICH','9','1','45','',16.00,'0','350',NULL,'0',NULL,NULL,5,0,0,NULL,0,0,0,50.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(46,'CROISANTS','10','1','46','',16.00,'0','200','','0',NULL,NULL,5,0,0,NULL,0,0,0,60.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(47,'PAIN AU CHOCOLATE','10','1','47','',16.00,'0','200','','0',NULL,NULL,5,0,0,NULL,0,0,0,60.00,'','1','1','1','0000-00-00','mainitem','Inclusive','','active','pcs','Inventory','','','','VATABLE','0',NULL),(48,'COFFEE CUPS','11','2','48','',0.00,'0','20','1','20',NULL,NULL,0,0,0,'6041361675594956',0,0,0,40.00,'2023-02-05 14:03:00','1','1','','0000-00-00','mainitem','na','','active','pcs','None Inventory','1110','4000','5500','EXEMPTED','0',NULL),(49,'PARTY CUPS','11','2','49','',0.00,'0','10','0','',NULL,NULL,0,0,0,'7237051675594981',0,0,0,20.00,'2023-02-05 14:03:21','1','1','','0000-00-00','mainitem','na','','active','pcs','None Inventory','1110','4000','5500','EXEMPTED','0',NULL),(50,'COFFEE','1','2','50','',0.00,'650','800','0','',NULL,NULL,0,0,0,'3079941675596631',0,0,0,14.00,'2023-02-05 14:31:55','5','1','','0000-00-00','mainitem','na','','active','pcs','None Inventory','1110','4000','5500','EXEMPTED','0',NULL),(51,'CINNAMON TEA','2','2','51','',0.00,'100','200','0','',NULL,NULL,0,0,0,'7924011677423096',0,0,0,50.00,'2023-02-26 17:55:26','5','1','','0000-00-00','mainitem','na','','global','pcs','Service','1110','4000','5500','EXEMPTED','10',NULL),(52,'BLACK TEA','2','2','52','',0.00,'200','150','0','150',NULL,NULL,0,0,0,'2610781677428860',0,0,0,50.00,'2023-02-26 19:29:20','5','1','','0000-00-00','mainitem','na','','active','pcs','Service','1110','4000','5500','EXEMPTED','50',NULL),(53,'ICED BLACK TEA','4','2','53','',0.00,'150','200','0','',NULL,NULL,0,0,0,'6484231677428961',0,0,0,50.00,'2023-02-26 19:31:41','5','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','50',NULL),(54,'PROMO PASTRY','10','2','54','',0.00,'200','350','0','',NULL,NULL,0,0,0,'2382401677518966',0,0,0,30.00,'2023-02-27 20:33:02','5','1','','0000-00-00','mainitem','na','','active','pcs','Service','1110','4000','5500','EXEMPTED','10',NULL),(55,'CINNAMOM TEA ','2','2','55','',0.00,'150','200','0','',NULL,NULL,0,0,0,'9723881677684443',0,0,0,30.00,'2023-03-01 18:32:47','5','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','',''),(56,'OREO SHAKES','5','2','56','',0.00,'200','400','0','',NULL,NULL,0,0,0,'9131781677691586',0,0,0,50.00,'2023-03-01 20:29:47','5','1','','0000-00-00','mainitem','na','','active','pcs','Service','1110','4000','5500','EXEMPTED','10',NULL),(57,'MANGO SHAKE','5','2','57','',0.00,'200','350','0','',NULL,NULL,0,0,0,'3122231677691810',0,0,0,50.00,'2023-03-01 20:33:04','5','1','','0000-00-00','mainitem','na','','active','pcs','Service','1110','4000','5500','EXEMPTED','10',NULL),(58,'EXTRA HONEY 25g','7','2','58','',0.00,'15','30','0','',NULL,NULL,0,0,0,'5449261677693310',0,0,0,50.00,'2023-03-01 20:58:12','5','1','','0000-00-00','mainitem','na','','active','pcs','Service','1110','4000','5500','EXEMPTED','',''),(59,'staff tea/coffee','1','2','59','',0.00,'100','150','0','',NULL,NULL,0,0,0,'8885571678203658',0,0,0,0.00,'2023-03-07 18:42:54','5','1','','0000-00-00','mainitem','na','','active','pcs','Service','1110','4000','5500','EXEMPTED','',''),(60,'HOT WATER','2','2','60','',0.00,'70','100','0','',NULL,NULL,0,0,0,'1922611678376745',0,0,0,0.00,'2023-03-09 18:48:34','5','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','',''),(61,'HOT MILK','2','2','61','',0.00,'100','150','0','',NULL,NULL,0,0,0,'2632231678721026',0,0,0,0.00,'2023-03-13 18:26:33','5','1','','0000-00-00','mainitem','na','','active','pcs','Service','1110','4000','5500','EXEMPTED','',''),(62,'CAMMOMILE','2','2','62','',0.00,'200','200','30','',NULL,NULL,0,0,0,'61111678721194',0,0,0,0.00,'2024-01-05 12:37:04','5','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','',''),(63,'PURPLE TEA','2','2','63','',0.00,'150','200','0','',NULL,NULL,0,0,0,'3013471678721366',0,0,0,0.00,'2023-03-13 18:31:54','5','1','','0000-00-00','mainitem','na','','active','pcs','Service','1110','4000','5500','EXEMPTED','',''),(64,'SOYA','2','2','64','',0.00,'100','150','0','',NULL,NULL,0,0,0,'3596211680272393',0,0,0,0.00,'2023-03-31 17:22:21','5','1','','0000-00-00','mainitem','na','','active','pcs','Service','1110','4000','5500','EXEMPTED','',''),(65,'SAMOSA','2','2','65','',0.00,'45','50','0','',NULL,NULL,0,0,0,'6942811680272552',0,0,0,0.00,'2023-03-31 17:24:16','5','1','','0000-00-00','mainitem','na','','active','pcs','Service','1110','4000','5500','EXEMPTED','',''),(66,'CLUB SANDWICH','9','2','66','',0.00,'450','600','0','',NULL,NULL,0,0,0,'4136361680272665',0,0,0,0.00,'2023-03-31 17:28:10','5','1','','0000-00-00','mainitem','na','','active','pcs','Service','1110','4000','5500','EXEMPTED','',''),(67,'CHICKEN WRAP','9','2','67','',0.00,'600','800','30','',NULL,NULL,30,0,0,'3225241680273805',0,0,0,0.00,'2024-01-05 12:57:15','5','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','',''),(68,'MANGO SMOOTHY','6','2','68','',0.00,'300','400','0','',NULL,NULL,0,0,0,'7315891680273925',0,0,0,0.00,'2023-03-31 17:48:05','5','1','','0000-00-00','mainitem','na','','active','pcs','Inventory','1110','4000','5500','EXEMPTED','',''),(69,'SMALL DAWA','7','2','69','',0.00,'200','250','30','',NULL,NULL,0,0,0,'6569941704549004',0,0,0,0.00,'2024-01-06 16:53:27','5','1','','0000-00-00','mainitem','na','SMALL DAWA','active','pcs','Inventory','1110','4000','5500','EXEMPTED','30',NULL),(70,'LATTE MACCHIATO','1','2','70','',0.00,'200','250','30','250',NULL,NULL,0,0,0,'5205311704626691',0,0,0,0.00,'2024-01-07 14:32:20','5','1','','0000-00-00','mainitem','na','DOUBLE','active','pcs','Service','1110','4000','5500','EXEMPTED','',''); /*!40000 ALTER TABLE `products` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `productsgrouping` -- DROP TABLE IF EXISTS `productsgrouping`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `productsgrouping` ( `id` int(50) NOT NULL AUTO_INCREMENT, `memberid` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `createdate` varchar(50) NOT NULL, `user` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `updatedat` varchar(50) NOT NULL, `categoryid` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `productsgrouping` -- LOCK TABLES `productsgrouping` WRITE; /*!40000 ALTER TABLE `productsgrouping` DISABLE KEYS */; /*!40000 ALTER TABLE `productsgrouping` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `projects` -- DROP TABLE IF EXISTS `projects`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `projects` ( `id` int(30) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `invoice` text NOT NULL, `category` int(20) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `projects` -- LOCK TABLES `projects` WRITE; /*!40000 ALTER TABLE `projects` DISABLE KEYS */; /*!40000 ALTER TABLE `projects` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `projectsbudget` -- DROP TABLE IF EXISTS `projectsbudget`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `projectsbudget` ( `id` int(11) NOT NULL AUTO_INCREMENT, `code` varchar(20) NOT NULL, `createdate` varchar(20) NOT NULL, `expamount` decimal(10,2) NOT NULL, `usedamount` decimal(10,2) NOT NULL, `balance` decimal(10,2) NOT NULL, `year` varchar(20) NOT NULL, `month` varchar(20) NOT NULL, `userid` int(11) NOT NULL, `companyid` int(11) NOT NULL, `branch` int(11) NOT NULL, `updatedby` int(11) NOT NULL, `description` text NOT NULL, `todate` varchar(30) DEFAULT NULL, `projectid` int(11) NOT NULL, `qty` varchar(20) NOT NULL, `uom` varchar(20) NOT NULL, `usedqty` varchar(20) DEFAULT NULL, `balanceqty` varchar(20) DEFAULT NULL, `buyingprice` varchar(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `projectsbudget` -- LOCK TABLES `projectsbudget` WRITE; /*!40000 ALTER TABLE `projectsbudget` DISABLE KEYS */; /*!40000 ALTER TABLE `projectsbudget` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `projectsbudgettasks` -- DROP TABLE IF EXISTS `projectsbudgettasks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `projectsbudgettasks` ( `id` int(11) NOT NULL AUTO_INCREMENT, `code` varchar(20) NOT NULL, `createdate` varchar(20) NOT NULL, `expamount` decimal(10,2) NOT NULL, `usedamount` decimal(10,2) NOT NULL, `balance` decimal(10,2) NOT NULL, `year` varchar(20) NOT NULL, `month` varchar(20) NOT NULL, `userid` int(11) NOT NULL, `companyid` int(11) NOT NULL, `branch` int(11) NOT NULL, `updatedby` int(11) NOT NULL, `description` text NOT NULL, `todate` varchar(30) DEFAULT NULL, `projectid` int(11) NOT NULL, `qty` varchar(20) NOT NULL, `uom` varchar(20) NOT NULL, `usedqty` varchar(20) DEFAULT NULL, `balanceqty` varchar(20) DEFAULT NULL, `buyingprice` varchar(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `projectsbudgettasks` -- LOCK TABLES `projectsbudgettasks` WRITE; /*!40000 ALTER TABLE `projectsbudgettasks` DISABLE KEYS */; /*!40000 ALTER TABLE `projectsbudgettasks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `projectstask` -- DROP TABLE IF EXISTS `projectstask`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `projectstask` ( `id` int(30) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `taskid` text NOT NULL, `category` int(20) DEFAULT NULL, `invoice` varchar(50) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `projectstask` -- LOCK TABLES `projectstask` WRITE; /*!40000 ALTER TABLE `projectstask` DISABLE KEYS */; /*!40000 ALTER TABLE `projectstask` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `proposal` -- DROP TABLE IF EXISTS `proposal`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `proposal` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(45) DEFAULT NULL, `companyid` int(11) NOT NULL DEFAULT 1, `description` text NOT NULL, `version` varchar(50) NOT NULL, `package` varchar(50) NOT NULL, `exactdate` varchar(50) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `proposal` -- LOCK TABLES `proposal` WRITE; /*!40000 ALTER TABLE `proposal` DISABLE KEYS */; /*!40000 ALTER TABLE `proposal` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `province` -- DROP TABLE IF EXISTS `province`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `province` ( `id` int(20) NOT NULL, `code` varchar(40) NOT NULL, `name` varchar(255) DEFAULT NULL, `description` text DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `province` -- LOCK TABLES `province` WRITE; /*!40000 ALTER TABLE `province` DISABLE KEYS */; INSERT INTO `province` VALUES (1,'1','Central','Central','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'2','Coast','Coast','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'3','Eastern','Eastern','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'4','Nairobi','Nairobi','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,'5','North Eastern','North Eastern','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,'6','Nyanza','Nyanza','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,'7','Rift valley','Rift valley','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'8','Western','Western','0000-00-00 00:00:00','0000-00-00 00:00:00'); /*!40000 ALTER TABLE `province` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `purchaseorder` -- DROP TABLE IF EXISTS `purchaseorder`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `purchaseorder` ( `id` int(11) NOT NULL AUTO_INCREMENT, `supplier` varchar(30) NOT NULL, `invoice` varchar(50) NOT NULL, `orderdate` datetime NOT NULL, `ordernumber` varchar(30) NOT NULL, `description` text NOT NULL, `userid` varchar(30) NOT NULL, `createdate` datetime NOT NULL, `orderedby` text NOT NULL, `shippingto` text NOT NULL, `canceldate` datetime NOT NULL, `deliverymethod` varchar(30) NOT NULL, `fob` text NOT NULL, `terms` text NOT NULL, `deliverydate` varchar(30) NOT NULL, `status` varchar(20) NOT NULL DEFAULT 'p.o', `amount` decimal(10,2) NOT NULL, `companyid` varchar(30) NOT NULL, `balance` decimal(10,2) NOT NULL, `fromdate` datetime NOT NULL, `paiddate` datetime NOT NULL, `updateddate` date NOT NULL, `updatedid` varchar(30) NOT NULL, `pin` varchar(30) DEFAULT NULL, `vattype` varchar(10) NOT NULL, `vat` varchar(20) NOT NULL, `taxable` decimal(10,2) NOT NULL DEFAULT 16.00, `vatrate` varchar(20) NOT NULL, `paid` varchar(20) NOT NULL, `transactionstatus` varchar(20) NOT NULL DEFAULT 'open', `remarks` text NOT NULL, `entrydate` date NOT NULL, `branchid` int(11) NOT NULL, `controller` int(11) NOT NULL, `approvalstatus` varchar(30) NOT NULL DEFAULT 'new', `branchto` varchar(30) NOT NULL DEFAULT '', `qty` varchar(20) DEFAULT NULL, `EXEMPTED` decimal(10,0) NOT NULL, `ZERORATED` decimal(10,0) DEFAULT NULL, `agent` int(11) DEFAULT NULL, `paymentmethodes` varchar(20) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `invoice` (`invoice`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `purchaseorder` -- LOCK TABLES `purchaseorder` WRITE; /*!40000 ALTER TABLE `purchaseorder` DISABLE KEYS */; /*!40000 ALTER TABLE `purchaseorder` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `purchaseorderlist` -- DROP TABLE IF EXISTS `purchaseorderlist`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `purchaseorderlist` ( `id` int(30) NOT NULL AUTO_INCREMENT, `invoice` varchar(100) NOT NULL, `code` varchar(100) NOT NULL, `qty` varchar(100) NOT NULL, `amount` varchar(100) NOT NULL, `salestype` varchar(100) DEFAULT 'retail', `sprice` varchar(100) NOT NULL, `discount` varchar(100) NOT NULL, `dateposted` varchar(50) NOT NULL, `address` varchar(50) NOT NULL, `description` text NOT NULL, `user` varchar(50) NOT NULL, `bprice` varchar(50) NOT NULL, `type` varchar(50) NOT NULL DEFAULT 'cash', `tax` varchar(50) NOT NULL, `balance` varchar(50) NOT NULL, `customer` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `mode` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `date` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), `maincategory` varchar(50) NOT NULL, `category` varchar(50) NOT NULL, `status` varchar(30) DEFAULT 'new', `branch` varchar(30) NOT NULL, `ordersales` varchar(20) NOT NULL DEFAULT 'new', `unit` varchar(10) NOT NULL, `totalweight` varchar(10) NOT NULL, `serial` varchar(50) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `purchaseorderlist` -- LOCK TABLES `purchaseorderlist` WRITE; /*!40000 ALTER TABLE `purchaseorderlist` DISABLE KEYS */; /*!40000 ALTER TABLE `purchaseorderlist` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `quotation` -- DROP TABLE IF EXISTS `quotation`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `quotation` ( `id` int(30) NOT NULL AUTO_INCREMENT, `supplier` text NOT NULL, `invoice` varchar(50) NOT NULL, `orderdate` varchar(30) NOT NULL, `ordernumber` varchar(30) DEFAULT NULL, `description` text NOT NULL, `userid` varchar(30) NOT NULL, `createdate` varchar(30) NOT NULL, `orderedby` text NOT NULL, `shippingto` text NOT NULL, `canceldate` varchar(30) NOT NULL, `deliverymethod` varchar(30) NOT NULL DEFAULT 'quotation', `fob` text NOT NULL, `terms` text NOT NULL, `deliverydate` varchar(30) NOT NULL, `status` varchar(20) NOT NULL DEFAULT 'new', `amount` varchar(30) NOT NULL, `companyid` varchar(30) NOT NULL, `preparedby` varchar(30) NOT NULL, `weight` varchar(10) NOT NULL DEFAULT 'No', `branchid` int(30) NOT NULL DEFAULT 1, `displayvat` varchar(50) DEFAULT NULL, `approvedby` int(11) DEFAULT NULL, `updatedid` int(11) DEFAULT NULL, `updateddate` varchar(50) DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `invoice` (`invoice`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `quotation` -- LOCK TABLES `quotation` WRITE; /*!40000 ALTER TABLE `quotation` DISABLE KEYS */; /*!40000 ALTER TABLE `quotation` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `reasons` -- DROP TABLE IF EXISTS `reasons`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `reasons` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `reasons` -- LOCK TABLES `reasons` WRITE; /*!40000 ALTER TABLE `reasons` DISABLE KEYS */; /*!40000 ALTER TABLE `reasons` 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 = utf8mb4 */; CREATE TABLE `receipt` ( `id` int(40) NOT NULL AUTO_INCREMENT, `plotno` varchar(60) NOT NULL, `houseno` varchar(40) NOT NULL, `tenantid` varchar(100) NOT NULL, `amount` varchar(100) NOT NULL, `description` varchar(100) NOT NULL, `createdat` varchar(100) NOT NULL, `updatedat` varchar(100) NOT NULL, `userid` varchar(100) NOT NULL, `paymentstatus` varchar(40) NOT NULL, `paymentmode` varchar(40) NOT NULL, `transactioncode` varchar(100) DEFAULT NULL, `approvedby` varchar(60) NOT NULL, `approvaldate` varchar(60) NOT NULL, `overpayment` varchar(40) NOT NULL, `balance` decimal(10,2) NOT NULL DEFAULT 0.00, `companyid` varchar(100) NOT NULL, `paidby` varchar(50) NOT NULL, `exactime` varchar(30) NOT NULL, `paymentcode` varchar(30) NOT NULL, `paid` decimal(10,2) NOT NULL, `branchid` int(2) NOT NULL DEFAULT 1, `tax1` decimal(10,2) NOT NULL, `tax2` decimal(10,2) NOT NULL, `vatable` decimal(10,2) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `receipt` -- LOCK TABLES `receipt` WRITE; /*!40000 ALTER TABLE `receipt` DISABLE KEYS */; /*!40000 ALTER TABLE `receipt` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `recharge` -- DROP TABLE IF EXISTS `recharge`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `recharge` ( `id` int(11) NOT NULL AUTO_INCREMENT, `amount` decimal(10,2) NOT NULL, `userid` int(20) NOT NULL, `companyid` int(5) NOT NULL, `dateposted` varchar(30) NOT NULL, `paymentstatus` varchar(10) NOT NULL, `branch` int(10) NOT NULL, `type` varchar(30) NOT NULL, `description` text NOT NULL, `balance` double(10,2) NOT NULL, `rate` decimal(10,2) NOT NULL, `balancebefore` decimal(10,2) NOT NULL, `units` decimal(10,2) NOT NULL, `code` varchar(50) NOT NULL, `phone` varchar(30) NOT NULL, `business` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `recharge` -- LOCK TABLES `recharge` WRITE; /*!40000 ALTER TABLE `recharge` DISABLE KEYS */; /*!40000 ALTER TABLE `recharge` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `regions` -- DROP TABLE IF EXISTS `regions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `regions` ( `id` int(20) NOT NULL, `code` varchar(40) NOT NULL, `name` varchar(255) DEFAULT NULL, `description` text DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `regions` -- LOCK TABLES `regions` WRITE; /*!40000 ALTER TABLE `regions` DISABLE KEYS */; INSERT INTO `regions` VALUES (1,'1','Central','Central','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'2','Coast','Coast','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'3','Eastern','Eastern','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'4','Nairobi','Nairobi','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,'5','North Eastern','North Eastern','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,'6','Nyanza','Nyanza','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,'7','Rift valley','Rift valley','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'8','Western','Western','0000-00-00 00:00:00','0000-00-00 00:00:00'); /*!40000 ALTER TABLE `regions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `renewals` -- DROP TABLE IF EXISTS `renewals`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `renewals` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `invoice` text NOT NULL, `computerno` text NOT NULL, `fromdate` varchar(30) NOT NULL, `todate` varchar(30) DEFAULT NULL, `receiptno` varchar(50) NOT NULL, `duration` int(11) NOT NULL, `phone` varchar(20) DEFAULT NULL, `extensiontype` varchar(30) NOT NULL, `updatedid` int(11) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `renewals` -- LOCK TABLES `renewals` WRITE; /*!40000 ALTER TABLE `renewals` DISABLE KEYS */; /*!40000 ALTER TABLE `renewals` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rentalpaymentmethodes` -- DROP TABLE IF EXISTS `rentalpaymentmethodes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `rentalpaymentmethodes` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` text NOT NULL, `description` text NOT NULL, `status` varchar(10) NOT NULL DEFAULT 'active', `dateposted` varchar(30) NOT NULL, `userid` varchar(30) NOT NULL, `companyid` varchar(30) NOT NULL, `type` text NOT NULL, `balance` varchar(30) NOT NULL, `branchid` int(11) NOT NULL, `accountno` text DEFAULT NULL, `chargeid` int(20) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rentalpaymentmethodes` -- LOCK TABLES `rentalpaymentmethodes` WRITE; /*!40000 ALTER TABLE `rentalpaymentmethodes` DISABLE KEYS */; INSERT INTO `rentalpaymentmethodes` VALUES (1,'RENT','','active','2021-09-17 06:53:31','1','1','4161','',1,NULL,1),(2,'DEPOSIT','DEPOSIT','active','2021-09-17 06:53:51','1','1','4162','',1,NULL,2),(3,'WATER/POWER DEPOSIT','','active','2021-09-17 06:56:08','1','1','4163','',1,NULL,3),(4,'PENALTY','','active','2021-09-17 06:56:20','1','1','4164','',1,NULL,4),(5,'WATER','','active','2021-09-17 06:56:41','1','1','4165','',1,NULL,5),(6,'PARTIAL PAYMENT','','active','2021-09-17 06:57:00','1','1','4166','',1,NULL,6),(7,'GARBAGE','','active','2021-09-17 06:57:23','1','1','4167','',1,NULL,7),(8,'DAMAGES','','active','2021-09-17 06:57:35','1','1','4168','',1,NULL,8),(9,'AGREEMENT FORM','','active','2021-09-17 06:58:32','1','1','4169','',1,NULL,9),(10,'POWER','','active','2021-09-17 06:59:00','1','1','4171','',1,NULL,10),(11,'SEWAGE','SEWAGE','active','2021-09-17 06:59:30','1','1','4172','',1,NULL,11),(12,'BED ONLY','','active','2021-09-17 06:59:55','1','1','4173','',1,NULL,12),(13,'BED AND BREAKFAST','','active','2021-09-17 07:00:38','1','1','4174','',1,NULL,13),(14,'POWER','eee','active','2023-04-14 17:13:29','1','1','4167','',1,NULL,10),(15,'WATER','','active','2023-08-16 09:49:06','1','1','4165','',1,NULL,5),(16,'SERVICE CHARGE','','active','2023-09-01 11:11:46','1','1','4169','',1,NULL,19); /*!40000 ALTER TABLE `rentalpaymentmethodes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `report` -- DROP TABLE IF EXISTS `report`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `report` ( `id` int(50) NOT NULL AUTO_INCREMENT, `country` varchar(60) NOT NULL, `type` varchar(50) NOT NULL, `county` varchar(50) NOT NULL, `school` varchar(50) NOT NULL, `category` varchar(30) NOT NULL, `contact` varchar(60) NOT NULL, `place` varchar(60) NOT NULL, `occurancedate` varchar(60) NOT NULL, `description` text NOT NULL, `postedtime` varchar(60) NOT NULL, `userid` varchar(60) NOT NULL, `img_id` varchar(60) NOT NULL, `updatedtime` varchar(40) NOT NULL, `status` varchar(40) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `report` -- LOCK TABLES `report` WRITE; /*!40000 ALTER TABLE `report` DISABLE KEYS */; /*!40000 ALTER TABLE `report` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `requisition` -- DROP TABLE IF EXISTS `requisition`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `requisition` ( `id` int(30) NOT NULL AUTO_INCREMENT, `name` text NOT NULL, `orderdate` varchar(30) NOT NULL, `ordernumber` varchar(30) NOT NULL, `description` text NOT NULL, `userid` varchar(30) NOT NULL, `createdate` varchar(30) NOT NULL, `orderedby` text NOT NULL, `shippingto` text NOT NULL, `canceldate` varchar(30) NOT NULL, `deliverymethod` varchar(30) NOT NULL, `fob` text NOT NULL, `terms` text NOT NULL, `deliverydate` varchar(30) NOT NULL, `status` varchar(20) NOT NULL DEFAULT 'new', `amount` varchar(30) NOT NULL, `companyid` varchar(30) NOT NULL, `preparedby` varchar(30) NOT NULL, `taskid` varchar(30) NOT NULL DEFAULT 'No', `branchid` int(30) NOT NULL DEFAULT 1, `subtaskid` varchar(50) DEFAULT NULL, `invoice` varchar(50) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `requisition` -- LOCK TABLES `requisition` WRITE; /*!40000 ALTER TABLE `requisition` DISABLE KEYS */; /*!40000 ALTER TABLE `requisition` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `requisitionitems` -- DROP TABLE IF EXISTS `requisitionitems`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `requisitionitems` ( `id` int(30) NOT NULL AUTO_INCREMENT, `invoice` varchar(100) NOT NULL, `code` varchar(100) NOT NULL, `qty` varchar(100) NOT NULL, `amount` varchar(100) NOT NULL, `salestype` varchar(100) DEFAULT 'retail', `sprice` varchar(100) NOT NULL, `usedamount` varchar(100) NOT NULL, `dateposted` varchar(50) NOT NULL, `taskid` varchar(50) NOT NULL, `description` text NOT NULL, `user` varchar(50) NOT NULL, `bprice` varchar(50) NOT NULL, `type` varchar(50) NOT NULL DEFAULT 'cash', `tax` varchar(50) NOT NULL, `balance` varchar(50) NOT NULL, `customer` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `subtaskid` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `createdate` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), `maincategory` varchar(50) NOT NULL, `category` varchar(50) NOT NULL, `status` varchar(30) DEFAULT 'new', `branch` varchar(30) NOT NULL, `usedqty` varchar(20) DEFAULT NULL, `balanceqty` varchar(10) NOT NULL, `expamount` varchar(10) NOT NULL, `uom` varchar(50) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `requisitionitems` -- LOCK TABLES `requisitionitems` WRITE; /*!40000 ALTER TABLE `requisitionitems` DISABLE KEYS */; /*!40000 ALTER TABLE `requisitionitems` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rolepermissions` -- DROP TABLE IF EXISTS `rolepermissions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `rolepermissions` ( `moduleid` varchar(100) NOT NULL, `userid` int(10) NOT NULL, PRIMARY KEY (`moduleid`,`userid`), KEY `person_id` (`userid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rolepermissions` -- LOCK TABLES `rolepermissions` WRITE; /*!40000 ALTER TABLE `rolepermissions` DISABLE KEYS */; INSERT INTO `rolepermissions` VALUES ('accounting',5),('accountingreports',5),('bankdeposits',5),('banktransfer',5),('cashiersales',1),('cashiersales',2),('cashiersales',4),('cashiersales',8),('config',1),('incomeexpenses',1),('incomeexpenses',5),('incomingstock',1),('members',1),('password',1),('password',2),('password',4),('password',8),('productlist',1),('products',1),('productscategory',1),('profile',8),('reports',1),('sales',1),('sales',2),('sales',4),('sales',8),('sendsms',1),('users',1),('viewreturnsales',1),('viewreturnsales',4); /*!40000 ALTER TABLE `rolepermissions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `rolepermissionsactions` -- DROP TABLE IF EXISTS `rolepermissionsactions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `rolepermissionsactions` ( `id` int(11) NOT NULL AUTO_INCREMENT, `moduleid` varchar(100) NOT NULL, `userid` varchar(100) NOT NULL, `actionid` varchar(100) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=891 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `rolepermissionsactions` -- LOCK TABLES `rolepermissionsactions` WRITE; /*!40000 ALTER TABLE `rolepermissionsactions` DISABLE KEYS */; INSERT INTO `rolepermissionsactions` VALUES (1,'sales','4','add'),(2,'sales','4','suspend'),(3,'sales','4','printreceipt'),(4,'sales','4','update'),(5,'sales','4','cash'),(6,'sales','4','delete'),(7,'sales','4','moresales'),(8,'sales','4','sale'),(9,'sales','4','Logout'),(10,'sales','4','mpesabalance'),(11,'sales','4','discount'),(12,'sales','4','reprint'),(13,'sales','4','select'),(14,'sales','4','printbill'),(15,'sales','4','productdiscount'),(16,'sales','4','mpesa'),(17,'sales','4','order'),(18,'sales','4','closebill'),(19,'sales','4','viewbuyingprice'),(20,'sales','4','editsellingprice'),(21,'sales','4','updatepaymentmode'),(22,'sales','4','card'),(23,'sales','4','clearpayments'),(24,'sales','4','cheque'),(25,'sales','4','creditnote'),(26,'sales','4','voucher'),(27,'sales','4','salesbeyondbprice'),(28,'sales','4','points'),(29,'sales','4','credit'),(30,'sales','4','selectroom'),(31,'sales','4','dontprint'),(32,'sales','4','accountlimit'),(33,'sales','4','backdatesales'),(34,'sales','4','recordcoins'),(35,'sales','4','changetaxstatus'),(36,'sales','4','leaseitems'),(37,'sales','4','giveloyalityponts'),(38,'sales','4','dontshowstock'),(39,'sales','4','splitbill'),(40,'sales','4','changeuomonsales'),(41,'sales','4','selecttable'),(42,'sales','4','printdelivery'),(43,'sales','4','sendsms'),(44,'sales','4','selectcurrency'),(45,'sales','4','salesperson'),(46,'sales','4','usekeyboard'),(47,'sales','4','receiptno'),(48,'sales','4','negativesales'),(49,'cashiersales','4','entermpesacode'),(50,'cashiersales','4','editmpesa'),(51,'cashiersales','4','all'),(52,'cashiersales','4','delete'),(53,'cashiersales','4','cashiersales'),(54,'cashiersales','4','editmpesadate'),(55,'cashiersales','4','dontshowtotal'),(56,'cashiersales','4','adddailycollection'),(57,'cashiersales','4','viewtill'),(58,'cashiersales','4','viewdailycollections'),(59,'cashiersales','4','deletedailycollections'),(60,'cashiersales','4','updatedailycollections'),(61,'cashiersales','4','reversempesa'),(62,'cashiersales','4','clearallsales'),(63,'cashiersales','4','viewallcollections'),(64,'cashiersales','4','viewallcounters'),(65,'cashiersales','4','mpesapendingreport'),(66,'cashiersales','4','mpesaverifiedreport'),(67,'cashiersales','4','viewcommission'),(68,'cashiersales','4','viewmpesamessages'),(69,'cashiersales','4','dailysalesonly'),(70,'viewreturnsales','4','add'),(71,'viewreturnsales','4','update'),(72,'viewreturnsales','4','delete'),(73,'viewreturnsales','4','return'),(74,'viewreturnsales','4','clear'),(75,'viewreturnsales','4','moresales'),(76,'password','4','change'),(77,'sales','8','add'),(78,'sales','8','suspend'),(79,'sales','8','update'),(80,'sales','8','cash'),(81,'sales','8','moresales'),(82,'sales','8','sale'),(83,'sales','8','Logout'),(84,'sales','8','displaycustomers'),(85,'sales','8','select'),(86,'sales','8','printbill'),(87,'sales','8','productdiscount'),(88,'sales','8','mpesa'),(89,'sales','8','order'),(90,'sales','8','closebill'),(91,'sales','8','viewbuyingprice'),(92,'sales','8','editsellingprice'),(93,'sales','8','updatepaymentmode'),(94,'sales','8','card'),(95,'sales','8','clearpayments'),(96,'sales','8','cheque'),(97,'sales','8','creditnote'),(98,'sales','8','voucher'),(99,'sales','8','salesbeyondbprice'),(100,'sales','8','points'),(101,'sales','8','credit'),(102,'sales','8','selectroom'),(103,'sales','8','dontprint'),(104,'sales','8','backdatesales'),(105,'sales','8','recordcoins'),(106,'sales','8','changetaxstatus'),(107,'sales','8','giveloyalityponts'),(108,'sales','8','dontshowstock'),(109,'sales','8','splitbill'),(110,'sales','8','changeuomonsales'),(111,'sales','8','selecttable'),(112,'sales','8','printdelivery'),(113,'sales','8','sendsms'),(114,'sales','8','selectcurrency'),(115,'sales','8','salesperson'),(116,'sales','8','usekeyboard'),(117,'sales','8','receiptno'),(118,'cashiersales','8','entermpesacode'),(119,'cashiersales','8','editmpesa'),(120,'cashiersales','8','all'),(121,'cashiersales','8','cashiersales'),(122,'cashiersales','8','editmpesadate'),(123,'cashiersales','8','dontshowtotal'),(124,'cashiersales','8','viewtill'),(125,'cashiersales','8','viewdailycollections'),(126,'cashiersales','8','updatedailycollections'),(127,'cashiersales','8','viewallcounters'),(128,'cashiersales','8','viewcommission'),(129,'cashiersales','8','viewmpesamessages'),(130,'cashiersales','8','dailysalesonly'),(131,'password','8','change'),(132,'profile','8','update'),(512,'incomeexpenses','5','add'),(513,'incomeexpenses','5','closeexpense'),(514,'incomeexpenses','5','update'),(515,'incomeexpenses','5','updateclosedexpenses'),(516,'incomeexpenses','5','wiewinvoices'),(517,'incomeexpenses','5','viewbills'),(518,'incomeexpenses','5','viewexpense'),(519,'incomeexpenses','5','viewdebtors'),(520,'incomeexpenses','5','viewcreditors'),(521,'incomeexpenses','5','postrentalexpenses'),(522,'accounting','5','deletebank'),(523,'accounting','5','deleteglaccount'),(524,'accounting','5','view'),(525,'bankdeposits','5','add'),(526,'bankdeposits','5','update'),(527,'bankdeposits','5','delete'),(528,'banktransfer','5','add'),(529,'accountingreports','5','view'),(530,'sales','1','add'),(531,'sales','1','printreceipt'),(532,'sales','1','suspend'),(533,'sales','1','update'),(534,'sales','1','delete'),(535,'sales','1','cash'),(536,'sales','1','moresales'),(537,'sales','1','sale'),(538,'sales','1','Logout'),(539,'sales','1','mpesabalance'),(540,'sales','1','select'),(541,'sales','1','reprint'),(542,'sales','1','discount'),(543,'sales','1','productdiscount'),(544,'sales','1','printbill'),(545,'sales','1','mpesa'),(546,'sales','1','closebill'),(547,'sales','1','card'),(548,'sales','1','viewbuyingprice'),(549,'sales','1','updatepaymentmode'),(550,'sales','1','editsellingprice'),(551,'sales','1','clearpayments'),(552,'sales','1','cheque'),(553,'sales','1','creditnote'),(554,'sales','1','voucher'),(555,'sales','1','points'),(556,'sales','1','salesbeyondbprice'),(557,'sales','1','dontprint'),(558,'sales','1','entermpesacode'),(559,'sales','1','updateqtysales'),(560,'cashiersales','1','entermpesacode'),(561,'cashiersales','1','editmpesa'),(562,'cashiersales','1','all'),(563,'cashiersales','1','delete'),(564,'cashiersales','1','cashiersales'),(565,'cashiersales','1','editmpesadate'),(566,'cashiersales','1','adddailycollection'),(567,'cashiersales','1','viewtill'),(568,'cashiersales','1','viewdailycollections'),(569,'cashiersales','1','updatedailycollections'),(570,'cashiersales','1','reversempesa'),(571,'cashiersales','1','deletedailycollections'),(572,'cashiersales','1','clearallsales'),(573,'cashiersales','1','viewallcollections'),(574,'cashiersales','1','mpesapendingreport'),(575,'cashiersales','1','viewallcounters'),(576,'cashiersales','1','mpesaverifiedreport'),(577,'cashiersales','1','viewcommission'),(578,'cashiersales','1','viewmpesamessages'),(579,'viewreturnsales','1','add'),(580,'viewreturnsales','1','update'),(581,'viewreturnsales','1','delete'),(582,'viewreturnsales','1','return'),(583,'viewreturnsales','1','clear'),(584,'viewreturnsales','1','moresales'),(585,'incomeexpenses','1','add'),(586,'incomeexpenses','1','closeexpense'),(587,'incomeexpenses','1','update'),(588,'incomeexpenses','1','updateclosedexpenses'),(589,'incomeexpenses','1','wiewinvoices'),(590,'incomeexpenses','1','viewexpense'),(591,'incomeexpenses','1','viewbills'),(592,'incomeexpenses','1','viewdebtors'),(593,'incomeexpenses','1','viewcreditors'),(594,'incomeexpenses','1','postrentalexpenses'),(595,'members','1','add'),(596,'members','1','update'),(597,'members','1','deletepeople'),(598,'members','1','opencloseshift'),(599,'users','1','add'),(600,'users','1','update'),(601,'users','1','delete'),(602,'users','1','deleteallroles'),(603,'productscategory','1','add'),(604,'productscategory','1','update'),(605,'productscategory','1','delete'),(606,'productlist','1','bulk'),(607,'productlist','1','updatestock'),(608,'productlist','1','move'),(609,'productlist','1','more'),(610,'productlist','1','transfer'),(611,'productlist','1','addstock'),(612,'productlist','1','delete'),(613,'productlist','1','view'),(614,'productlist','1','update'),(615,'productlist','1','add'),(616,'productlist','1','openclosestock'),(617,'productlist','1','stocktaking'),(618,'productlist','1','editstocktaken'),(619,'productlist','1','editopenclosestock'),(620,'productlist','1','viewserials'),(621,'productlist','1','changeserialstatus'),(622,'productlist','1','viewproductsfromallbranches'),(623,'productlist','1','bulkpriceupdate'),(624,'productlist','1','negativestockadjustment'),(625,'products','1','add'),(626,'products','1','update'),(627,'products','1','delete'),(628,'products','1','more'),(629,'products','1','addstock'),(630,'products','1','deleteorder'),(631,'products','1','bulk'),(632,'products','1','dispatch'),(633,'products','1','removestock'),(634,'products','1','price'),(635,'products','1','removeallstock'),(636,'products','1','bulkpriceupdate'),(637,'products','1','negativestockadjustment'),(638,'incomingstock','1','add'),(639,'incomingstock','1','update'),(640,'incomingstock','1','view'),(641,'incomingstock','1','delete'),(642,'reports','1','view'),(643,'reports','1','download'),(644,'reports','1','delete'),(645,'reports','1','update'),(646,'reports','1','viewall'),(647,'sendsms','1','add'),(648,'sendsms','1','update'),(649,'sendsms','1','delete'),(650,'sendsms','1','transfersms'),(651,'password','1','change'),(652,'config','1','delete'),(653,'config','1','add'),(654,'config','1','update'),(860,'sales','2','add'),(861,'sales','2','suspend'),(862,'sales','2','update'),(863,'sales','2','cash'),(864,'sales','2','moresales'),(865,'sales','2','sale'),(866,'sales','2','printbill'),(867,'sales','2','mpesa'),(868,'sales','2','order'),(869,'sales','2','closebill'),(870,'sales','2','card'),(871,'sales','2','updatepaymentmode'),(872,'sales','2','clearpayments'),(873,'sales','2','cheque'),(874,'sales','2','voucher'),(875,'cashiersales','2','entermpesacode'),(876,'cashiersales','2','editmpesa'),(877,'cashiersales','2','all'),(878,'cashiersales','2','cashiersales'),(879,'cashiersales','2','editmpesadate'),(880,'cashiersales','2','adddailycollection'),(881,'cashiersales','2','viewtill'),(882,'cashiersales','2','viewdailycollections'),(883,'cashiersales','2','updatedailycollections'),(884,'cashiersales','2','mpesapendingreport'),(885,'cashiersales','2','viewallcounters'),(886,'cashiersales','2','mpesaverifiedreport'),(887,'cashiersales','2','viewcommission'),(888,'cashiersales','2','dailysalesonly'),(889,'cashiersales','2','viewmpesamessages'),(890,'password','2','change'); /*!40000 ALTER TABLE `rolepermissionsactions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `roles` -- DROP TABLE IF EXISTS `roles`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `roles` ( `id` int(20) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `invoice` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `roles` -- LOCK TABLES `roles` WRITE; /*!40000 ALTER TABLE `roles` DISABLE KEYS */; INSERT INTO `roles` VALUES (1,'pms','xxxx','2023-03-27 09:50:23','active','1','','1',''); /*!40000 ALTER TABLE `roles` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `roomcharges` -- DROP TABLE IF EXISTS `roomcharges`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `roomcharges` ( `id` int(11) NOT NULL AUTO_INCREMENT, `roomid` varchar(40) NOT NULL, `plotno` varchar(100) NOT NULL, `cost` varchar(100) NOT NULL, `status` varchar(40) NOT NULL DEFAULT 'active', `createdat` varchar(100) NOT NULL, `updatedat` varchar(100) NOT NULL, `userid` varchar(100) NOT NULL, `name` varchar(50) NOT NULL, `companyid` varchar(30) NOT NULL, `chargeid` varchar(30) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `roomid` (`roomid`,`plotno`,`chargeid`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `roomcharges` -- LOCK TABLES `roomcharges` WRITE; /*!40000 ALTER TABLE `roomcharges` DISABLE KEYS */; /*!40000 ALTER TABLE `roomcharges` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `roomcollection` -- DROP TABLE IF EXISTS `roomcollection`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `roomcollection` ( `id` int(11) NOT NULL AUTO_INCREMENT, `paiddate` varchar(100) NOT NULL, `invoice` varchar(100) NOT NULL, `amount` varchar(100) NOT NULL, `remarks` varchar(100) NOT NULL, `balance` varchar(30) NOT NULL, `userid` varchar(20) NOT NULL, `companyid` varchar(20) NOT NULL, `paymentmethodes` int(10) NOT NULL, `createdate` varchar(50) NOT NULL, `name` varchar(30) NOT NULL DEFAULT 'payment', `transactioncode` varchar(50) NOT NULL, `supplier` int(11) DEFAULT NULL, `branchid` int(11) DEFAULT 1, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `roomcollection` -- LOCK TABLES `roomcollection` WRITE; /*!40000 ALTER TABLE `roomcollection` DISABLE KEYS */; /*!40000 ALTER TABLE `roomcollection` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `roomsales` -- DROP TABLE IF EXISTS `roomsales`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `roomsales` ( `id` int(11) NOT NULL AUTO_INCREMENT, `plotno` int(11) NOT NULL, `houseno` varchar(20) NOT NULL, `customerid` int(20) DEFAULT NULL, `dateposted` varchar(30) NOT NULL, `total` decimal(10,2) NOT NULL, `userid` int(20) NOT NULL, `companyid` int(10) NOT NULL, `status` varchar(20) NOT NULL DEFAULT 'New', `description` text NOT NULL, `updatedat` varchar(30) DEFAULT NULL, `updatedby` int(11) DEFAULT NULL, `branch` int(11) NOT NULL, `invoice` varchar(50) NOT NULL, `transactioncode` varchar(50) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `roomsales` -- LOCK TABLES `roomsales` WRITE; /*!40000 ALTER TABLE `roomsales` DISABLE KEYS */; /*!40000 ALTER TABLE `roomsales` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `salary` -- DROP TABLE IF EXISTS `salary`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `salary` ( `id` int(20) NOT NULL AUTO_INCREMENT, `userid` int(20) NOT NULL, `companyid` int(15) NOT NULL, `salary` decimal(10,2) NOT NULL, `pay` decimal(10,2) NOT NULL, `deductions` decimal(10,2) NOT NULL, `bonus` decimal(10,2) NOT NULL, `bankname` varchar(20) NOT NULL, `bankaccount` varchar(30) NOT NULL, `method` varchar(20) NOT NULL, `payment` varchar(20) NOT NULL, `netsalry` decimal(10,2) NOT NULL, `gross` decimal(10,2) NOT NULL, `memberid` int(11) NOT NULL, `salaryyear` varchar(20) NOT NULL, `paymentmode` varchar(30) NOT NULL, `slarymonth` varchar(20) NOT NULL, `number` varchar(20) NOT NULL, `createdate` varchar(30) NOT NULL, `relief` decimal(10,2) NOT NULL, `salaryid` varchar(100) NOT NULL, `branchid` int(11) NOT NULL DEFAULT 1, `loanbalance` decimal(10,2) NOT NULL, `nhif` int(20) DEFAULT NULL, `nssf` varchar(20) DEFAULT NULL, `paye` varchar(20) DEFAULT NULL, `advance` varchar(20) DEFAULT NULL, `otherdeductions` varchar(20) DEFAULT NULL, `currency` varchar(20) DEFAULT NULL, `transactiontypecode` varchar(20) DEFAULT NULL, `chargetype` varchar(20) DEFAULT NULL, `paymenttype` varchar(20) NOT NULL, `nhifrelief` decimal(10,2) NOT NULL, `houselevy` varchar(20) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `salary` -- LOCK TABLES `salary` WRITE; /*!40000 ALTER TABLE `salary` DISABLE KEYS */; INSERT INTO `salary` VALUES (1,1,1,25000.00,0.00,1497.50,0.00,'KCB','2412423','1','Daily',23502.50,25000.00,1,'2023','Daily','Janaury','0222222','2023-11-01 06:36:15',2400.00,'111698809775',1,0.00,850,'200','72.5',NULL,NULL,NULL,NULL,NULL,'',127.50,'375'),(2,1,1,0.00,0.00,0.00,0.00,'','','','',0.00,0.00,12,'2023','','February','','2023-11-01 06:50:17',2400.00,'111698810617',1,0.00,0,'0','0',NULL,NULL,NULL,NULL,NULL,'',0.00,'0'),(3,1,1,0.00,0.00,0.00,0.00,'','','','',0.00,0.00,6,'2023','','February','','2023-11-01 06:50:17',2400.00,'111698810617',1,0.00,0,'0','0',NULL,NULL,NULL,NULL,NULL,'',0.00,'0'),(4,1,1,25000.00,0.00,1497.50,0.00,'KCB','2412423','1','Daily',23502.50,25000.00,1,'2023','Daily','February','0222222','2023-11-01 06:50:17',2400.00,'111698810617',1,0.00,850,'200','72.5',NULL,NULL,NULL,NULL,NULL,'',127.50,'375'); /*!40000 ALTER TABLE `salary` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `salarycharges` -- DROP TABLE IF EXISTS `salarycharges`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `salarycharges` ( `id` int(20) NOT NULL AUTO_INCREMENT, `code` int(20) NOT NULL, `name` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'Active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `category` varchar(20) NOT NULL DEFAULT 'Minus', `amountmode` varchar(20) NOT NULL, `qtymode` varchar(20) NOT NULL, `quantity` decimal(10,2) NOT NULL, `amount` decimal(10,2) NOT NULL, `unit` varchar(50) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `salarycharges` -- LOCK TABLES `salarycharges` WRITE; /*!40000 ALTER TABLE `salarycharges` DISABLE KEYS */; INSERT INTO `salarycharges` VALUES (6,2,'House Allowance','2019-03-28 12:47:59','Active','1','','1','Pay','Fixed','Fixed',1.00,0.00,''),(7,3,'Overtime','2019-03-28 12:48:27','Active','1','','1','Pay','Fixed','Fixed',1.00,0.00,''),(8,4,'Travel Allowance','2019-03-28 12:48:59','Active','1','','1','Pay','Variable','Variable',1.00,0.00,''),(9,5,'Bonus','2019-03-28 12:49:21','Active','1','','1','Pay','Variable','Variable',1.00,0.00,''),(10,6,'Allowance','2019-03-28 12:50:16','Active','1','','1','Pay','Variable','Variable',1.00,0.00,''),(11,7,'Appreciation','2019-03-28 12:50:45','Active','1','','1','Pay','Variable','Variable',1.00,0.00,''),(12,8,'PAYE','2019-03-28 12:51:21','Active','1','','1','Deduction','Fixed','Fixed',1.00,0.00,''),(13,9,'NSSF','2019-03-28 12:51:38','Active','1','','1','Deduction','Fixed','Fixed',1.00,0.00,''),(14,10,'NHIF','2019-03-28 12:52:09','Active','1','','1','Deduction','Fixed','Fixed',1.00,0.00,''),(15,11,'Advances','2019-03-28 13:00:47','Active','1','','1','Deduction','Variable','Variable',1.00,0.00,''),(16,12,'Loan payment','2019-03-28 13:03:14','Active','1','','1','Deduction','Variable','Variable',1.00,0.00,''),(18,14,'destruction','2019-03-28 13:04:59','Active','1','','1','Deduction','Variable','Variable',1.00,0.00,''),(19,15,'Loan','2019-06-11 13:31:04','Active','1','','1','Pay','Variable','Fixed',1.00,0.00,''),(20,26,'staff Uniforms','2023-05-15 08:38:23','Active','1','','1','Deduction','Fixed','Fixed',1.00,0.00,''),(21,16,'Helb / Sacco Loan ','2019-12-17 04:55:20','Active','1','','1','Deduction','Variable','Variable',1.00,0.00,''),(22,25,'LOST/DAMAGED ITEM','2023-05-15 08:38:05','Active','1','','1','Deduction','Variable','Fixed',1.00,900.00,''),(23,18,'sales cut ','2020-12-15 19:06:21','Active','1','','1','Deduction','Variable','Variable',1.00,0.00,''),(24,19,'UNPAID LEAVE DAYS','2021-04-05 10:49:16','Active','1','','1','Deduction','Variable','Fixed',1.00,0.00,''),(25,20,'DEDUCTION','2021-04-05 10:49:55','Active','1','','1','Deduction','Fixed','Variable',1.00,0.00,''),(26,21,'Insurance cover ','2022-02-04 10:16:25','Active','1','','1','Deduction','Variable','Fixed',1.00,0.00,''),(27,22,'PERFORMANCE PAY CUT','2023-01-23 12:04:28','Active','1','','1','Deduction','Fixed','Fixed',1.00,0.00,''),(28,23,'SALES COMMISSION','2023-03-02 09:44:12','Active','1','','1','Pay','Variable','Fixed',1.00,0.00,''),(29,24,'staff uniform shirts','2023-04-03 16:29:31','Active','1','','1','Deduction','Fixed','Fixed',1.00,0.00,'1'),(30,2005,'House Levy','2023-09-02 08:12:42','Active','1','','1','Deduction','Fixed','Fixed',1.00,0.00,'1.5'); /*!40000 ALTER TABLE `salarycharges` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales` -- DROP TABLE IF EXISTS `sales`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `sales` ( `id` int(11) NOT NULL AUTO_INCREMENT, `cashier` varchar(100) NOT NULL, `type` varchar(100) NOT NULL, `amount` varchar(100) NOT NULL, `due_date` varchar(100) NOT NULL, `name` varchar(100) NOT NULL, `balance` varchar(20) NOT NULL DEFAULT '0', `userid` varchar(50) NOT NULL, `dateposted` varchar(50) NOT NULL, `customer` varchar(50) DEFAULT NULL, `cash` varchar(50) NOT NULL, `total` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `salestype` varchar(50) NOT NULL, `maindiscount` varchar(20) DEFAULT NULL, `discountedtotal` varchar(20) NOT NULL, `branch` varchar(30) NOT NULL DEFAULT '1', `card` varchar(30) NOT NULL, `voucher` varchar(30) NOT NULL, `credit` varchar(30) NOT NULL, `points` varchar(30) NOT NULL, `mpesa` varchar(50) NOT NULL, `cheque` varchar(50) NOT NULL, `ordersales` varchar(20) DEFAULT 'printed', `description` text NOT NULL, `mytable` varchar(30) NOT NULL, `maincategory` varchar(30) DEFAULT NULL, `creditnote` varchar(30) NOT NULL, `invoice` varchar(30) NOT NULL, `paymentstatus` varchar(10) NOT NULL DEFAULT 'No', `updatedby` varchar(10) NOT NULL, `updatedat` varchar(50) NOT NULL, `plotno` varchar(20) NOT NULL, `houseno` varchar(20) NOT NULL, `baddebt` varchar(30) NOT NULL, `tax1` varchar(30) NOT NULL, `tax2` varchar(30) NOT NULL, `cardnumber` varchar(50) DEFAULT NULL, `savedcoins` decimal(10,2) NOT NULL, `savedpoints` decimal(10,2) NOT NULL, `salesperson` int(11) DEFAULT NULL, `receiptno` varchar(50) DEFAULT NULL, `change` varchar(20) DEFAULT NULL, `currency` varchar(50) DEFAULT NULL, `othercurrency` varchar(20) DEFAULT NULL, `othercurrencyamount` decimal(10,2) DEFAULT NULL, `tocurrencyamount` decimal(10,2) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4030 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sales` -- LOCK TABLES `sales` WRITE; /*!40000 ALTER TABLE `sales` DISABLE KEYS */; INSERT INTO `sales` VALUES (1,'Mh2e','Mpesa','','2023-02-05 15:03:43','','0','3','2023-02-05 15:03:43','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed',' ','1','','0','31675598621','Cleared','3','2023-02-05 16:17:21','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2,'','Cash','','2023-02-05 15:07:40','','0','4','2023-02-05 15:07:40','','0','0','1','retail','0','1320','1','0','0','0','0','0','0','new',' ','','','0','41675598810','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3,'12ji2','Mpesa','','2023-02-05 15:12:16','','0','4','2023-02-05 15:12:16','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','3','','0','41675599135','Cleared','4','2023-02-05 15:17:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(4,'ow1c','Mpesa','','2023-02-05 15:16:07','','0','4','2023-02-05 15:16:07','','0','1120','1','retail','0','1120','1','0','0','0','0','1120','0','printed',' ','4','','0','41675599327','Cleared','4','2023-02-05 15:19:00','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(5,'','Voucher','','2023-02-05 15:27:46','','0','4','2023-02-05 15:27:46','','0','400','1','retail','0','400','1','0','400','0','0','0','0','printed',' ','cleaners','','0','41675600059','Cleared','4','2023-02-05 15:29:35','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(6,'','Voucher','','2023-02-05 15:31:01','','0','4','2023-02-05 15:31:01','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed',' ','Manager','','0','41675600259','Cleared','4','2023-02-05 15:34:17','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(7,'lx7q','Mpesa','','2023-02-05 16:04:03','','0','4','2023-02-05 16:04:03','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed',' ','7','','0','41675602242','Cleared','4','2023-02-05 16:36:42','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(8,'a835','Mpesa','','2023-02-05 16:18:30','','0','3','2023-02-05 16:18:30','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','8','','0','31675603108','Cleared','3','2023-02-05 16:25:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(9,'1GMH','Cash','','2023-02-05 17:20:45','','0','4','2023-02-05 17:20:45','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','9','','0','41675606835','Cleared','4','2023-02-05 18:05:40','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(10,'Z9AE','Mpesa','','2023-02-05 17:54:40','','0','3','2023-02-05 17:54:40','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','10','','0','31675608878','Cleared','3','2023-02-05 18:03:37','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(11,'','Voucher','','2023-02-05 18:29:40','','0','3','2023-02-05 18:29:40','2','0','1250','1','retail','0','1250','1','0','1250','0','0','0','0','printed',' ','EVERLYN','','0','31675610944','Cleared','3','2023-02-05 20:37:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(12,'','Voucher','','2023-02-06 09:18:08','','0','3','2023-02-06 09:18:08','','0','400','1','retail','0','400','1','0','400','0','0','0','0','printed',' ','guards','','0','31675664235','Cleared','3','2023-02-06 09:19:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(13,'','Cash','','2023-02-06 10:05:56','','0','3','2023-02-06 10:05:56','','250','250','1','retail','0','250','1','0','0','0','0','0','0','new',' ','','','0','31675667154','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(14,'y8yu','Mpesa','','2023-02-06 10:52:40','','0','3','2023-02-06 10:52:40','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','14','','0','31675669959','Cleared','3','2023-02-06 12:02:12','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(15,'','Cash','','2023-02-06 11:28:10','','0','3','2023-02-06 11:11:02','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed',' ','15','','0','31675671049','Cleared','3','2023-02-06 12:00:10','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(16,'nimd','Mpesa','','2023-02-06 11:52:52','','0','4','2023-02-06 11:52:52','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','16','','0','41675673571','Cleared','4','2023-02-06 12:16:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(17,'9bva','Mpesa','','2023-02-06 11:56:02','','0','3','2023-02-06 11:56:02','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','17','','0','31675673761','Cleared','3','2023-02-06 12:55:16','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(18,'1ry71','Mpesa','','2023-02-06 16:47:03','','0','4','2023-02-06 16:47:03','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','18','','0','41675691222','Cleared','4','2023-02-06 17:07:36','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(19,'1ry7','Mpesa','','2023-02-06 17:01:06','','0','4','2023-02-06 17:01:06','','0','10','1','retail','0','10','1','0','0','0','0','10','0','printed',' ','19','','0','41675692064','Cleared','4','2023-02-06 17:09:11','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(20,'k3ge','Mpesa','','2023-02-06 18:25:23','','0','4','2023-02-06 18:25:23','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed',' ','20','','0','41675697121','Cleared','4','2023-02-06 20:06:37','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(21,'zvo0','Mpesa','','2023-02-06 19:24:42','','0','4','2023-02-06 19:24:42','','0','550','1','retail','0','550','1','0','0','0','0','550','0','printed',' ','21','','0','41675700665','Cleared','4','2023-02-06 21:06:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(22,'j4yp','Mpesa','','2023-02-06 20:30:00','','0','4','2023-02-06 20:30:00','','0','850','1','retail','0','850','1','0','0','0','0','850','0','printed',' ','22','','0','41675704570','Cleared','4','2023-02-06 21:03:35','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(23,'j4yp','Mpesa','','2023-02-06 20:30:58','','0','4','2023-02-06 20:30:58','','0','20','1','retail','0','20','1','0','0','0','0','20','0','printed',' ','23','','0','41675704651','Cleared','4','2023-02-06 21:01:56','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(24,'b67c','Mpesa','','2023-02-06 20:35:40','','0','4','2023-02-06 20:35:40','','0','4200','1','retail','0','4200','1','0','0','0','0','4200','0','printed',' ','Evelyn ','','0','41675704833','Cleared','4','2023-02-06 20:45:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(25,'','Voucher','','2023-02-06 21:07:52','','0','4','2023-02-06 21:07:52','','0','330','1','retail','0','330','1','0','330','0','0','0','0','printed',' ','evelyn','','0','41675706871','Cleared','4','2023-02-06 21:09:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(26,'','Voucher','','2023-02-07 10:43:44','','0','4','2023-02-07 10:43:44','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed',' ','guards','','0','41675755822','Cleared','4','2023-02-07 10:45:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(27,'bque','Mpesa','','2023-02-07 14:36:54','','0','4','2023-02-07 14:36:54','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed',' ','27','','0','41675769812','Cleared','4','2023-02-07 14:46:24','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(28,'','Voucher','','2023-02-07 14:56:48','','0','4','2023-02-07 14:56:48','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed',' ','Martin','','0','41675771006','Cleared','4','2023-02-07 14:58:34','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(29,'','Voucher','','2023-02-07 17:43:37','','0','4','2023-02-07 17:43:37','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed',' ','evelyn','','0','41675781016','Cleared','4','2023-02-07 17:44:17','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(30,'','Voucher','','2023-02-07 17:44:37','','0','4','2023-02-07 17:44:37','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed',' ','Manager ','','0','41675781075','Cleared','4','2023-02-07 17:45:39','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(31,'Msj7','Mpesa','','2023-02-07 18:24:35','','0','4','2023-02-07 18:24:35','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','31','','0','41675783474','Cleared','4','2023-02-07 19:11:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(32,'rfzo','Mpesa','','2023-02-07 19:11:56','','0','4','2023-02-07 19:11:56','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','32','','0','41675786314','Cleared','4','2023-02-07 21:07:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(33,'','Cash','','2023-02-07 19:56:59','','0','4','2023-02-07 19:56:59','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','33','','0','41675789018','Cleared','4','2023-02-07 20:01:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(34,'rfzo','Mpesa','','2023-02-07 20:25:29','','0','4','2023-02-07 20:25:29','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','34','','0','41675790727','Cleared','4','2023-02-07 21:08:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(35,'rfzo','Mpesa','','2023-02-07 20:47:41','','0','4','2023-02-07 20:47:41','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','35','','0','41675792060','Cleared','4','2023-02-07 21:09:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(36,'uytm','Mpesa','','2023-02-07 21:03:25','','0','4','2023-02-07 21:03:25','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed',' ','36','','0','41675793003','Cleared','4','2023-02-07 21:11:56','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(37,'uytm','Mpesa','','2023-02-07 21:04:25','','0','4','2023-02-07 21:04:25','','0','10','1','retail','0','10','1','0','0','0','0','10','0','printed',' ','37','','0','41675793064','Cleared','4','2023-02-07 21:12:59','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(38,'p4y8','Mpesa','','2023-02-08 11:07:39','','0','3','2023-02-08 11:07:39','','0','210','1','retail','0','210','1','0','0','0','0','210','0','printed',' ','38','','0','31675843646','Cleared','3','2023-02-08 15:36:15','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(39,'p58g','Mpesa','','2023-02-08 11:52:18','','0','3','2023-02-08 11:52:18','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','39','','0','31675846334','Cleared','3','2023-02-08 15:37:17','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(40,'7hei','Mpesa','','2023-02-08 13:55:34','','0','3','2023-02-08 13:55:34','','0','210','1','retail','0','210','1','0','0','0','0','210','0','printed',' ','40','','0','31675853706','Cleared','3','2023-02-08 15:39:33','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(41,'h45q','Cash','','2023-02-08 14:22:16','','0','3','2023-02-08 14:22:16','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','41','','0','31675855333','Cleared','3','2023-02-08 20:28:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(42,'','Cash','','2023-02-08 15:57:59','','0','3','2023-02-08 15:57:59','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','42','','0','31675861077','Cleared','3','2023-02-08 20:26:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(43,'h45q','Cash','','2023-02-08 15:59:29','','0','3','2023-02-08 15:59:29','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','43','','0','31675861166','Cleared','3','2023-02-08 20:26:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(44,'h45q','Mpesa','','2023-02-08 16:13:39','','0','3','2023-02-08 16:13:39','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed',' ','44','','0','31675862017','Cleared','3','2023-02-08 17:50:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(45,'','Voucher','','2023-02-08 18:59:54','','0','3','2023-02-08 17:51:30','','0','600','1','retail','0','600','1','0','600','0','0','0','0','printed',' ','Martin','','0','31675867889','Cleared','3','2023-02-08 20:30:57','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(46,'','Voucher','','2023-02-08 18:36:09','','0','3','2023-02-08 18:36:09','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed',' ','46','','0','31675870568','Cleared','3','2023-02-08 18:37:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(47,'','Cash','','2023-02-08 19:01:11','','0','3','2023-02-08 18:38:21','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','47','','0','31675870696','Cleared','3','2023-02-08 20:29:47','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(48,'Mtb6','Mpesa','','2023-02-08 19:31:15','','0','3','2023-02-08 19:31:15','','0','450','1','retail','0','450','1','0','0','0','0','450','0','printed',' ','48','','0','31675873860','Cleared','3','2023-02-08 20:23:49','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(49,'5guf','Mpesa','','2023-02-08 21:02:53','','0','3','2023-02-08 20:41:43','','0','720','1','retail','0','720','1','0','0','0','0','720','0','printed',' ','49','','0','31675877524','Cleared','3','2023-02-08 21:13:42','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(50,'','Voucher','','2023-02-08 21:03:30','','0','3','2023-02-08 21:03:30','','0','500','1','retail','0','500','1','0','500','0','0','0','0','printed',' ','Martin & Cedrick','','0','31675879405','Cleared','3','2023-02-08 21:05:04','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(51,'','Voucher','','2023-02-08 21:08:01','','0','3','2023-02-08 21:08:01','','0','1400','1','retail','0','1400','1','0','1400','0','0','0','0','printed',' ','Guards','','0','31675879621','Cleared','3','2023-02-08 21:11:47','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(52,'','Voucher','','2023-02-08 21:15:57','','0','3','2023-02-08 21:15:57','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed',' ','izac','','0','31675880156','Cleared','3','2023-02-08 21:16:49','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(53,'','Cash','','2023-02-09 11:01:07','','0','3','2023-02-09 11:01:07','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','53','','0','31675929665','Cleared','3','2023-02-09 13:02:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(54,'sf19','Mpesa','','2023-02-09 13:00:04','','0','3','2023-02-09 13:00:04','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','54','','0','31675936802','Cleared','3','2023-02-09 13:01:12','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(55,'','Cash','','2023-02-09 13:16:09','','0','4','2023-02-09 13:16:09','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','55','','0','41675937752','Cleared','4','2023-02-09 13:58:45','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(56,'5945','Mpesa','','2023-02-09 13:40:50','','0','3','2023-02-09 13:40:50','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','56','','0','31675939248','Cleared','3','2023-02-09 16:43:33','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(57,'','Cash','','2023-02-09 13:48:08','','0','4','2023-02-09 13:48:08','','160','160','1','retail','0','160','1','0','0','0','0','0','0','printed',' ','57','','0','41675939678','Cleared','4','2023-02-09 13:59:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(58,'c55d','Mpesa','','2023-02-09 15:55:20','','0','4','2023-02-09 15:55:20','','0','210','1','retail','0','210','1','0','0','0','0','210','0','printed',' ','58','','0','41675947294','Cleared','4','2023-02-09 15:57:07','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(59,'','Cash','','2023-02-09 18:32:40','','0','4','2023-02-09 18:32:40','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','59','','0','41675956759','Cleared','4','2023-02-09 20:21:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(60,'','Cash','','2023-02-09 18:46:47','','60','4','2023-02-09 18:46:47','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','60','','0','41675957606','Cleared','4','2023-02-09 20:22:23','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(61,'','Cash','','2023-02-09 20:20:29','','0','4','2023-02-09 20:20:29','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','61','','0','41675963228','Cleared','4','2023-02-09 20:22:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(62,'fgiq','Mpesa','','2023-02-09 20:55:33','','0','4','2023-02-09 20:55:33','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','62','','0','41675965332','Cleared','4','2023-02-09 21:34:35','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(63,'fgiq','Mpesa','','2023-02-09 21:25:54','','0','4','2023-02-09 21:25:54','','0','210','1','retail','0','210','1','0','0','0','0','210','0','printed',' ','63','','0','41675967146','Cleared','4','2023-02-09 21:35:15','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(64,'t2qd','Mpesa','','2023-02-10 11:55:48','','0','3','2023-02-10 11:55:48','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed',' ','64','','0','31676019342','Cleared','3','2023-02-10 21:19:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(65,'2wxr','Mpesa','','2023-02-10 12:15:24','','0','4','2023-02-10 12:15:24','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','65','','0','41676020522','Cleared','4','2023-02-10 12:16:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(66,'tj7y','Cash','','2023-02-10 12:29:47','','0','3','2023-02-10 12:29:47','','210','210','1','retail','0','210','1','0','0','0','0','0','0','printed',' ','66','','0','31676021372','Cleared','3','2023-02-10 21:16:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(67,'6xjM','Mpesa','','2023-02-10 14:28:36','','0','4','2023-02-10 14:28:36','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed',' ','67','','0','41676028515','Cleared','4','2023-02-10 14:30:42','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(68,'Twa1','Mpesa','','2023-02-10 16:50:48','','0','4','2023-02-10 16:50:48','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed',' ','68','','0','41676037046','Cleared','4','2023-02-10 18:56:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(69,'2zrx','Mpesa','','2023-02-10 19:33:35','','0','3','2023-02-10 19:33:35','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','69','','0','31676046814','Cleared','3','2023-02-10 21:15:43','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(70,'','Cash','','2023-02-10 21:08:29','','0','4','2023-02-10 21:08:29','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','70','','0','41676052508','Cleared','4','2023-02-10 21:09:23','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(71,'thsx','Cash','','2023-02-11 12:51:18','','0','3','2023-02-11 12:51:18','','210','210','1','retail','0','210','1','0','0','0','0','0','0','printed',' ','71','','0','31676109062','Cleared','3','2023-02-11 15:56:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(72,'635a','Mpesa','','2023-02-11 13:58:02','','0','4','2023-02-11 13:58:02','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','72','','0','41676113080','Cleared','4','2023-02-11 14:01:49','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(73,'','Cash','','2023-02-11 18:10:06','','0','3','2023-02-11 15:54:46','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','73','','0','31676120084','Cleared','3','2023-02-11 18:10:48','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(74,'IJIJ','Mpesa','','2023-02-11 17:31:53','','0','3','2023-02-11 17:31:53','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed',' ','74','','0','31676125911','Cleared','3','2023-02-11 17:34:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(75,'HCH3','Mpesa','','2023-02-11 19:13:57','','0','4','2023-02-11 19:13:57','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed',' ','75','','0','41676132026','Cleared','4','2023-02-11 19:22:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(76,'5KF7','Mpesa','','2023-02-11 20:42:20','','0','4','2023-02-11 20:42:20','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed',' ','76','','0','41676137335','Cleared','4','2023-02-11 20:48:00','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(77,'','Cash','','2023-02-11 20:48:46','','0','4','2023-02-11 20:48:46','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','77','','0','41676137724','Cleared','4','2023-02-11 21:56:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(78,'Y3PL','Mpesa','','2023-02-11 20:56:58','','0','3','2023-02-11 20:56:58','','0','600','1','retail','0','600','1','0','0','0','0','600','0','printed',' ','JESSE','','0','31676138174','Cleared','3','2023-02-11 21:02:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(79,'','Cash','','2023-02-11 21:47:49','','0','3','2023-02-11 21:47:49','','600','600','1','retail','0','600','1','0','0','0','0','0','0','new',' ','','','0','31676141268','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(80,'','Cash','','2023-02-11 21:48:16','','0','3','2023-02-11 21:48:16','','200','200','1','retail','0','200','1','0','0','0','0','0','0','new',' ','','','0','31676141295','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(81,'','Voucher','','2023-02-11 22:01:09','','6','4','2023-02-11 22:01:09','','0','1550','1','retail','0','1550','1','0','1550','0','0','0','0','printed',' ','81','','0','41676141860','Cleared','4','2023-02-11 22:04:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(82,'HNQI','Mpesa','','2023-02-11 22:05:41','','0','4','2023-02-11 22:05:41','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed',' ','82','','0','41676142332','Cleared','4','2023-02-11 22:16:27','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(83,'HNQI','Mpesa','','2023-02-11 22:11:23','','0','4','2023-02-11 22:11:23','','0','20','1','retail','0','20','1','0','0','0','0','20','0','printed',' ','83','','0','41676142674','Cleared','4','2023-02-11 22:17:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(84,'ttgr','Mpesa','','2023-02-12 11:57:53','','0','3','2023-02-12 11:57:53','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed',' ','doreen','','0','31676192256','Cleared','3','2023-02-12 19:14:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(85,'','Mpesa','','2023-02-12 13:24:08','','0','3','2023-02-12 13:24:08','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed',' ','85','','0','31676197447','Cleared','3','2023-02-12 19:14:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(86,'','Cash','','2023-02-12 16:01:46','','0','3','2023-02-12 15:46:59','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','86','','0','31676206017','Cleared','3','2023-02-12 19:15:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(87,'seph','Mpesa','','2023-02-12 17:13:54','','0','3','2023-02-12 17:13:54','','0','1100','1','retail','0','1100','1','0','0','0','0','1100','0','printed',' ','Goret','','0','31676211211','Cleared','3','2023-02-12 19:14:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(88,'dxdc','Mpesa','','2023-02-12 17:52:20','','0','3','2023-02-12 17:52:20','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed',' ','mitchel','','0','31676213538','Cleared','3','2023-02-12 19:11:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(89,'5qqy','Mpesa','','2023-02-12 17:52:39','','0','3','2023-02-12 17:52:39','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed',' ','jacob','','0','31676213558','Cleared','3','2023-02-12 19:13:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(90,'5eho','Mpesa','','2023-02-12 18:13:30','','0','3','2023-02-12 18:13:30','','0','700','1','retail','0','700','1','0','0','0','0','700','0','printed',' ','suhail','','0','31676214806','Cleared','3','2023-02-12 19:12:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(91,'','Voucher','','2023-02-12 21:53:04','','0','3','2023-02-12 21:53:04','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed',' ','cedrick','','0','31676227981','Cleared','3','2023-02-12 21:55:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(92,'','Voucher','','2023-02-12 21:53:39','','0','3','2023-02-12 21:53:39','','0','200','1','retail','0','200','1','','200','0','0','0','0','printed',' ','manager','','0','31676228017','Cleared','3','2023-02-12 21:55:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(93,'uf68','Mpesa','','2023-02-13 09:55:17','','0','3','2023-02-13 09:55:17','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','phillis','','0','31676271316','Cleared','3','2023-02-13 10:50:34','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(94,'r6v3','Mpesa','','2023-02-13 11:26:26','','0','4','2023-02-13 11:26:26','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','94','','0','41676276784','Cleared','4','2023-02-13 11:29:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(95,'gvb8','Mpesa','','2023-02-13 16:26:11','','0','4','2023-02-13 16:26:11','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed',' ','95','','0','41676294770','Cleared','4','2023-02-13 21:07:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(96,'','Cash','','2023-02-13 18:29:44','','0','4','2023-02-13 18:29:44','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','96','','0','41676302183','Cleared','4','2023-02-13 21:07:49','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(97,'UQDF','Mpesa','','2023-02-13 20:33:38','','0','3','2023-02-13 20:33:38','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed',' ','kelvin','','0','31676309617','Cleared','3','2023-02-13 21:05:45','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(98,'v5ge','Mpesa','','2023-02-13 21:14:15','','0','3','2023-02-13 21:14:15','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed',' ','98','','0','31676312054','Cleared','3','2023-02-13 21:24:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(99,'v5ge','Mpesa','','2023-02-13 21:17:43','','0','3','2023-02-13 21:17:43','','0','10','1','retail','0','10','1','0','0','0','0','10','0','printed',' ','99','','0','31676312261','Cleared','3','2023-02-13 21:25:32','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(100,'npca','Mpesa','','2023-02-14 09:57:09','','0','4','2023-02-14 09:57:09','','0','340','1','retail','0','340','1','0','0','0','0','340','0','printed',' ','100','','0','41676357819','Cleared','4','2023-02-14 10:07:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(101,'nl7k','Mpesa','','2023-02-14 10:23:21','','0','4','2023-02-14 10:23:21','','0','310','1','retail','0','310','1','0','0','0','0','310','0','printed',' ','101','','0','41676359392','Cleared','4','2023-02-14 12:28:04','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(102,'Hkf5','Mpesa','','2023-02-14 11:15:02','','0','4','2023-02-14 11:15:02','','0','600','1','retail','0','600','1','0','0','0','0','600','0','printed',' ','102','','0','41676362493','Cleared','4','2023-02-14 12:27:07','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(103,'04ip','Mpesa','','2023-02-14 11:15:17','','0','4','2023-02-14 11:15:17','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','103','','0','41676362516','Cleared','4','2023-02-14 11:25:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(104,'','Voucher','','2023-02-14 11:39:12','','0','4','2023-02-14 11:39:12','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed',' ','manager','','0','41676363951','Cleared','4','2023-02-14 11:39:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(105,'407w','Mpesa','','2023-02-14 14:44:48','','0','4','2023-02-14 14:44:48','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed',' ','105','','0','41676375086','Cleared','4','2023-02-14 19:05:10','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(106,'','Mpesa','','2023-02-14 19:05:34','','0','4','2023-02-14 19:05:34','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','05ac','','0','41676390732','Cleared','4','2023-02-14 19:06:48','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(107,'','Voucher','','2023-02-14 19:07:33','','0','4','2023-02-14 19:07:33','','0','750','1','retail','0','750','1','0','750','0','0','0','0','printed',' ','martin','','0','41676390831','Cleared','4','2023-02-14 19:09:59','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(108,'zmzr','Mpesa','','2023-02-14 20:01:36','','0','4','2023-02-14 20:01:36','','0','330','1','retail','0','330','1','0','0','0','0','330','0','printed',' ','108','','0','41676394095','Cleared','4','2023-02-14 21:07:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(109,'','Cash','','2023-02-14 20:27:13','','0','4','2023-02-14 20:27:13','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','109','','0','41676395631','Cleared','4','2023-02-14 20:28:11','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(110,'jtby','Mpesa','','2023-02-14 20:27:33','','0','4','2023-02-14 20:27:33','','0','10','1','retail','0','10','1','0','0','0','0','10','0','printed',' ','110','','0','41676395651','Cleared','4','2023-02-14 20:28:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(111,'2swv','Mpesa','','2023-02-15 16:49:31','','0','3','2023-02-15 16:49:31','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','kamande','','0','31676468970','Cleared','3','2023-02-15 19:40:10','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(112,'','Cash','','2023-02-15 19:26:28','','0','3','2023-02-15 19:26:28','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','112','','0','31676478387','Cleared','3','2023-02-15 20:40:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(113,'iakg','Cash','','2023-02-15 19:40:44','','0','3','2023-02-15 19:40:44','','450','450','1','retail','0','450','1','0','0','0','0','0','0','printed',' ','Winnie ','','0','31676479230','Cleared','3','2023-02-15 20:30:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(114,'4iah','Cash','','2023-02-15 21:47:35','','0','3','2023-02-15 21:47:35','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','joshua','','0','31676486854','Cleared','3','2023-02-15 21:57:02','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(115,'r2cx','Mpesa','','2023-02-16 14:17:54','','0','4','2023-02-16 14:17:54','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed',' ','115','','0','41676546272','Cleared','4','2023-02-16 14:27:33','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(116,'','Mpesa','','2023-02-16 16:48:13','','0','3','2023-02-16 16:48:13','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','116','','0','31676555292','Cleared','3','2023-02-16 19:17:36','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(117,'uq41','Mpesa','','2023-02-16 17:48:02','','0','3','2023-02-16 17:48:02','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','117','','0','31676558880','Cleared','3','2023-02-16 21:11:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(118,'ict3','Mpesa','','2023-02-16 17:49:47','','0','4','2023-02-16 17:49:47','','0','600','1','retail','0','600','1','0','0','0','0','600','0','printed',' ','118','','0','41676558983','Cleared','4','2023-02-16 19:50:37','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(119,'ict3','Mpesa','','2023-02-16 18:18:06','','0','4','2023-02-16 18:18:06','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','119','','0','41676560684','Cleared','4','2023-02-16 19:51:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(120,'','Cash','','2023-02-16 18:45:09','','0','3','2023-02-16 18:45:09','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','120','','0','31676562305','Cleared','3','2023-02-16 19:16:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(121,'5ssm','Mpesa','','2023-02-16 18:47:03','','0','4','2023-02-16 18:47:03','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','121','','0','41676562422','Cleared','4','2023-02-16 21:12:33','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(122,'','Cash','','2023-02-16 23:16:30','','0','3','2023-02-16 23:16:30','','200','200','1','retail','0','200','1','0','0','0','0','0','0','new',' ','','','0','31676578581','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(123,'kbnu','Mpesa','','2023-02-17 11:12:13','','0','4','2023-02-17 11:12:13','','0','800','1','retail','0','800','1','0','0','0','0','800','0','printed',' ','123','','0','41676621516','Cleared','4','2023-02-17 11:13:35','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(124,'','Cash','','2023-02-17 13:58:32','','0','4','2023-02-17 13:58:32','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','124','','0','41676631511','Cleared','4','2023-02-17 13:59:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(125,'oz8z','Mpesa','','2023-02-17 14:21:12','','0','4','2023-02-17 14:21:12','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','125','','0','41676632871','Cleared','4','2023-02-17 23:23:43','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(126,'bc3a','Mpesa','','2023-02-17 18:14:37','','0','3','2023-02-17 18:13:45','','0','310','1','retail','0','310','1','0','0','0','0','310','0','printed',' ','Fatuma','','0','31676646814','Cleared','3','2023-02-17 18:18:04','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(127,'hsbi','Mpesa','','2023-02-17 19:18:29','','0','4','2023-02-17 19:18:29','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed',' ','127','','0','41676650708','Cleared','4','2023-02-17 23:22:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(128,'','Cash','','2023-02-17 20:13:25','','0','4','2023-02-17 20:13:25','','250','250','1','retail','0','250','1','0','0','0','0','0','0','new',' ','','','0','41676653994','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(129,'lhwy','Mpesa','','2023-02-17 21:38:40','','0','3','2023-02-17 21:38:40','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','milka','','0','31676659118','Cleared','3','2023-02-17 23:18:23','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(130,'8D6','Mpesa','','2023-02-18 11:41:03','','0','4','2023-02-18 11:41:03','','0','1400','1','retail','0','1400','1','0','0','0','0','1400','0','printed',' ','STEPHEN','','0','41676709619','Cleared','4','2023-02-18 21:46:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(131,'CKP9','Mpesa','','2023-02-18 11:44:15','','0','3','2023-02-18 11:44:15','','0','600','1','retail','0','600','1','0','0','0','0','600','0','printed',' ','JOSEPH','','0','31676709841','Cleared','3','2023-02-18 20:57:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(132,'AFCL','Mpesa','','2023-02-18 12:41:17','','0','3','2023-02-18 12:41:17','','0','260','1','retail','0','260','1','0','0','0','0','260','0','printed',' ','KANAIZA','','0','31676713270','Cleared','3','2023-02-18 20:56:39','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(133,'8TH','Mpesa','','2023-02-18 12:44:09','','0','4','2023-02-18 12:44:09','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed',' ','GEORGE','','0','41676713448','Cleared','4','2023-02-18 19:59:38','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(134,'FTW3','Mpesa','','2023-02-18 13:13:27','','0','3','2023-02-18 13:13:27','','0','900','1','retail','0','900','1','0','0','0','0','900','0','printed',' ','MUNZALA','','0','31676715198','Cleared','3','2023-02-18 19:21:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(135,'KP9','Mpesa','','2023-02-18 15:50:16','','0','4','2023-02-18 15:50:16','','0','600','1','retail','0','600','1','0','0','0','0','600','0','printed',' ','OMATO','','0','41676724607','Cleared','4','2023-02-18 20:00:43','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(136,'RBI','Mpesa','','2023-02-18 15:51:01','','0','4','2023-02-18 15:51:01','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','BOBB','','0','41676724660','Cleared','3','2023-02-18 21:58:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(137,'F6RD','Mpesa','','2023-02-18 15:52:36','','0','3','2023-02-18 15:52:36','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','HOPE','','0','31676724754','Cleared','3','2023-02-18 20:55:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(138,'F6RD','Mpesa','','2023-02-18 16:29:45','','0','3','2023-02-18 16:29:45','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','HOPE','','0','31676726984','Cleared','3','2023-02-18 20:55:37','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(139,'RB1','Mpesa','','2023-02-18 16:30:43','','0','4','2023-02-18 16:30:43','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','BOBB','','0','41676727042','Cleared','4','2023-02-18 19:56:32','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(140,'','Cash','','2023-02-18 17:15:35','','0','4','2023-02-18 17:15:35','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','BIG FISH','','0','41676729733','Cleared','4','2023-02-18 20:01:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(141,'930K','Mpesa','','2023-02-18 18:34:44','','0','4','2023-02-18 18:34:44','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','WINNIE','','0','41676734482','Cleared','4','2023-02-18 20:02:10','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(142,'','Voucher','','2023-02-18 18:36:12','','0','4','2023-02-18 18:36:12','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed',' ','MZAE','','0','41676734571','Cleared','4','2023-02-18 18:48:07','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(143,'','Mpesa','','2023-02-18 19:05:13','','0','4','2023-02-18 19:05:13','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','HESBORN','','0','41676736276','Cleared','4','2023-02-18 19:27:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(144,'','Voucher','','2023-02-18 19:40:20','','0','3','2023-02-18 19:40:20','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed',' ','MANAGER','','0','31676738419','Cleared','3','2023-02-18 19:41:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(145,'','Voucher','','2023-02-18 19:40:45','','0','3','2023-02-18 19:40:45','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed',' ','CEDRICK','','0','31676738443','Cleared','3','2023-02-18 19:41:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(146,'SFEY','Mpesa','','2023-02-18 19:43:12','','0','3','2023-02-18 19:43:12','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','MILKA','','0','31676738590','Cleared','3','2023-02-18 19:44:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(147,'','Voucher','','2023-02-18 19:44:34','','0','3','2023-02-18 19:44:34','','0','150','1','retail','0','150','1','0','150','0','0','0','0','printed',' ','MORNING GUARDS','','0','31676738672','Cleared','3','2023-02-18 19:46:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(148,'','Voucher','','2023-02-18 19:45:03','','0','3','2023-02-18 19:45:03','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed',' ','FEMALE GUARD','','0','31676738702','Cleared','3','2023-02-18 19:45:43','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(149,'','Voucher','','2023-02-18 20:53:52','','0','3','2023-02-18 20:53:52','','0','350','1','retail','0','350','1','0','350','0','0','0','0','printed',' ','EVENING GUARDS','','0','31676742823','Cleared','3','2023-02-18 20:54:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(150,'LLM','Mpesa','','2023-02-18 21:09:59','','0','4','2023-02-18 21:09:59','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed',' ','JOSPHINE','','0','41676743797','Cleared','4','2023-02-18 21:45:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(151,'','Cash','','2023-02-18 21:28:52','','0','3','2023-02-18 21:28:52','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','151','','0','31676744931','Cleared','3','2023-02-18 21:56:45','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(152,'','Voucher','','2023-02-18 21:34:57','','0','3','2023-02-18 21:34:57','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed',' ','PURITY','','0','31676745295','Cleared','4','2023-02-18 21:55:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(153,'vdi','Mpesa','','2023-02-19 11:30:27','','0','4','2023-02-19 11:30:27','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','eric','','0','41676795413','Cleared','4','2023-02-19 12:00:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(154,'','Voucher','','2023-02-19 11:58:42','','0','4','2023-02-19 11:58:42','','0','500','1','retail','0','500','1','0','500','0','0','0','0','printed',' ','cedrick\\purity','','0','41676797117','Cleared','4','2023-02-19 11:59:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(155,'','Voucher','','2023-02-19 12:10:21','','0','4','2023-02-19 12:10:21','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed',' ','guards','','0','41676797820','Cleared','4','2023-02-19 12:10:57','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(156,'5a6','Mpesa','','2023-02-19 15:53:27','','0','4','2023-02-19 15:53:27','','0','600','1','retail','0','600','1','0','0','0','0','600','0','printed',' ','patrick','','0','41676811206','Cleared','4','2023-02-19 17:33:15','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(157,'','Cash','','2023-02-19 17:36:21','','0','3','2023-02-19 17:36:21','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','157','','0','31676817380','Cleared','3','2023-02-19 22:07:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(158,'','Cash','','2023-02-19 18:55:43','','0','3','2023-02-19 18:55:43','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','158','','0','31676822138','Cleared','3','2023-02-19 19:59:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(159,'d85','Voucher','','2023-02-19 19:03:32','','0','4','2023-02-19 19:03:32','','0','400','1','retail','0','400','1','0','400','0','0','0','0','printed',' ','guards/glass','','0','41676822607','Cleared','4','2023-02-19 19:04:40','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(160,'cl1w','Mpesa','','2023-02-19 19:20:06','','0','3','2023-02-19 19:20:06','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','natalia','','0','31676823605','Cleared','3','2023-02-19 20:00:40','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(161,'y1xh','Mpesa','','2023-02-19 19:51:07','','0','3','2023-02-19 19:51:07','','0','800','1','retail','0','800','1','0','0','0','0','800','0','printed',' ','Noreen','','0','31676825459','Cleared','3','2023-02-19 19:58:40','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(162,'n6mg','Mpesa','','2023-02-19 20:36:44','','0','3','2023-02-19 20:36:44','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed',' ','socrates','','0','31676828185','Cleared','3','2023-02-19 21:27:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(163,'','Voucher','','2023-02-19 21:30:04','','0','3','2023-02-19 21:30:04','','0','350','1','retail','0','350','1','0','350','0','0','0','0','printed',' ','guards','','0','31676831384','Cleared','3','2023-02-19 21:32:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(164,'10rm','Mpesa','','2023-02-19 21:31:50','','0','3','2023-02-19 21:31:50','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed',' ','shirly ','','0','31676831508','Cleared','3','2023-02-19 22:03:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(165,'','Voucher','','2023-02-19 22:09:09','','0','3','2023-02-19 22:09:09','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed',' ','cedrick','','0','31676833748','Cleared','3','2023-02-19 22:41:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(166,'MZUE','Cash','','2023-02-20 13:32:01','','0','3','2023-02-20 13:32:01','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','TERESA','','0','31676889120','Cleared','3','2023-02-20 16:33:42','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(167,'1F8Q','Mpesa','','2023-02-20 13:32:39','','0','3','2023-02-20 13:32:39','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed',' ','CEDRICK','','0','31676889158','Cleared','3','2023-02-20 13:53:11','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(168,'RPJ2','Mpesa','','2023-02-20 16:04:33','','0','3','2023-02-20 16:04:33','','0','900','1','retail','0','900','1','0','0','0','0','900','0','printed',' ','DANIEL','','0','31676898242','Cleared','3','2023-02-20 17:04:42','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(169,'','Voucher','','2023-02-20 16:44:31','','0','3','2023-02-20 16:44:31','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed',' ','CEDRIC','','0','31676900670','Cleared','3','2023-02-20 16:52:12','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(170,'','Cash','','2023-02-20 17:05:47','','0','3','2023-02-20 17:05:47','','150','150','1','retail','0','150','1','0','0','0','0','0','0','new',' ','','','0','31676901940','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(171,'JOL','Mpesa','','2023-02-20 19:06:45','','0','4','2023-02-20 19:06:45','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed',' ','COLLINS','','0','41676909204','Cleared','4','2023-02-20 21:50:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(172,'G36','Mpesa','','2023-02-20 19:07:03','','0','4','2023-02-20 19:07:03','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','COLLINS','','0','41676909221','Cleared','4','2023-02-20 21:50:56','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(173,'A3N','Mpesa','','2023-02-20 19:07:17','','0','4','2023-02-20 19:07:17','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed',' ','FELIX','','0','41676909236','Cleared','4','2023-02-20 21:29:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(174,'','Voucher','','2023-02-20 19:26:44','','0','4','2023-02-20 19:26:44','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed',' ','PURITY','','0','41676910402','Cleared','4','2023-02-20 20:24:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(175,'','Cash','','2023-02-20 19:26:58','','0','4','2023-02-20 19:26:58','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','175','','0','41676910417','Cleared','4','2023-02-20 19:47:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(176,'','Cash','','2023-02-20 19:27:35','','0','4','2023-02-20 19:27:35','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','176','','0','41676910454','Cleared','4','2023-02-20 19:47:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(177,'A3N','Mpesa','','2023-02-20 20:10:45','','0','4','2023-02-20 20:10:45','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed',' ','FELIX','','0','41676913043','Cleared','4','2023-02-20 21:30:38','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(178,'FNU','Mpesa','','2023-02-20 21:15:24','','0','4','2023-02-20 21:15:24','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','ISAAC','','0','41676916911','Cleared','4','2023-02-20 22:30:17','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(179,'FNU','Mpesa','','2023-02-20 21:15:35','','0','4','2023-02-20 21:15:35','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','ISAAC','','0','41676916934','Cleared','4','2023-02-20 22:30:49','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(180,'FNU','Mpesa','','2023-02-20 21:15:50','','0','4','2023-02-20 21:15:50','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','ISCAAC','','0','41676916949','Cleared','4','2023-02-20 22:31:33','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(181,'G36','Mpesa','','2023-02-20 21:16:16','','0','4','2023-02-20 21:16:16','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed',' ','COLLINS','','0','41676916975','Cleared','4','2023-02-20 21:51:47','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(182,'FNU','Mpesa','','2023-02-20 21:19:51','','0','4','2023-02-20 21:19:51','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','ISCAAC','','0','41676917189','Cleared','4','2023-02-20 22:32:04','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(183,'','Voucher','','2023-02-20 22:12:08','','0','4','2023-02-20 22:12:08','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed',' ','EVENING GUARDS','','0','41676920327','Cleared','4','2023-02-20 22:12:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(184,'','Voucher','','2023-02-21 09:51:01','','0','4','2023-02-21 09:51:01','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed',' ','purity','','0','41676962260','Cleared','4','2023-02-21 09:51:36','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(185,'','Voucher','','2023-02-21 12:16:50','','0','4','2023-02-21 12:16:50','','0','210','1','retail','0','210','1','0','210','0','0','0','0','printed',' ','mzae','','0','41676971001','Cleared','4','2023-02-21 12:17:40','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(186,'','Voucher','','2023-02-21 13:13:24','','0','4','2023-02-21 13:13:24','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed',' ','morning guards','','0','41676974403','Cleared','4','2023-02-21 13:14:17','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(187,'','Cash','','2023-02-21 13:40:36','','0','4','2023-02-21 13:40:36','','260','260','1','retail','0','260','1','0','0','0','0','0','0','printed',' ','187','','0','41676976028','Cleared','4','2023-02-21 13:45:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(188,'job','Mpesa','','2023-02-21 15:20:55','','0','4','2023-02-21 15:20:55','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed',' ','andrew','','0','41676982053','Cleared','4','2023-02-21 15:50:00','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(189,'','Voucher','','2023-02-21 15:50:15','','0','4','2023-02-21 15:50:15','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed',' ','manager','','0','41676983814','Cleared','4','2023-02-21 15:51:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(190,'','Voucher','','2023-02-21 16:37:05','','0','4','2023-02-21 16:37:05','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed',' ','mzae','','0','41676986623','Cleared','4','2023-02-21 16:37:33','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(191,'d6k','Mpesa','','2023-02-21 17:37:33','','0','4','2023-02-21 17:37:33','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed',' ','immaculate','','0','41676990252','Cleared','4','2023-02-21 18:20:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(192,'','Cash','','2023-02-21 17:37:46','','0','4','2023-02-21 17:37:46','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','192','','0','41676990265','Cleared','4','2023-02-21 20:42:59','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(193,'jdl','Mpesa','','2023-02-21 17:38:12','','0','4','2023-02-21 17:38:12','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','kevin','','0','41676990291','Cleared','4','2023-02-21 20:43:39','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(194,'jdl','Mpesa','','2023-02-21 17:38:30','','0','4','2023-02-21 17:38:30','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed',' ','kevin','','0','41676990309','Cleared','4','2023-02-21 20:44:12','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(195,'2lj','Mpesa','','2023-02-21 18:35:09','','0','4','2023-02-21 18:35:09','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed',' ','felix','','0','41676993708','Cleared','4','2023-02-21 21:10:37','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(196,'','Cash','','2023-02-21 18:35:48','','0','4','2023-02-21 18:35:48','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','196','','0','41676993746','Cleared','4','2023-02-21 20:44:45','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(197,'','Cash','','2023-02-21 19:09:06','','0','4','2023-02-21 19:09:06','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','197','','0','41676995745','Cleared','4','2023-02-21 21:16:21','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(198,'','Cash','','2023-02-21 19:09:22','','0','4','2023-02-21 19:09:22','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','198','','0','41676995761','Cleared','4','2023-02-21 20:45:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(199,'2lj','Mpesa','','2023-02-21 19:41:49','','0','4','2023-02-21 19:41:49','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed',' ','199','','0','41676997708','Cleared','4','2023-02-21 21:19:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(200,'41c','Mpesa','','2023-02-21 20:38:53','','0','4','2023-02-21 20:38:53','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed',' ','davji','','0','41677001131','Cleared','4','2023-02-21 21:21:17','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(201,'41c','Mpesa','','2023-02-21 21:21:31','','0','4','2023-02-21 21:21:31','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed',' ','davji','','0','41677003690','Cleared','4','2023-02-21 21:23:34','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(202,'','Voucher','','2023-02-21 21:55:23','','0','4','2023-02-21 21:55:23','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed',' ','evening guards','','0','41677005722','Cleared','4','2023-02-21 21:56:12','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(203,'','Voucher','','2023-02-22 10:01:58','','0','4','2023-02-22 10:01:58','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed',' ','purity','','0','41677049316','Cleared','4','2023-02-22 10:02:32','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(204,'122','Mpesa','','2023-02-22 11:10:16','','0','4','2023-02-22 11:10:16','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','abert','','0','41677053414','Cleared','4','2023-02-22 11:14:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(205,'122','Mpesa','','2023-02-22 11:10:54','','0','4','2023-02-22 11:10:54','','0','10','1','retail','0','10','1','0','0','0','0','10','0','printed',' ','abert','','0','41677053452','Cleared','4','2023-02-22 11:14:32','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(206,'','Voucher','','2023-02-22 11:14:56','','0','4','2023-02-22 11:14:56','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed',' ','manager','','0','41677053695','Cleared','4','2023-02-22 11:15:39','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(207,'','Cash','','2023-02-22 12:10:41','','0','4','2023-02-22 12:10:41','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','207','','0','41677057039','Cleared','4','2023-02-22 13:59:56','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(208,'9355','Mpesa','','2023-02-22 13:32:43','','0','4','2023-02-22 13:32:43','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed',' ','joy','','0','41677061962','Cleared','3','2023-02-22 22:32:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(209,'','Cash','','2023-02-22 19:17:18','','0','3','2023-02-22 19:17:18','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed',' ','209','','0','31677082634','Cleared','3','2023-02-22 22:23:17','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(210,'','Voucher','','2023-02-22 22:19:36','','0','3','2023-02-22 22:19:36','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed',' ','cedrick','','0','31677093575','Cleared','3','2023-02-22 22:23:56','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(211,'','Voucher','','2023-02-22 22:20:16','','0','3','2023-02-22 22:20:16','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed',' ','martin','','0','31677093614','Cleared','3','2023-02-22 22:22:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(212,'','Voucher','','2023-02-22 22:21:22','','0','3','2023-02-22 22:21:22','','0','350','1','retail','0','350','1','0','350','0','0','0','0','printed',' ','guards','','0','31677093674','Cleared','3','2023-02-22 22:22:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(213,'','Cash','','2023-02-23 19:47:30','','0','3','2023-02-23 19:36:01','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','213','','0','31677170159','Cleared','3','2023-02-23 20:13:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(214,'','Voucher','','2023-02-24 09:34:47','','0','3','2023-02-24 09:34:47','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed',' ','guards','','0','31677220486','Cleared','3','2023-02-24 09:35:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(215,'','Voucher','','2023-02-24 09:35:05','','0','3','2023-02-24 09:35:05','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed',' ','cedrick','','0','31677220503','Cleared','3','2023-02-24 09:35:33','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(216,'','Voucher','','2023-02-24 09:36:55','','0','3','2023-02-24 09:36:55','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed',' ','guards','','0','31677220614','Cleared','3','2023-02-24 09:37:32','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(217,'','Mpesa','','2023-02-24 12:36:06','','0','3','2023-02-24 12:36:06','','0','260','1','retail','0','260','1','0','0','0','0','260','0','printed',' ','p4ly','','0','31677231353','Cleared','3','2023-02-24 12:37:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(218,'','Voucher','','2023-02-24 15:22:47','','0','3','2023-02-24 15:22:47','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed',' ','manager','','0','31677241365','Cleared','3','2023-02-24 15:24:49','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(219,'sji','Mpesa','','2023-02-24 15:26:51','','0','4','2023-02-24 15:26:51','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','eric','','0','41677241610','Cleared','4','2023-02-24 16:29:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(220,'','Cash','','2023-02-24 15:58:27','','0','4','2023-02-24 15:58:27','','300','300','1','retail','0','300','1','0','0','0','0','0','0','new',' ','','','0','41677243505','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(221,'','Voucher','','2023-02-24 18:04:21','','0','4','2023-02-24 18:04:21','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed',' ','purity','','0','41677251059','Cleared','4','2023-02-24 18:05:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(222,'','Voucher','','2023-02-25 09:13:26','','0','4','2023-02-25 09:13:26','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed',' ','purity','','0','41677305605','Cleared','4','2023-02-25 09:14:12','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(223,'','Voucher','','2023-02-25 10:00:53','','0','4','2023-02-25 10:00:53','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed',' ','guards','','0','41677308452','Cleared','4','2023-02-25 10:01:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(224,'z71','Mpesa','','2023-02-25 11:45:28','','0','4','2023-02-25 11:45:28','','0','600','1','retail','0','600','1','0','0','0','0','600','0','printed',' ','beauty','','0','41677314727','Cleared','4','2023-02-25 12:58:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(225,'js1','Mpesa','','2023-02-25 14:28:16','','0','4','2023-02-25 14:28:16','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','peter','','0','41677324495','Cleared','4','2023-02-25 19:14:48','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(226,'ujs1','Mpesa','','2023-02-25 14:42:22','','0','3','2023-02-25 14:42:22','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed',' ','peter','','0','31677325340','Cleared','3','2023-02-25 14:51:04','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(227,'','Voucher','','2023-02-25 14:42:56','','0','3','2023-02-25 14:42:56','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed',' ','cedrick','','0','31677325375','Cleared','3','2023-02-25 14:45:29','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(228,'bov6','Mpesa','','2023-02-25 18:54:03','','0','3','2023-02-25 18:54:03','','0','1050','1','retail','0','1050','1','0','0','0','0','1050','0','printed',' ','wesly','','0','31677340436','Cleared','3','2023-02-25 19:54:17','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(229,'bov6','Mpesa','','2023-02-25 18:56:19','','0','3','2023-02-25 18:56:19','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','wesly','','0','31677340578','Cleared','3','2023-02-25 19:55:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(230,'y3ll','Mpesa','','2023-02-25 19:13:42','','0','4','2023-02-25 19:13:42','','0','550','1','retail','0','550','1','0','0','0','0','550','0','printed',' ','chris','','0','41677341613','Cleared','3','2023-02-25 21:36:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(231,'','Cash','','2023-02-25 19:16:03','','0','3','2023-02-25 19:16:03','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','231','','0','31677341761','Cleared','3','2023-02-25 22:13:42','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(232,'6b2k','Mpesa','','2023-02-25 19:51:25','','0','3','2023-02-25 19:50:05','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed',' ','ian','','0','31677343803','Cleared','3','2023-02-25 19:52:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(233,'','Voucher','','2023-02-25 20:28:02','','0','3','2023-02-25 20:28:02','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed',' ','manager','','0','31677346081','Cleared','3','2023-02-25 20:30:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(234,'f717','Mpesa','','2023-02-25 21:22:02','','0','3','2023-02-25 21:22:02','','0','450','1','retail','0','450','1','0','0','0','0','450','0','printed',' ','moses','','0','31677349310','Cleared','3','2023-02-25 21:58:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(235,'','Voucher','','2023-02-25 21:23:54','','0','3','2023-02-25 21:23:54','','0','350','1','retail','0','350','1','0','350','0','0','0','0','printed',' ','guards','','0','31677349429','Cleared','3','2023-02-25 21:26:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(236,'','Voucher','','2023-02-26 10:18:37','','0','3','2023-02-26 10:18:37','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed',' ','cedrick','','0','31677395915','Cleared','3','2023-02-26 14:41:38','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(237,'23ws','Mpesa','','2023-02-26 10:19:04','','0','3','2023-02-26 10:19:04','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed',' ','winnie','','0','31677395942','Cleared','3','2023-02-26 14:40:56','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(238,'','Cash','','2023-02-26 11:35:06','','0','3','2023-02-26 11:35:06','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','238','','0','31677400504','Cleared','3','2023-02-26 14:39:37','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(239,'gip','Mpesa','','2023-02-26 13:57:01','','0','4','2023-02-26 13:57:01','','0','340','1','retail','0','340','1','0','0','0','0','340','0','printed',' ','dennis','','0','41677409008','Cleared','4','2023-02-26 13:58:32','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(240,'','Cash','','2023-02-26 15:40:17','','0','3','2023-02-26 13:59:38','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed',' ','everlyns guest','','0','31677409177','Cleared','3','2023-02-26 17:09:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(241,'','Cash','','2023-02-26 14:10:47','','0','4','2023-02-26 14:10:47','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','241','','0','41677409846','Cleared','4','2023-02-26 21:03:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(242,'','Voucher','','2023-02-26 14:59:34','','0','4','2023-02-26 14:59:34','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed',' ','purity','','0','41677412772','Cleared','4','2023-02-26 21:03:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(243,'yv8','Mpesa','','2023-02-26 15:21:57','','0','4','2023-02-26 15:21:57','','0','600','1','retail','0','600','1','0','0','0','0','600','0','printed',' ','ibin','','0','41677414110','Cleared','4','2023-02-26 15:49:16','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(244,'','Voucher','','2023-02-26 15:39:22','','0','3','2023-02-26 15:39:22','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed',' ','everlyn','','0','31677415160','Cleared','3','2023-02-26 17:07:08','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(245,'8hk','Mpesa','','2023-02-26 16:57:49','','0','4','2023-02-26 16:57:49','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed',' ','felix','','0','41677419867','Cleared','4','2023-02-26 21:04:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(246,'','Voucher','','2023-02-26 17:29:50','','0','4','2023-02-26 17:29:50','','0','800','1','retail','0','800','1','0','800','0','0','0','0','printed',' ','evelyn','','0','41677421779','Cleared','4','2023-02-26 17:30:40','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(247,'8hk','Mpesa','','2023-02-26 17:48:58','','0','4','2023-02-26 17:48:58','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','felix','','0','41677422937','Cleared','4','2023-02-26 21:05:36','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(248,'l4d','Mpesa','','2023-02-26 21:06:00','','0','4','2023-02-26 21:06:00','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed',' ','alex','','0','41677434759','Cleared','4','2023-02-26 21:07:24','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(249,'8da','Mpesa','','2023-02-26 21:06:24','','0','4','2023-02-26 21:06:24','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed',' ','rosslynne','','0','41677434782','Cleared','4','2023-02-26 21:08:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(250,'l4d','Mpesa','','2023-02-26 21:08:42','','0','4','2023-02-26 21:08:42','','0','20','1','retail','0','20','1','0','0','0','0','20','0','printed',' ','alex','','0','41677434920','Cleared','4','2023-02-26 21:09:33','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(251,'','Voucher','','2023-02-26 21:10:41','','0','4','2023-02-26 21:10:41','','0','400','1','retail','0','400','1','0','400','0','0','0','0','printed',' ','morning/evening guards','','0','41677435035','Cleared','4','2023-02-26 21:11:34','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(252,'fmc','Mpesa','','2023-02-26 21:29:10','','0','4','2023-02-26 21:29:10','','0','370','1','retail','0','370','1','0','0','0','0','370','0','printed',' ','ryan','','0','41677436129','Cleared','4','2023-02-26 21:34:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(253,'qe1','Mpesa','','2023-02-27 11:56:00','','0','4','2023-02-27 11:56:00','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','jason','','0','41677488159','Cleared','4','2023-02-27 12:42:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(254,'','Mpesa','','2023-02-27 12:00:40','','0','3','2023-02-27 12:00:40','','0','450','1','retail','0','450','1','0','0','0','0','450','0','printed',' ','raxon','','0','31677488435','Cleared','3','2023-02-27 12:41:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(255,'ivr','Mpesa','','2023-02-27 12:11:08','','0','4','2023-02-27 12:11:08','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','kevin','','0','41677489066','Cleared','4','2023-02-27 12:16:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(256,'mudb','Mpesa','','2023-02-27 12:29:51','','0','3','2023-02-27 12:29:51','','0','500','1','retail','0','500','1','0','0','0','0','500','0','printed',' ','petrus','','0','31677490186','Cleared','3','2023-02-27 12:39:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(257,'lpm','Mpesa','','2023-02-27 13:11:35','','0','4','2023-02-27 13:11:35','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed',' ','richard','','0','41677492694','Cleared','4','2023-02-27 15:02:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(258,'','Cash','','2023-02-27 13:53:33','','0','4','2023-02-27 13:53:33','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','258','','0','41677495208','Cleared','4','2023-02-27 14:20:16','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(259,'','Cash','','2023-02-27 14:36:32','','0','3','2023-02-27 14:36:32','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','259','','0','31677497791','Cleared','3','2023-02-27 15:14:34','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(260,'','Cash','','2023-02-27 15:42:21','','0','3','2023-02-27 15:42:21','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','260','','0','31677501740','Cleared','3','2023-02-27 16:27:37','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(261,'14rl','Mpesa','','2023-02-27 16:08:38','','0','3','2023-02-27 16:08:38','','0','1050','1','retail','0','1050','1','0','0','0','0','1050','0','printed',' ','odero','','0','31677503309','Cleared','3','2023-02-27 16:42:00','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(262,'woz','Mpesa','','2023-02-27 17:45:20','','0','4','2023-02-27 17:45:20','','0','315','1','retail','0','315','1','0','0','0','0','315','0','printed',' ','brian','','0','41677509112','Cleared','4','2023-02-27 17:52:59','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(263,'vbn','Mpesa','','2023-02-27 18:14:50','','0','4','2023-02-27 18:14:50','','0','750','1','retail','0','750','1','0','0','0','0','750','0','printed',' ','nyamai','','0','41677510861','Cleared','4','2023-02-27 19:03:56','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(264,'r7q','Mpesa','','2023-02-27 18:38:00','','0','4','2023-02-27 18:38:00','','0','370','1','retail','0','370','1','0','0','0','0','370','0','printed',' ','richard','','0','41677512273','Cleared','4','2023-02-27 18:42:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(265,'','Cash','','2023-02-27 18:43:38','','0','3','2023-02-27 18:43:38','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','265','','0','31677512616','Cleared','3','2023-02-27 21:22:35','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(266,'3roj','Mpesa','','2023-02-27 19:05:36','','0','3','2023-02-27 19:05:36','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','george','','0','31677513934','Cleared','3','2023-02-27 21:22:02','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(267,'q8ui','Cash','','2023-02-27 21:19:03','','0','3','2023-02-27 21:19:03','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed',' ','muhammad','','0','31677521910','Cleared','3','2023-02-27 22:05:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(268,'','Voucher','','2023-02-27 21:25:14','','0','3','2023-02-27 21:25:14','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed',' ','purity','','0','31677522313','Cleared','3','2023-02-27 21:43:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(269,'','Voucher','','2023-02-27 21:25:38','','0','3','2023-02-27 21:25:38','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed',' ','cedrick','','0','31677522337','Cleared','3','2023-02-27 21:44:36','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(270,'','Voucher','','2023-02-27 21:32:29','','0','3','2023-02-27 21:32:29','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed',' ','martin','','0','31677522483','Cleared','3','2023-02-27 21:43:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(271,'','Voucher','','2023-02-27 21:36:57','','0','3','2023-02-27 21:36:57','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed',' ','manager','','0','31677523015','Cleared','3','2023-02-27 21:53:43','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(272,'','Voucher','','2023-02-27 21:39:12','','0','3','2023-02-27 21:39:12','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed',' ','rodgers','','0','31677523140','Cleared','3','2023-02-27 21:42:36','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(273,'francis','Mpesa','','2023-02-27 21:55:58','','0','3','2023-02-27 21:55:58','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed',' ','kccg','','0','31677524154','Cleared','3','2023-02-27 22:31:11','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(274,'5qw','Mpesa','','2023-02-28 10:09:07','','0','4','2023-02-28 10:09:07','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed',' ','elizabeth','','0','41677568090','Cleared','4','2023-02-28 10:10:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(275,'','Cash','','2023-02-28 10:24:00','','0','4','2023-02-28 10:24:00','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','275','','0','41677569039','Cleared','4','2023-02-28 10:32:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(276,'','Voucher','','2023-02-28 10:41:30','','0','4','2023-02-28 10:41:30','','0','150','1','retail','0','150','1','0','150','0','0','0','0','printed',' ','guards','','0','41677570089','Cleared','4','2023-02-28 10:42:57','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(277,'','Mpesa','','2023-02-28 10:42:00','','0','4','2023-02-28 10:42:00','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','purity','','0','41677570119','Cleared','4','2023-02-28 10:45:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(278,'uhv','Mpesa','','2023-02-28 12:42:17','','0','4','2023-02-28 12:42:17','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed',' ','peter','','0','41677577332','Cleared','4','2023-02-28 13:39:15','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(279,'uhv','Mpesa','','2023-02-28 13:07:30','','0','4','2023-02-28 13:07:30','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','peter','','0','41677578848','Cleared','4','2023-02-28 13:40:02','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(280,'','Voucher','','2023-02-28 15:26:02','','0','4','2023-02-28 15:26:02','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed',' ','mzae','','0','41677587161','Cleared','4','2023-02-28 15:26:49','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(281,'','Voucher','','2023-02-28 16:13:53','','0','4','2023-02-28 16:13:53','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed',' ','mzae','','0','41677590031','Cleared','4','2023-02-28 16:14:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(282,'','Cash','','2023-02-28 17:02:25','','0','4','2023-02-28 17:02:25','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed',' ','282','','0','41677592941','Cleared','4','2023-02-28 20:56:59','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(283,'','Voucher','','2023-02-28 17:20:02','','0','4','2023-02-28 17:20:02','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed',' ','martin','','0','41677594001','Cleared','4','2023-02-28 20:57:45','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(284,'','Voucher','','2023-02-28 19:49:46','','0','4','2023-02-28 19:49:46','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed',' ','mzae','','0','41677602984','Cleared','4','2023-02-28 20:58:11','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(285,'','Voucher','','2023-02-28 19:51:03','','0','4','2023-02-28 19:51:03','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed',' ','manager','','0','41677603062','Cleared','4','2023-02-28 20:58:39','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(286,'4cc','Mpesa','','2023-02-28 19:51:19','','0','4','2023-02-28 19:51:19','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','leon','','0','41677603078','Cleared','4','2023-02-28 20:19:16','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(287,'ttd','Mpesa','','2023-02-28 19:51:47','','0','4','2023-02-28 19:51:47','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','neni','','0','41677603105','Cleared','4','2023-02-28 20:20:10','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(288,'','Voucher','','2023-02-28 20:20:35','','0','4','2023-02-28 20:20:35','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed',' ','zhl','','0','41677604834','Cleared','4','2023-02-28 20:59:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(289,'zhl','Mpesa','','2023-02-28 20:21:01','','0','4','2023-02-28 20:21:01','','0','20','1','retail','0','20','1','0','0','0','0','20','0','printed',' ','sanna','','0','41677604860','Cleared','4','2023-02-28 21:00:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(290,'','Voucher','','2023-02-28 21:01:10','','0','4','2023-02-28 21:01:10','','0','150','1','retail','0','150','1','0','150','0','0','0','0','printed',' ','guards','','0','41677607269','Cleared','4','2023-02-28 21:01:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(291,'','Voucher','','2023-02-28 21:52:03','','0','4','2023-02-28 21:52:03','','0','270','1','retail','0','270','1','0','270','0','0','0','0','printed',' ','mzae','','0','41677610315','Cleared','4','2023-02-28 22:04:43','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(292,'','Cash','','2023-02-28 22:05:27','','0','4','2023-02-28 22:05:27','','220','220','1','retail','0','220','1','0','0','0','0','0','0','printed',' ','tabby','','0','41677611105','Cleared','4','2023-02-28 22:06:39','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(293,'he8','Mpesa','','2023-03-01 13:33:34','','0','4','2023-03-01 13:33:34','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed',' ','james','','0','41677666813','Cleared','4','2023-03-01 14:11:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(294,'','Voucher','','2023-03-01 13:47:00','','0','4','2023-03-01 13:47:00','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed',' ','mzae','','0','41677667619','Cleared','4','2023-03-01 13:47:47','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(295,'qzw','Mpesa','','2023-03-01 16:18:43','','0','4','2023-03-01 16:18:43','','0','1000','1','retail','0','1000','1','0','0','0','0','1000','0','printed',' ','simon','','0','41677676703','Cleared','4','2023-03-01 16:38:23','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(296,'4qgc','Mpesa','','2023-03-01 16:52:44','','0','3','2023-03-01 16:52:44','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed',' ','haijin fu','','0','31677678763','Cleared','3','2023-03-01 17:12:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(297,'1l1','Mpesa','','2023-03-01 17:00:08','','0','4','2023-03-01 17:00:08','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed',' ','victor','','0','41677679206','Cleared','4','2023-03-01 18:00:43','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(298,'PF7Y','Cash','','2023-03-01 17:48:43','','0','3','2023-03-01 17:48:43','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','ABERT','','0','31677682122','Cleared','3','2023-03-01 18:59:29','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(299,'','Voucher','','2023-03-01 17:58:21','','0','4','2023-03-01 17:58:21','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed',' ','mzae','','0','41677682699','Cleared','4','2023-03-01 17:59:05','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(300,'TM4C','Mpesa','','2023-03-01 18:55:02','','0','3','2023-03-01 18:55:02','','0','270','1','retail','0','270','1','0','0','0','0','270','0','printed',' ','RUBBY','','0','31677686091','Cleared','3','2023-03-01 18:58:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(301,'','Cash','','2023-03-01 20:42:50','','0','3','2023-03-01 20:42:50','','220','220','1','retail','0','220','1','0','0','0','0','0','0','printed',' ','301','','0','31677692559','Cleared','3','2023-03-01 20:43:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(302,'','Voucher','','2023-03-01 22:28:52','','0','3','2023-03-01 22:28:52','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed',' ','cedrick','','0','31677698930','Cleared','3','2023-03-01 22:29:59','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(303,'','Voucher','','2023-03-01 22:29:07','','0','3','2023-03-01 22:29:07','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed',' ','purity','','0','31677698946','Cleared','3','2023-03-01 22:29:36','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(304,'','Cash','','2023-03-02 10:46:37','','0','3','2023-03-02 10:46:37','','220','220','1','retail','0','220','1','0','0','0','0','0','0','printed',' ','34','','0','31677743157','Cleared','3','2023-03-02 11:52:35','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(305,'','Voucher','','2023-03-02 10:47:27','','0','3','2023-03-02 10:47:27','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed',' ','cedrick','','0','31677743245','Cleared','3','2023-03-02 11:54:24','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(306,'ib6d','Mpesa','','2023-03-02 11:09:45','','0','3','2023-03-02 11:09:45','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','heather','','0','31677744583','Cleared','3','2023-03-02 16:12:08','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(307,'0kor','Mpesa','','2023-03-02 12:39:04','','0','3','2023-03-02 12:39:04','','0','800','1','retail','0','800','1','0','0','0','0','800','0','printed',' ','felista','','0','31677749736','Cleared','3','2023-03-02 15:09:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(308,'mofj','Mpesa','','2023-03-02 14:04:13','','0','3','2023-03-02 14:04:13','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed',' ','kamande','','0','31677755051','Cleared','3','2023-03-02 18:52:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(309,'h69d','Mpesa','','2023-03-02 14:33:08','','0','3','2023-03-02 14:33:08','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed',' ','sheila','','0','31677756787','Cleared','3','2023-03-02 16:10:00','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(310,'','Voucher','','2023-03-02 15:05:22','','0','3','2023-03-02 14:59:44','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed',' ','martin','','0','31677758371','Cleared','3','2023-03-02 15:05:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(311,'','Voucher','','2023-03-02 15:04:02','','0','3','2023-03-02 15:00:04','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed',' ','kamande','','0','31677758402','Cleared','3','2023-03-02 15:04:42','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(312,'','Voucher','','2023-03-02 15:00:54','','0','3','2023-03-02 15:00:19','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed',' ','mzae','','0','31677758417','Cleared','3','2023-03-02 15:01:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(313,'w4lv','Mpesa','','2023-03-02 16:04:38','','0','3','2023-03-02 16:04:38','','0','900','1','retail','0','900','1','0','0','0','0','900','0','printed',' ','mary ann','','0','31677762270','Cleared','3','2023-03-02 16:13:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(314,'','Cash','','2023-03-02 17:47:36','','0','3','2023-03-02 17:47:36','','230','230','1','retail','0','230','1','0','0','0','0','0','0','printed',' ','314','','0','31677768435','Cleared','3','2023-03-02 18:06:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(315,'z2fp','Mpesa','','2023-03-02 17:48:29','','0','3','2023-03-02 17:48:29','','0','1100','1','retail','0','1100','1','0','0','0','0','1100','0','printed',' ','george','','0','31677768495','Cleared','3','2023-03-02 18:48:36','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(316,'gnj2','Mpesa','','2023-03-02 18:34:51','','0','3','2023-03-02 18:34:51','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','george','','0','31677771290','Cleared','3','2023-03-02 19:01:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(317,'knju','Mpesa','','2023-03-02 18:46:00','','0','3','2023-03-02 18:46:00','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed',' ','benard','','0','31677771959','Cleared','3','2023-03-02 21:37:07','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(318,'','Voucher','','2023-03-02 21:34:22','','0','3','2023-03-02 21:34:22','','0','350','1','retail','0','350','1','0','350','0','0','0','0','printed',' ','guards','','0','31677782045','Cleared','3','2023-03-02 21:36:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(319,'','Cash','','2023-03-02 21:46:47','','0','3','2023-03-02 21:46:47','','220','220','1','retail','0','220','1','0','0','0','0','0','0','printed',' ','319','','0','31677782797','Cleared','3','2023-03-02 21:49:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(320,'p8y6','Mpesa','','2023-03-03 09:36:46','','0','3','2023-03-03 09:36:46','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed',' ','elizabeth','','0','31677825405','Cleared','3','2023-03-03 11:46:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(321,'eb0u','Mpesa','','2023-03-03 11:13:50','','0','3','2023-03-03 11:13:50','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed',' ','marvin','','0','31677831229','Cleared','3','2023-03-03 11:45:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(322,'','Voucher','','2023-03-03 17:11:13','','0','3','2023-03-03 17:11:13','','0','150','1','retail','0','150','1','0','150','0','0','0','0','printed',' ','guards','','0','31677852672','Cleared','3','2023-03-03 17:35:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(323,'','Voucher','','2023-03-03 17:34:26','','0','3','2023-03-03 17:34:26','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed',' ','cedrick','','0','31677854065','Cleared','3','2023-03-03 17:35:23','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(324,'','Voucher','','2023-03-03 18:32:18','','0','4','2023-03-03 18:32:18','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed',' ','mzae','','0','41677857537','Cleared','4','2023-03-03 18:32:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(325,'y37','Mpesa','','2023-03-03 18:58:35','','0','4','2023-03-03 18:58:35','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed',' ','felix','','0','41677859113','Cleared','4','2023-03-03 19:48:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(326,'vg2','Mpesa','','2023-03-03 20:23:01','','0','4','2023-03-03 20:23:01','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','maurice','','0','41677864180','Cleared','4','2023-03-03 20:45:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(327,'','Cash','','2023-03-03 21:44:52','','0','4','2023-03-03 21:44:52','','440','440','1','retail','0','440','1','0','0','0','0','0','0','printed',' ','327','','0','41677869065','Cleared','4','2023-03-03 22:14:35','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(328,'','Cash','','2023-03-03 21:50:55','','0','4','2023-03-03 21:50:55','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','328','','0','41677869448','Cleared','4','2023-03-03 22:15:00','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(329,'','Cash','','2023-03-03 21:51:15','','0','4','2023-03-03 21:51:15','','220','220','1','retail','0','220','1','0','0','0','0','0','0','printed',' ','329','','0','41677869467','Cleared','4','2023-03-03 22:38:27','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(330,'','Cash','','2023-03-03 21:59:57','','0','4','2023-03-03 21:59:57','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','330','','0','41677869996','Cleared','4','2023-03-03 22:38:57','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(331,'','Mpesa','','2023-03-03 22:31:56','','0','4','2023-03-03 22:31:56','','0','630','1','retail','0','630','1','0','0','0','0','630','0','printed',' ','bzn','','0','41677871901','Cleared','4','2023-03-03 22:39:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(332,'','Voucher','','2023-03-03 22:45:48','','0','4','2023-03-03 22:45:48','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed',' ','mzae','','0','41677872746','Cleared','4','2023-03-03 22:46:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(333,'c4s','Mpesa','','2023-03-03 22:54:56','','0','4','2023-03-03 22:54:56','','0','315','1','retail','0','315','1','0','0','0','0','315','0','printed',' ','kola','','0','41677873284','Cleared','4','2023-03-03 23:00:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(334,'','Voucher','','2023-03-04 11:39:23','','0','4','2023-03-04 11:39:23','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed',' ','cedrick','','0','41677919162','Cleared','4','2023-03-04 11:40:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(335,'','Voucher','','2023-03-04 11:39:43','','0','4','2023-03-04 11:39:43','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed',' ','purity','','0','41677919181','Cleared','4','2023-03-04 11:41:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(336,'','Cash','','2023-03-04 12:40:01','','0','3','2023-03-04 12:40:01','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','336','','0','31677922800','Cleared','3','2023-03-04 13:18:11','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(337,'txz','Mpesa','','2023-03-04 12:42:17','','0','4','2023-03-04 12:42:17','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed',' ','ncba','','0','41677922935','Cleared','4','2023-03-04 13:10:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(338,'','Cash','','2023-03-04 13:19:09','','0','3','2023-03-04 13:19:09','','315','315','1','retail','0','315','1','0','0','0','0','0','0','new',' ','','','0','31677925126','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(339,'z66','Mpesa','','2023-03-04 13:20:44','','0','4','2023-03-04 13:20:44','','0','600','1','retail','0','600','1','0','0','0','0','600','0','printed',' ','simon','','0','41677925243','Cleared','4','2023-03-04 13:25:45','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(340,'','Voucher','','2023-03-04 14:16:24','','0','4','2023-03-04 14:16:24','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed',' ','mzae','','0','41677928583','Cleared','4','2023-03-04 14:17:04','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(341,'','Cash','','2023-03-05 10:06:13','','0','4','2023-03-05 10:06:13','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','341','','0','41677999972','Cleared','4','2023-03-05 10:13:29','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(342,'','Cash','','2023-03-05 10:12:07','','0','4','2023-03-05 10:12:07','','20','20','1','retail','0','20','1','0','0','0','0','0','0','printed',' ','342','','0','41678000326','Cleared','4','2023-03-05 10:16:24','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(343,'','Voucher','','2023-03-05 10:29:19','','0','4','2023-03-05 10:29:19','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed',' ','purity','','0','41678001358','Cleared','4','2023-03-05 10:36:48','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(344,'quo','Mpesa','','2023-03-05 10:54:39','','0','4','2023-03-05 10:54:39','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed',' ','mohammad','','0','41678002878','Cleared','4','2023-03-05 11:15:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(345,'jqq','Mpesa','','2023-03-05 11:01:38','','0','4','2023-03-05 11:01:38','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','edirisa','','0','41678003296','Cleared','4','2023-03-05 11:33:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(346,'3kx','Mpesa','','2023-03-05 11:30:54','','0','4','2023-03-05 11:30:54','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed',' ','cythia','','0','41678005045','Cleared','4','2023-03-05 12:06:05','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(347,'','Cash','','2023-03-05 15:58:42','','0','4','2023-03-05 15:58:42','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','347','','0','41678021120','Cleared','4','2023-03-05 18:12:02','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(348,'gzze','Mpesa','','2023-03-05 16:40:21','','0','3','2023-03-05 16:40:21','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed',' ','joel','','0','31678023620','Cleared','3','2023-03-05 19:13:35','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(349,'9a4w','Mpesa','','2023-03-05 17:12:38','','0','3','2023-03-05 17:12:38','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed',' ','robert','','0','31678025557','Cleared','3','2023-03-05 19:14:21','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(350,'','Cash','','2023-03-05 18:02:08','','0','3','2023-03-05 18:02:08','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','350','','0','31678028527','Cleared','3','2023-03-05 20:32:00','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(351,'gzze','Mpesa','','2023-03-05 18:12:16','','0','4','2023-03-05 18:12:16','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','joel','','0','41678029134','Cleared','3','2023-03-05 20:34:43','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(352,'','Voucher','','2023-03-05 19:19:17','','0','3','2023-03-05 19:19:17','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed',' ','cedrick','','0','31678033156','Cleared','3','2023-03-05 19:22:27','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(353,'','Voucher','','2023-03-05 19:20:15','','0','3','2023-03-05 19:20:16','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed',' ','martin','','0','31678033214','Cleared','3','2023-03-05 19:22:00','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(354,'','Voucher','','2023-03-05 19:20:46','','0','3','2023-03-05 19:20:46','','0','150','1','retail','0','150','1','0','150','0','0','0','0','printed',' ','guards','','0','31678033245','Cleared','3','2023-03-05 19:21:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(355,'6wsk','Mpesa','','2023-03-05 20:18:16','','0','3','2023-03-05 20:18:16','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed',' ','robert','','0','31678036690','Cleared','3','2023-03-05 20:58:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(356,'pftt','Mpesa','','2023-03-05 22:05:50','','0','3','2023-03-05 22:05:50','','0','315','1','retail','0','315','1','0','0','0','0','315','0','printed',' ','ruth','','0','31678043143','Cleared','3','2023-03-05 22:07:36','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(357,'','Mpesa','','2023-03-05 22:29:14','','0','3','2023-03-05 22:07:52','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed',' ','357','','0','31678043271','Cleared','3','2023-03-05 22:35:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(358,'','Voucher','','2023-03-05 22:18:48','','0','3','2023-03-05 22:18:49','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed',' ','guards','','0','31678043927','Cleared','3','2023-03-05 22:22:39','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(359,'','Cash','','2023-03-06 11:50:34','','0','3','2023-03-06 11:50:34','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','unpaid','','0','31678092632','Cleared','4','2023-03-06 22:06:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(360,'','Voucher','','2023-03-06 11:50:49','','0','3','2023-03-06 11:50:49','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed',' ','cedrick','','0','31678092648','Cleared','3','2023-03-06 16:00:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(361,'vkfs','Mpesa','','2023-03-06 12:12:57','','0','3','2023-03-06 12:12:57','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','kevin','','0','31678093976','Cleared','3','2023-03-06 16:02:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(362,'','Voucher','','2023-03-06 18:53:45','','0','4','2023-03-06 18:53:45','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed',' ','mzae','','0','41678118023','Cleared','4','2023-03-06 18:54:27','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(363,'','Cash','','2023-03-06 19:15:29','','0','4','2023-03-06 19:15:29','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','363','','0','41678119328','Cleared','4','2023-03-06 20:09:59','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(364,'4ws','Mpesa','','2023-03-06 19:37:14','','0','4','2023-03-06 19:37:14','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','mary','','0','41678120632','Cleared','4','2023-03-06 19:54:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(365,'','Voucher','','2023-03-06 20:09:33','','0','4','2023-03-06 20:09:33','','0','350','1','retail','0','350','1','0','350','0','0','0','0','printed',' ','purity','','0','41678122572','Cleared','4','2023-03-06 20:10:23','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(366,'','Voucher','','2023-03-06 22:18:09','','0','4','2023-03-06 22:18:09','','0','330','1','retail','0','330','1','0','330','0','0','0','0','printed',' ','martin','','0','41678130288','Cleared','4','2023-03-06 22:18:38','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(367,'','Voucher','','2023-03-07 09:24:51','','0','4','2023-03-07 09:24:51','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed',' ','purity','','0','41678170290','Cleared','4','2023-03-07 09:25:35','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(368,'','Voucher','','2023-03-07 09:54:34','','0','4','2023-03-07 09:54:34','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed',' ','guards','','0','41678172073','Cleared','4','2023-03-07 21:56:36','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(369,'2nk','Mpesa','','2023-03-07 10:48:39','','0','4','2023-03-07 10:48:39','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed',' ','dennis','','0','41678175318','Cleared','4','2023-03-07 15:23:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(370,'w4z','Mpesa','','2023-03-07 12:55:03','','0','4','2023-03-07 12:55:03','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','kevin','','0','41678182902','Cleared','4','2023-03-07 13:16:39','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(371,'jn6','Mpesa','','2023-03-07 13:11:26','','0','4','2023-03-07 13:11:26','','0','315','1','retail','0','315','1','0','0','0','0','315','0','printed',' ','andrew','','0','41678183873','Cleared','4','2023-03-07 13:15:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(372,'7fm','Mpesa','','2023-03-07 14:22:45','','0','4','2023-03-07 14:22:45','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed',' ','martin','','0','41678188164','Cleared','4','2023-03-07 15:45:27','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(373,'','Cash','','2023-03-07 15:23:40','','0','4','2023-03-07 15:23:40','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','mchina','','0','41678191818','Cleared','4','2023-03-07 16:03:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(374,'oij','Mpesa','','2023-03-07 16:50:44','','0','4','2023-03-07 16:50:44','','0','700','1','retail','0','700','1','0','0','0','0','700','0','printed',' ','ncba','','0','41678197040','Cleared','4','2023-03-07 19:14:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(375,'','Voucher','','2023-03-07 16:51:43','','0','4','2023-03-07 16:51:43','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed',' ','siz\\evelyn','','0','41678197102','Cleared','4','2023-03-07 16:52:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(376,'','Voucher','','2023-03-07 17:35:55','','0','4','2023-03-07 17:35:55','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed',' ','evelyne','','0','41678199753','Cleared','4','2023-03-07 17:36:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(377,'','Voucher','','2023-03-07 17:37:33','','0','4','2023-03-07 17:37:33','','0','400','1','retail','0','400','1','0','400','0','0','0','0','printed',' ','evelyne','','0','41678199849','Cleared','4','2023-03-07 17:38:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(378,'','Cash','','2023-03-07 17:49:33','','0','4','2023-03-07 17:49:33','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','378','','0','41678200571','Cleared','4','2023-03-07 19:14:48','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(379,'','Voucher','','2023-03-07 18:26:10','','0','4','2023-03-07 18:26:10','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed',' ','evelyne','','0','41678202769','Cleared','4','2023-03-07 18:26:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(380,'','Cash','','2023-03-07 18:26:25','','0','4','2023-03-07 18:26:25','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','380','','0','41678202784','Cleared','4','2023-03-07 19:15:10','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(381,'','Cash','','2023-03-07 18:56:52','','0','4','2023-03-07 18:56:52','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','381','','0','41678204611','Cleared','4','2023-03-07 19:15:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(382,'881','Mpesa','','2023-03-07 18:57:12','','0','4','2023-03-07 18:57:12','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','dan','','0','41678204630','Cleared','4','2023-03-07 21:55:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(383,'9yz','Mpesa','','2023-03-07 19:03:04','','0','4','2023-03-07 19:03:04','','0','30','1','retail','0','30','1','0','0','0','0','30','0','printed',' ','fredric','','0','41678204983','Cleared','4','2023-03-07 21:55:49','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(384,'','Voucher','','2023-03-08 09:43:23','','0','4','2023-03-08 09:43:23','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed',' ','purity','','0','41678257802','Cleared','4','2023-03-08 15:23:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(385,'','Voucher','','2023-03-08 15:22:20','','0','4','2023-03-08 15:22:20','','0','150','1','retail','0','150','1','0','150','0','0','0','0','printed',' ','morning\\guards','','0','41678278139','Cleared','4','2023-03-08 15:24:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(386,'ox55','Mpesa','','2023-03-08 17:07:41','','0','4','2023-03-08 17:07:41','','0','600','1','retail','0','600','1','0','0','0','0','600','0','printed',' ','morris','','0','41678284451','Cleared','3','2023-03-08 18:39:11','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(387,'','Voucher','','2023-03-08 18:03:23','','0','3','2023-03-08 18:03:23','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed',' ','cedrick','','0','31678287802','Cleared','3','2023-03-08 18:13:45','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(388,'xa01','Mpesa','','2023-03-08 18:04:18','','0','3','2023-03-08 18:04:18','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','martin','','0','31678287857','Cleared','3','2023-03-08 18:31:42','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(389,'','Cash','','2023-03-08 18:10:12','','0','4','2023-03-08 18:10:12','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','389','','0','41678288207','Cleared','3','2023-03-08 19:33:04','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(390,'ox55','Mpesa','','2023-03-08 18:12:59','','0','3','2023-03-08 18:12:59','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','morris','','0','31678288377','Cleared','3','2023-03-08 18:40:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(391,'','Cash','','2023-03-08 19:16:14','','0','3','2023-03-08 19:16:14','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','391','','0','31678292169','Cleared','3','2023-03-08 19:32:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(392,'','Cash','','2023-03-08 20:14:26','','0','3','2023-03-08 20:14:26','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','392','','0','31678295665','Cleared','3','2023-03-08 20:37:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(393,'6u1l','Mpesa','','2023-03-08 21:19:50','','0','3','2023-03-08 21:19:50','','0','220','1','retail','0','220','1','0','0','0','0','220','0','printed',' ','kiamba','','0','31678299575','Cleared','3','2023-03-08 21:26:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(394,'','Voucher','','2023-03-08 22:06:37','','0','3','2023-03-08 22:06:37','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed',' ','mzae','','0','31678302396','Cleared','3','2023-03-08 22:12:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(395,'','Cash','','2023-03-09 11:48:50','','0','3','2023-03-09 11:48:50','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed',' ','395','','0','31678351724','Cleared','3','2023-03-09 12:39:35','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(396,'ut6g','Mpesa','','2023-03-09 17:08:43','','0','3','2023-03-09 15:38:54','','0','600','1','retail','0','600','1','0','0','0','0','600','0','printed',' ','erick','','0','31678365533','Cleared','3','2023-03-09 17:59:49','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(397,'','Voucher','','2023-03-09 15:39:27','','0','3','2023-03-09 15:39:27','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed',' ','cedrick','','0','31678365566','Cleared','3','2023-03-09 16:15:39','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(398,'oxil','Mpesa','','2023-03-09 17:43:11','','0','3','2023-03-09 17:43:11','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','fanuel','','0','31678372990','Cleared','3','2023-03-09 18:00:57','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(399,'grgj','Mpesa','','2023-03-09 20:39:57','','0','3','2023-03-09 20:39:57','','0','700','1','retail','0','700','1','0','0','0','0','700','0','printed',' ','godwin','','0','31678383592','Cleared','3','2023-03-09 22:52:56','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(400,'','Cash','','2023-03-09 22:34:07','','0','3','2023-03-09 22:34:07','','150','150','1','retail','0','150','1','0','0','0','0','0','0','new',' ','','','0','31678390446','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(401,'','Voucher','','2023-03-09 22:45:33','','0','3','2023-03-09 22:45:33','','0','600','1','retail','0','600','1','0','600','0','0','0','0','printed',' ','guards','','0','31678391107','Cleared','3','2023-03-09 22:50:15','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(402,'','Cash','','2023-03-09 23:03:36','','0','3','2023-03-09 23:03:36','','200','200','1','retail','0','200','1','0','0','0','0','0','0','new',' ','','','0','31678392214','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(403,'34ou','Mpesa','','2023-03-10 12:04:32','','0','3','2023-03-10 11:39:42','','0','550','1','retail','0','550','1','0','0','0','0','550','0','printed',' ','fredrick','','0','31678437580','Cleared','3','2023-03-10 16:00:07','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(404,'','Voucher','','2023-03-10 16:00:32','','0','3','2023-03-10 16:00:32','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed',' ','cedrick]','','0','31678453230','Cleared','3','2023-03-10 16:01:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(405,'','Voucher','','2023-03-10 16:06:47','','0','4','2023-03-10 16:06:47','','0','150','1','retail','0','150','1','0','150','0','0','0','0','printed',' ','purity','','0','41678453606','Cleared','4','2023-03-10 20:46:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(406,'53s','Mpesa','','2023-03-10 17:45:11','','0','4','2023-03-10 17:45:11','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed',' ','cate','','0','41678459510','Cleared','4','2023-03-10 20:47:00','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(407,'f6k','Mpesa','','2023-03-10 17:47:11','','0','3','2023-03-10 17:47:11','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed',' ','407','','0','31678459630','Cleared','4','2023-03-10 23:09:42','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(408,'3fsy','Mpesa','','2023-03-10 17:58:29','','0','3','2023-03-10 17:58:29','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','felix','','0','31678460308','Cleared','3','2023-03-10 18:56:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(409,'','Cash','','2023-03-10 18:16:03','','0','4','2023-03-10 18:16:03','','280','280','1','retail','0','280','1','0','0','0','0','0','0','printed',' ','409','','0','41678461362','Cleared','4','2023-03-10 20:47:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(410,'f6k','Mpesa','','2023-03-10 18:16:43','','0','4','2023-03-10 18:16:43','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed',' ','410','','0','41678461401','Cleared','4','2023-03-10 23:07:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(411,'oshy','Mpesa','','2023-03-10 18:26:36','','0','3','2023-03-10 18:26:36','','0','15','1','retail','0','15','1','0','0','0','0','15','0','printed',' ','hawa','','0','31678461995','Cleared','3','2023-03-10 18:55:48','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(412,'cph','Mpesa','','2023-03-10 18:27:03','','0','3','2023-03-10 18:27:03','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed',' ','linar','','0','31678462022','Cleared','3','2023-03-10 22:23:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(413,'','Voucher','','2023-03-10 18:34:21','','0','3','2023-03-10 18:34:21','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed',' ','kamande','','0','31678462460','Cleared','3','2023-03-10 18:52:12','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(414,'','Voucher','','2023-03-10 18:35:42','','0','3','2023-03-10 18:35:42','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed',' ','rogers','','0','31678462541','Cleared','3','2023-03-10 18:37:23','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(415,'','Cash','','2023-03-10 19:00:01','','0','3','2023-03-10 19:00:01','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','415','','0','31678464000','Cleared','3','2023-03-10 19:02:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(416,'f6k','Mpesa','','2023-03-10 19:05:50','','0','4','2023-03-10 19:05:50','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed',' ','416','','0','41678464349','Cleared','4','2023-03-10 23:07:10','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(417,'','Voucher','','2023-03-10 20:09:59','','0','4','2023-03-10 20:09:59','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed',' ','guards','','0','41678468197','Cleared','4','2023-03-10 22:19:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(418,'f6k','Mpesa','','2023-03-10 20:30:18','','0','4','2023-03-10 20:30:18','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed',' ','emmanuel','','0','41678469417','Cleared','4','2023-03-10 23:06:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(419,'xzj','Mpesa','','2023-03-10 20:42:15','','0','4','2023-03-10 20:31:59','','0','850','1','retail','0','850','1','0','0','0','0','850','0','printed',' ','kipkiai','','0','41678469484','Cleared','4','2023-03-10 20:49:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(420,'kxf','Mpesa','','2023-03-10 20:47:56','','0','4','2023-03-10 20:47:56','','0','60','1','retail','0','60','1','0','0','0','0','60','0','printed',' ','420','','0','41678470470','Cleared','4','2023-03-10 23:06:39','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(421,'','Voucher','','2023-03-10 21:43:17','','0','4','2023-03-10 21:43:17','','0','350','1','retail','0','350','1','0','350','0','0','0','0','printed',' ','siz eve','','0','41678473796','Cleared','4','2023-03-10 21:44:17','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(422,'','Voucher','','2023-03-10 21:43:46','','0','4','2023-03-10 21:43:46','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed',' ','eve','','0','41678473825','Cleared','4','2023-03-10 21:44:39','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(423,'','Voucher','','2023-03-10 21:44:56','','0','4','2023-03-10 21:44:56','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed',' ','family eve','','0','41678473895','Cleared','4','2023-03-10 21:45:32','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(424,'','Voucher','','2023-03-10 21:45:46','','0','4','2023-03-10 21:45:46','','0','400','1','retail','0','400','1','0','400','0','0','0','0','printed',' ','evelyn','','0','41678473941','Cleared','4','2023-03-10 21:46:08','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(425,'f6k','Mpesa','','2023-03-10 22:19:19','','0','4','2023-03-10 22:19:19','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed',' ','emmanuel','','0','41678475958','Cleared','4','2023-03-10 23:05:29','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(426,'','Cash','','2023-03-10 22:39:42','','0','4','2023-03-10 22:39:42','','315','315','1','retail','0','315','1','0','0','0','0','0','0','printed',' ','426','','0','41678477171','Cleared','4','2023-03-10 22:40:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(427,'','Cash','','2023-03-10 22:46:33','','0','4','2023-03-10 22:46:33','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed',' ','427','','0','41678477592','Cleared','4','2023-03-10 23:04:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(428,'xy1','Mpesa','','2023-03-10 22:51:12','','0','4','2023-03-10 22:51:12','','0','315','1','retail','0','315','1','0','0','0','0','315','0','printed',' ','428','','0','41678477862','Cleared','4','2023-03-10 23:04:47','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(429,'ayz','Cash','','2023-03-11 10:21:37','','0','4','2023-03-11 10:21:37','','1950','1950','1','retail','0','1950','1','0','0','0','0','0','0','printed',' ','milka','','0','41678518659','Cleared','4','2023-03-11 10:28:36','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(430,'','Voucher','','2023-03-11 10:28:53','','0','4','2023-03-11 10:28:53','','0','150','1','retail','0','150','1','0','150','0','0','0','0','printed',' ','guards','','0','41678519732','Cleared','4','2023-03-11 10:33:29','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(431,'','Voucher','','2023-03-11 10:49:32','','0','4','2023-03-11 10:49:32','','0','350','1','retail','0','350','1','0','350','0','0','0','0','printed',' ','purity','','0','41678520971','Cleared','4','2023-03-11 10:50:11','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(432,'','Cash','','2023-03-11 13:15:10','','0','4','2023-03-11 13:15:10','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','432','','0','41678529701','Cleared','4','2023-03-11 13:17:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(433,'hfp','Mpesa','','2023-03-11 15:40:20','','0','4','2023-03-11 15:40:20','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','hfp','','','0','41678538419','Cleared','5','2023-03-11 18:58:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(434,'','Cash','','2023-03-11 18:14:06','','0','3','2023-03-11 18:14:06','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','31678546426','Cleared','3','2023-03-11 19:34:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(435,'','Voucher','','2023-03-11 18:24:58','','0','5','2023-03-11 18:24:58','','0','400','1','retail','0','400','1','0','400','0','0','0','0','printed','','','','0','51678548297','Cleared','5','2023-03-11 19:53:05','','','','','','',0.00,0.00,0,'',NULL,'Ksh ',NULL,NULL,0.00),(436,'17fy','Mpesa','','2023-03-11 18:33:57','','0','3','2023-03-11 18:33:57','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','31678548828','Cleared','3','2023-03-11 19:36:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(437,'7fy','Mpesa','','2023-03-11 18:49:56','','0','4','2023-03-11 18:49:56','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41678549766','Cleared','5','2023-03-11 19:29:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(438,'','Cash','','2023-03-11 19:01:09','','0','3','2023-03-11 19:01:09','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed','','','','0','31678550430','Cleared','3','2023-03-11 19:33:17','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(439,'mzae','Voucher','','2023-03-11 19:04:29','','0','3','2023-03-11 19:04:29','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','','','','0','31678550668','Cleared','3','2023-03-11 19:33:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(440,'','Cash','','2023-03-11 19:05:39','','0','3','2023-03-11 19:05:39','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31678550736','Cleared','3','2023-03-11 22:33:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(441,'','Mpesa','','2023-03-11 19:06:26','','0','3','2023-03-11 19:06:26','','0','315','1','retail','0','315','1','0','0','0','0','315','0','printed','','','','0','31678550775','Cleared','3','2023-03-11 20:42:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(442,'ayz','Mpesa','','2023-03-11 19:17:56','','0','4','2023-03-11 19:17:56','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41678551464','Cleared','4','2023-03-11 19:18:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(443,'rh2r','Mpesa','','2023-03-11 20:24:05','','0','3','2023-03-11 20:24:05','','0','1200','1','retail','0','1200','1','0','0','0','0','1200','0','printed','rh2r','','','0','31678555427','Cleared','3','2023-03-11 20:39:21','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(444,'0f7v','Mpesa','','2023-03-11 20:39:59','','0','3','2023-03-11 20:39:59','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31678556395','Cleared','3','2023-03-11 20:40:35','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(445,'','Voucher','','2023-03-11 21:30:31','','0','3','2023-03-11 21:30:31','','0','350','1','retail','0','350','1','0','350','0','0','0','0','printed','','','','0','31678559430','Cleared','3','2023-03-11 21:36:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(446,'kzj3','Mpesa','','2023-03-11 21:41:33','','0','3','2023-03-11 21:41:33','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','kzj3','','','0','31678560092','Cleared','3','2023-03-11 22:34:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(447,'','Voucher','','2023-03-11 21:43:48','','0','3','2023-03-11 21:43:48','3','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','','','','0','31678560227','Cleared','3','2023-03-11 21:44:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(448,'','Voucher','','2023-03-11 21:45:51','','0','3','2023-03-11 21:45:51','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','','','','0','31678560348','Cleared','3','2023-03-11 21:46:42','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(449,'','Voucher','','2023-03-11 22:32:28','','0','3','2023-03-11 22:32:28','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','','','','0','31678563144','Cleared','3','2023-03-11 22:32:48','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(450,'','Voucher','','2023-03-11 22:41:46','','0','3','2023-03-11 22:41:46','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','','','','0','31678563704','Cleared','3','2023-03-11 22:42:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(451,'tzqt','Mpesa','','2023-03-12 11:24:46','','0','3','2023-03-12 11:24:46','','0','670','1','retail','0','670','1','0','0','0','0','670','0','printed','','','','0','31678609436','Cleared','3','2023-03-12 17:19:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(452,'','Voucher','','2023-03-12 11:26:21','','0','3','2023-03-12 11:26:21','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','','','','0','31678609578','Cleared','3','2023-03-12 11:30:08','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(453,'','Voucher','','2023-03-12 17:17:17','','0','3','2023-03-12 17:17:17','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','','','','0','31678630636','Cleared','3','2023-03-12 17:18:24','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(454,'','Voucher','','2023-03-12 17:17:40','','0','3','2023-03-12 17:17:40','','0','150','1','retail','0','150','1','0','150','0','0','0','0','printed','','','','0','31678630659','Cleared','3','2023-03-12 17:18:04','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(455,'','Cash','','2023-03-12 17:35:04','','0','4','2023-03-12 17:35:04','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed','','','','0','41678631690','Cleared','4','2023-03-12 21:20:35','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(456,'fgj','Mpesa','','2023-03-12 18:42:19','','0','4','2023-03-12 18:42:19','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','f6j','','','0','41678635726','Cleared','4','2023-03-12 20:39:45','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(457,'fgj','Mpesa','','2023-03-12 19:10:29','','0','4','2023-03-12 19:10:29','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','41678637427','Cleared','4','2023-03-12 20:39:23','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(458,'','Voucher','','2023-03-12 19:16:40','','0','3','2023-03-12 19:16:40','','0','400','1','retail','0','400','1','0','400','0','0','0','0','printed','','','','0','31678637796','Cleared','3','2023-03-12 19:17:00','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(459,'','Cash','','2023-07-14 21:17:59','','0','3','2023-03-12 19:17:38','','1150','1150','1','retail','0','1150','1','0','0','0','0','0','0','new',' ','','','0','31678637854','No','5','2023-07-14 21:17:59','','','','','','',0.00,0.00,0,'',NULL,'Ksh ',NULL,NULL,0.00),(460,'mbi','Mpesa','','2023-03-12 20:36:14','','0','3','2023-03-12 20:36:14','','0','600','1','retail','0','600','1','0','0','0','0','600','0','printed','','','','0','31678642565','Cleared','4','2023-03-12 21:35:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(461,'mbi','Mpesa','','2023-03-12 21:20:02','','0','4','2023-03-12 21:20:02','','0','700','1','retail','0','700','1','0','0','0','0','700','0','printed','','','','0','41678645185','Cleared','4','2023-03-12 21:34:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(462,'','Voucher','','2023-03-13 09:29:38','','0','4','2023-03-13 09:29:38','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','','','','0','41678688967','Cleared','4','2023-03-13 18:59:39','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(463,'','Cash','','2023-03-13 16:51:52','','0','4','2023-03-13 16:51:52','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed','','','','0','41678715511','Cleared','4','2023-03-13 16:52:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(464,'','Cash','','2023-03-13 17:30:44','','0','4','2023-03-13 17:30:44','','320','320','1','retail','0','320','1','0','0','0','0','0','0','printed','','','','0','41678717819','Cleared','4','2023-03-13 18:59:17','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(465,'','Voucher','','2023-03-13 17:54:57','','0','4','2023-03-13 17:54:57','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','','','','0','41678719296','Cleared','4','2023-03-13 18:58:33','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(466,'','Cash','','2023-03-13 18:09:28','','0','4','2023-03-13 18:09:28','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','41678720166','Cleared','4','2023-03-13 18:59:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(467,'','Cash','','2023-03-13 18:33:07','','0','4','2023-03-13 18:33:07','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41678721586','Cleared','5','2023-03-17 21:02:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(468,'','Cash','','2023-03-13 18:41:00','','0','4','2023-03-13 18:41:00','','270','270','1','retail','0','270','1','0','0','0','0','0','0','printed','','','','0','41678722053','Cleared','4','2023-03-13 18:43:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(469,'','Cash','','2023-03-13 18:43:24','','0','4','2023-03-13 18:43:24','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41678722199','Cleared','4','2023-03-13 18:58:47','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(470,'','Voucher','','2023-03-14 09:45:41','','0','4','2023-03-14 09:45:41','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','','','','0','41678776337','Cleared','4','2023-03-14 10:18:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(471,'0sh','Mpesa','','2023-03-14 10:18:23','','0','4','2023-03-14 10:18:23','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41678778302','Cleared','4','2023-03-14 18:21:00','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(472,'','Cash','','2023-03-14 10:58:00','','0','4','2023-03-14 10:58:00','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41678780676','Cleared','3','2023-03-14 20:46:43','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(473,'c02','Mpesa','','2023-03-14 15:14:09','','0','4','2023-03-14 15:14:09','','0','600','1','retail','0','600','1','0','0','0','0','600','0','printed','','','','0','41678796043','Cleared','4','2023-03-14 15:56:36','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(474,'9ne8','Mpesa','','2023-03-14 16:51:17','','0','3','2023-03-14 16:51:17','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','9ne8','','','0','31678801873','Cleared','3','2023-03-14 21:38:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(475,'','Voucher','','2023-03-14 17:25:32','','0','3','2023-03-14 17:25:32','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','','','','0','31678803930','Cleared','3','2023-03-14 17:59:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(476,'','Voucher','','2023-03-14 17:26:24','','0','3','2023-03-14 17:26:24','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','','','','0','31678803981','Cleared','3','2023-03-14 17:59:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(477,'joso','Mpesa','','2023-03-14 17:29:15','','0','3','2023-03-14 17:29:15','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31678804152','Cleared','3','2023-03-14 17:58:10','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(478,'','Cash','','2023-03-14 18:14:02','','0','3','2023-03-14 18:14:02','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','','','','0','31678806837','Cleared','3','2023-03-14 19:53:16','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(479,'','Mpesa','','2023-03-14 18:17:02','','0','4','2023-03-14 18:17:02','','0','350','1','retail','0','350','1','0','0','0','0','350','0','new','','','','0','41678807020','Pending','5','2023-03-17 21:00:00','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(480,'','Cash','','2023-03-14 18:50:08','','0','4','2023-03-14 18:50:08','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41678809007','Cleared','3','2023-03-14 20:45:56','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(481,'','Cash','','2023-03-14 19:30:03','','0','3','2023-03-14 19:30:03','','0','600','1','retail','0','600','1','0','600','0','0','0','0','printed','','','','0','31678811390','Cleared','3','2023-03-14 20:43:38','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(482,'','Voucher','','2023-03-14 19:32:17','','0','3','2023-03-14 19:32:17','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','','','','0','31678811534','Cleared','3','2023-03-14 19:53:37','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(483,'','Cash','','2023-03-14 20:13:23','','0','3','2023-03-14 20:13:23','','0','220','1','retail','0','220','1','0','220','0','0','0','0','printed','','','','0','31678813990','Cleared','3','2023-03-14 22:06:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(484,'','Voucher','','2023-03-14 21:03:46','','0','3','2023-03-14 21:03:46','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','','','','0','31678817021','Cleared','3','2023-03-14 21:09:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(485,'','Voucher','','2023-03-14 21:08:49','','0','3','2023-03-14 21:08:49','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','','','','0','31678817078','Cleared','3','2023-03-14 21:09:10','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(486,'wbwu','Mpesa','','2023-03-15 13:30:05','','0','3','2023-03-15 13:30:05','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','31678876200','Cleared','3','2023-03-15 21:24:47','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(487,'','Voucher','','2023-03-15 13:30:34','','0','3','2023-03-15 13:30:34','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','','','','0','31678876231','Cleared','3','2023-03-15 16:07:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(488,'','Cash','','2023-03-15 15:05:25','','0','3','2023-03-15 15:05:25','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','31678881923','Cleared','3','2023-03-15 16:07:29','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(489,'vj1j','Mpesa','','2023-03-15 15:07:03','','0','3','2023-03-15 15:07:03','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','31678882020','Cleared','3','2023-03-15 16:45:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(490,'','Voucher','','2023-03-15 15:08:09','','0','3','2023-03-15 15:08:09','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','','','','0','31678882075','Cleared','3','2023-03-15 16:07:12','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(491,'','Voucher','','2023-03-15 16:09:38','','0','3','2023-03-15 16:09:38','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','','','','0','31678885777','Cleared','3','2023-03-15 16:10:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(492,'','Voucher','','2023-03-15 16:10:10','','0','3','2023-03-15 16:10:10','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','','','','0','31678885806','Cleared','3','2023-03-15 16:10:42','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(493,'301v','Mpesa','','2023-03-15 16:42:36','','0','3','2023-03-15 16:42:36','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31678887718','Cleared','3','2023-03-15 16:43:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(494,'1k3z','Mpesa','','2023-03-15 17:08:25','','0','3','2023-03-15 17:08:25','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31678889297','Cleared','3','2023-03-15 17:10:40','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(495,'','Voucher','','2023-03-15 18:32:20','','0','5','2023-03-15 18:32:20','','0','350','1','retail','0','350','1','0','350','0','0','0','0','printed','','','','0','51678894339','Cleared','5','2023-03-15 18:44:54','','','','','','',0.00,0.00,0,'',NULL,'Ksh ',NULL,NULL,0.00),(496,'ugwj','Mpesa','','2023-03-15 18:55:43','','0','3','2023-03-15 18:55:43','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','31678895741','Cleared','3','2023-03-15 21:21:04','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(497,'','Cash','','2023-03-15 21:15:49','','0','3','2023-03-15 21:15:49','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed','','','','0','31678904133','Cleared','3','2023-03-15 22:17:39','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(498,'','Voucher','','2023-03-15 21:18:34','','0','3','2023-03-15 21:18:34','','0','520','1','retail','0','520','1','0','520','0','0','0','0','printed','cousin\r\n','','','0','31678904240','Cleared','3','2023-03-15 21:19:48','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(499,'','Voucher','','2023-03-15 22:01:45','','0','3','2023-03-15 22:01:45','','0','600','1','retail','0','600','1','0','600','0','0','0','0','printed','guards\r\n','','','0','31678906868','Cleared','3','2023-03-15 22:16:08','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(500,'kouk','Mpesa','','2023-03-16 11:29:50','','0','3','2023-03-16 11:29:50','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','31678955388','Cleared','3','2023-03-16 20:07:34','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(501,'xvl3','Mpesa','','2023-03-16 14:25:51','','0','3','2023-03-16 14:25:51','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31678965950','Cleared','3','2023-03-16 14:39:11','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(502,'','Voucher','','2023-03-16 14:28:22','','0','3','2023-03-16 14:28:22','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','','','','0','31678966101','Cleared','3','2023-03-16 14:37:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(503,'','Voucher','','2023-03-16 14:30:33','','0','3','2023-03-16 14:30:33','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','','','','0','31678966232','Cleared','3','2023-03-16 14:37:27','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(504,'','Voucher','','2023-03-16 14:33:01','','0','3','2023-03-16 14:33:01','','0','150','1','retail','0','150','1','0','150','0','0','0','0','printed','','','','0','31678966380','Cleared','3','2023-03-16 14:39:40','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(505,'','Cash','','2023-03-16 19:43:20','','0','4','2023-03-16 19:43:20','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41678984998','Cleared','4','2023-03-16 21:04:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(506,'','Voucher','','2023-03-16 20:04:40','','0','4','2023-03-16 20:04:40','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','guards\r\n','','','0','41678986279','Cleared','4','2023-03-16 20:06:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(507,'cn2','Mpesa','','2023-03-16 20:08:16','','0','3','2023-03-16 20:08:16','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','31678986494','Cleared','4','2023-03-16 22:14:00','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(508,'j6j','Mpesa','','2023-03-16 21:03:52','','0','4','2023-03-16 21:03:52','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','41678989829','Cleared','4','2023-03-16 22:10:08','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(509,'fus','Mpesa','','2023-03-17 08:55:24','','0','4','2023-03-17 08:55:24','','0','450','1','retail','0','450','1','0','0','0','0','450','0','printed','','','','0','41679032516','Cleared','4','2023-03-17 10:09:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(510,'fus','Mpesa','','2023-03-17 08:55:45','','0','4','2023-03-17 08:55:45','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','41679032540','Cleared','4','2023-03-17 10:10:16','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(511,'2e37','Mpesa','','2023-03-17 11:03:45','','0','3','2023-03-17 11:03:45','','0','370','1','retail','0','370','1','0','0','0','0','370','0','printed','2e37','','','0','31679040184','Cleared','3','2023-03-17 11:49:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(512,'','Cash','','2023-03-17 11:29:08','','0','3','2023-03-17 11:29:08','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31679041747','Cleared','3','2023-03-17 21:34:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(513,'oyb','Mpesa','','2023-03-17 13:05:09','','0','4','2023-03-17 13:05:09','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41679047508','Cleared','4','2023-03-17 13:39:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(514,'g5c2','Mpesa','','2023-03-17 14:35:05','','0','3','2023-03-17 14:35:05','','0','270','1','retail','0','270','1','0','0','0','0','270','0','printed','','','','0','31679052893','Cleared','3','2023-03-17 15:13:16','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(515,'','Voucher','','2023-03-17 14:55:59','','0','4','2023-03-17 14:55:59','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','','','','0','41679054158','Cleared','4','2023-03-17 14:57:17','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(516,'psm','Mpesa','','2023-03-17 17:09:08','','0','4','2023-03-17 17:09:08','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41679062147','Cleared','4','2023-03-17 17:39:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(517,'w3c','Mpesa','','2023-03-17 17:32:14','','0','4','2023-03-17 17:32:14','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','w3c','','','0','41679063532','Cleared','4','2023-03-17 20:09:45','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(518,'','Cash','','2023-03-17 18:28:21','','0','4','2023-03-17 18:28:21','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed','','','','0','41679066899','Cleared','4','2023-03-17 20:10:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(519,'06em','Mpesa','','2023-03-17 18:44:17','','0','3','2023-03-17 18:44:17','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','31679067856','Cleared','3','2023-03-17 20:13:57','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(520,'srua','Mpesa','','2023-03-17 18:48:24','','0','3','2023-03-17 18:48:24','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31679068103','Cleared','3','2023-03-17 20:12:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(521,'ovz','Mpesa','','2023-03-17 20:08:32','','0','4','2023-03-17 20:08:32','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41679072911','Cleared','4','2023-03-17 20:39:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(522,'ovz','Mpesa','','2023-03-17 20:08:57','','0','4','2023-03-17 20:08:57','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41679072935','Cleared','4','2023-03-17 20:38:21','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(523,'map','Mpesa','','2023-03-17 21:18:32','','0','4','2023-03-17 21:18:32','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41679077110','Cleared','4','2023-03-17 21:54:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(524,'oz4','Mpesa','','2023-03-17 21:19:17','','0','4','2023-03-17 21:19:17','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41679077151','Cleared','4','2023-03-17 21:55:39','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(525,'','Cash','','2023-03-17 21:31:31','','0','3','2023-03-17 21:31:31','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31679077889','Cleared','3','2023-03-17 22:26:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(526,'','Voucher','','2023-03-17 21:33:11','','0','3','2023-03-17 21:33:11','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','mzae\r\n','','','0','31679077989','Cleared','3','2023-03-17 21:37:16','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(527,'','Voucher','','2023-03-17 22:18:52','','0','3','2023-03-17 22:18:52','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','cedrick\r\n','','','0','31679080731','Cleared','3','2023-03-17 22:24:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(528,'','Voucher','','2023-03-17 22:20:47','','0','3','2023-03-17 22:20:47','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','purity\r\n','','','0','31679080845','Cleared','3','2023-03-17 22:22:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(529,'mon','Mpesa','','2023-03-18 10:56:33','','0','4','2023-03-18 10:56:33','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41679126191','Cleared','4','2023-03-18 17:49:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(530,'','Cash','','2023-03-18 10:56:58','','0','4','2023-03-18 10:56:58','','150','150','1','retail','0','150','1','0','0','0','0','0','0','new',' ','','','0','41679126217','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(531,'kdz','Mpesa','','2023-03-18 11:22:18','','0','4','2023-03-18 11:22:18','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','41679127705','Cleared','4','2023-03-18 11:25:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(532,'rkdz','Mpesa','','2023-03-18 11:27:34','','0','3','2023-03-18 11:27:34','','0','600','1','retail','0','600','1','0','0','0','0','600','0','printed','','','','0','31679128006','Cleared','3','2023-03-18 18:36:12','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(533,'','Cash','','2023-03-18 11:43:40','','0','3','2023-03-18 11:43:40','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','31679129019','Cleared','3','2023-03-18 18:36:34','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(534,'9ry','Mpesa','','2023-03-18 17:05:22','','0','4','2023-03-18 17:05:22','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41679148320','Cleared','4','2023-03-18 17:50:15','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(535,'gdlu','Mpesa','','2023-03-18 18:28:58','','0','3','2023-03-18 18:28:58','','0','800','1','retail','0','800','1','0','0','0','0','800','0','printed','','','','0','31679153292','Cleared','3','2023-03-18 21:32:57','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(536,'dlu','Mpesa','','2023-03-18 18:30:12','','0','4','2023-03-18 18:30:12','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','kdz','','','0','41679153411','Cleared','4','2023-03-18 21:21:42','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(537,'','Voucher','','2023-03-18 18:37:12','','0','3','2023-03-18 18:37:12','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','purity','','','0','31679153831','Cleared','3','2023-03-18 18:41:38','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(538,'','Voucher','','2023-03-18 18:38:50','','0','3','2023-03-18 18:38:50','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','','','','0','31679153929','Cleared','3','2023-03-18 18:41:08','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(539,'','Voucher','','2023-03-18 18:39:04','','0','3','2023-03-18 18:39:04','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','manager\r\n','','','0','31679153942','Cleared','3','2023-03-18 18:40:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(540,'','Voucher','','2023-03-18 21:18:37','','0','4','2023-03-18 21:18:37','','0','150','1','retail','0','150','1','0','150','0','0','0','0','printed','','','','0','41679163505','Cleared','4','2023-03-18 21:20:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(541,'','Cash','','2023-03-19 12:32:26','','0','3','2023-03-19 12:32:26','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','31679218345','Cleared','3','2023-03-19 13:25:16','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(542,'','Cash','','2023-03-19 14:18:35','','0','3','2023-03-19 14:18:35','','630','630','1','retail','0','630','1','0','0','0','0','0','0','printed','','','','0','31679224697','Cleared','3','2023-03-19 14:19:07','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(543,'','Cash','','2023-03-19 14:47:21','','0','4','2023-03-19 14:47:21','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed','','','','0','41679226440','Cleared','4','2023-03-19 21:51:48','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(544,'','Cash','','2023-03-19 15:09:02','','0','3','2023-03-19 15:09:02','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed','','','','0','31679227740','Cleared','3','2023-03-19 18:37:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(545,'','Voucher','','2023-03-19 15:24:45','','0','3','2023-03-19 15:24:45','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','','','','0','31679228684','Cleared','3','2023-03-19 16:59:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(546,'','Voucher','','2023-03-19 15:26:35','','0','3','2023-03-19 15:26:35','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','purity','','','0','31679228794','Cleared','3','2023-03-19 16:58:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(547,'','Voucher','','2023-03-19 15:27:14','','0','3','2023-03-19 15:27:14','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','cedrick\r\n','','','0','31679228832','Cleared','3','2023-03-19 16:58:24','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(548,'mb8','Mpesa','','2023-03-19 15:31:54','','0','4','2023-03-19 15:31:54','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41679229113','Cleared','4','2023-03-19 21:52:32','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(549,'1w2','Mpesa','','2023-03-19 16:51:35','','0','4','2023-03-19 16:51:35','','0','600','1','retail','0','600','1','0','0','0','0','600','0','printed','','','','0','41679233891','Cleared','4','2023-03-19 21:53:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(550,'g1w2','Mpesa','','2023-03-19 16:52:51','','0','3','2023-03-19 16:52:51','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','31679233969','Cleared','3','2023-03-19 17:35:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(551,'64e9','Mpesa','','2023-03-19 17:17:32','','0','3','2023-03-19 17:17:32','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','faiza','','','0','31679235450','Cleared','3','2023-03-19 17:34:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(552,'','Voucher','','2023-03-19 21:54:09','','0','4','2023-03-19 21:54:09','','0','150','1','retail','0','150','1','0','150','0','0','0','0','printed','','','','0','41679252047','Cleared','4','2023-03-19 21:57:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(553,'m8b','Mpesa','','2023-03-20 11:25:45','','0','4','2023-03-20 11:25:45','','0','480','1','retail','0','480','1','0','0','0','0','480','0','printed','','','','0','41679300736','Cleared','4','2023-03-20 17:47:43','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(554,'','Voucher','','2023-03-20 11:48:07','','0','4','2023-03-20 11:48:07','','0','150','1','retail','0','150','1','0','150','0','0','0','0','printed','','','','0','41679302085','Cleared','4','2023-03-20 13:02:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(555,'','Voucher','','2023-03-20 11:48:29','','0','4','2023-03-20 11:48:29','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','','','','0','41679302108','Cleared','4','2023-03-20 13:02:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(556,'m8b','Mpesa','','2023-03-20 13:01:53','','0','4','2023-03-20 13:01:53','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41679306512','Cleared','4','2023-03-20 17:47:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(557,'r13','Mpesa','','2023-03-20 14:19:38','','0','4','2023-03-20 14:19:38','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41679311176','Cleared','4','2023-03-20 14:26:16','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(558,'','Cash','','2023-03-20 18:19:18','','0','4','2023-03-20 18:19:18','','250','250','1','retail','0','250','1','0','0','0','0','0','0','new',' ','','','0','41679325556','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(559,'','Voucher','','2023-03-21 09:58:27','','0','4','2023-03-21 09:58:27','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','','','','0','41679381905','Cleared','4','2023-03-21 13:59:35','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(560,'ge2','Mpesa','','2023-03-21 13:59:08','','0','4','2023-03-21 13:59:08','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41679396347','Cleared','4','2023-03-21 14:08:49','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(561,'','Cash','','2023-03-21 14:05:21','','0','4','2023-03-21 14:05:21','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41679396719','Cleared','3','2023-03-21 18:18:35','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(562,'oge2','Mpesa','','2023-03-21 14:24:44','','0','4','2023-03-21 14:24:44','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41679397882','Cleared','3','2023-03-21 18:36:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(563,'','Cash','','2023-03-21 17:04:24','','0','4','2023-03-21 17:04:24','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41679407463','Cleared','3','2023-03-21 21:09:38','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(564,'','Voucher','','2023-03-21 18:16:14','','0','3','2023-03-21 18:16:14','','0','400','1','retail','0','400','1','0','400','0','0','0','0','printed','mzae\r\n','','','0','31679411755','Cleared','3','2023-03-21 18:16:57','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(565,'','Voucher','','2023-03-21 18:27:33','','0','3','2023-03-21 18:27:33','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','cedrick','','','0','31679412452','Cleared','3','2023-03-21 18:28:12','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(566,'','Cash','','2023-03-21 18:34:00','','0','3','2023-03-21 18:34:00','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed','','','','0','31679412810','Cleared','3','2023-03-21 21:09:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(567,'','Cash','','2023-03-21 18:46:38','','0','4','2023-03-21 18:46:38','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed','','','','0','41679413593','Cleared','3','2023-03-21 20:13:36','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(568,'051c','Mpesa','','2023-03-21 20:57:38','','0','3','2023-03-21 19:37:47','','0','950','1','retail','0','950','1','0','0','0','0','950','0','printed','','','','0','31679416662','Cleared','3','2023-03-21 21:21:11','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(569,'','Cash','','2023-03-21 19:38:18','','0','3','2023-03-21 19:38:18','','370','370','1','retail','0','370','1','0','0','0','0','0','0','printed','','','','0','31679416691','Cleared','3','2023-03-21 20:13:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(570,'awnx','Mpesa','','2023-03-21 20:24:18','','0','3','2023-03-21 20:24:18','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31679419456','Cleared','3','2023-03-21 20:56:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(571,'051c','Mpesa','','2023-03-21 20:58:26','','0','4','2023-03-21 20:58:26','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41679421504','Cleared','3','2023-03-21 21:20:37','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(572,'','Voucher','','2023-03-21 21:45:30','','0','3','2023-03-21 21:45:30','','0','600','1','retail','0','600','1','0','600','0','0','0','0','printed','guards','','','0','31679424318','Cleared','3','2023-03-21 22:08:17','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(573,'r097','Mpesa','','2023-03-21 22:08:45','','0','3','2023-03-21 22:08:45','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','r097','','','0','31679425723','Cleared','3','2023-03-21 22:49:49','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(574,'','Cash','','2023-03-22 11:54:37','','0','3','2023-03-22 11:54:37','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','31679475276','Cleared','3','2023-03-22 12:38:02','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(575,'','Cash','','2023-03-22 12:37:40','','0','3','2023-03-22 12:37:40','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','31679477859','Cleared','3','2023-03-22 12:54:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(576,'','Voucher','','2023-03-22 12:53:23','','0','3','2023-03-22 12:53:23','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','cedrick\r\n','','','0','31679478802','Cleared','3','2023-03-22 12:53:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(577,'n2lk','Mpesa','','2023-03-22 13:53:37','','0','3','2023-03-22 13:53:37','','0','220','1','retail','0','220','1','0','0','0','0','220','0','printed','n2lk','','','0','31679482410','Cleared','3','2023-03-22 13:54:56','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(578,'qxt1','Mpesa','','2023-03-22 16:02:54','','0','3','2023-03-22 16:02:54','','0','320','1','retail','0','320','1','0','0','0','0','320','0','printed','','','','0','31679490162','Cleared','3','2023-03-22 16:12:15','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(579,'qxt1','Mpesa','','2023-03-22 16:05:22','','0','3','2023-03-22 16:05:22','','0','100','1','retail','0','100','1','0','0','0','0','100','0','printed','','','','0','31679490321','Cleared','3','2023-03-22 16:11:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(580,'tidx','Mpesa','','2023-03-22 16:49:56','','0','3','2023-03-22 16:49:56','','0','830','1','retail','0','830','1','0','0','0','0','830','0','printed','','','','0','31679491564','Cleared','3','2023-03-22 17:28:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(581,'','Cash','','2023-03-22 17:26:53','','0','3','2023-03-22 17:26:53','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed','cash\r\n','','','0','31679495189','Cleared','5','2023-03-22 18:55:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(582,'gy6j','Mpesa','','2023-03-22 17:41:35','','0','3','2023-03-22 17:41:35','','0','60','1','retail','0','60','1','0','0','0','0','60','0','printed','','','','0','31679496090','Cleared','3','2023-03-22 18:35:05','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(583,'','Voucher','','2023-03-22 19:39:56','','0','3','2023-03-22 19:39:56','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','','','','0','31679503195','Cleared','3','2023-03-22 19:40:32','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(584,'','Voucher','','2023-03-22 21:12:07','','0','3','2023-03-22 21:12:07','','0','600','1','retail','0','600','1','0','600','0','0','0','0','printed','gurds\r\n','','','0','31679508711','Cleared','3','2023-03-22 21:12:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(585,'j25e','Mpesa','','2023-03-22 21:34:41','','0','3','2023-03-22 21:34:41','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','31679510080','Cleared','3','2023-03-22 22:17:23','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(586,'cd2r','Mpesa','','2023-03-22 21:37:58','','0','3','2023-03-22 21:37:58','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31679510276','Cleared','3','2023-03-22 21:48:57','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(587,'','Voucher','','2023-03-22 21:57:04','','0','3','2023-03-22 21:57:04','','0','150','1','retail','0','150','1','0','150','0','0','0','0','printed','martin\r\n','','','0','31679511422','Cleared','3','2023-03-22 21:59:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(588,'','Voucher','','2023-03-23 13:02:27','','0','3','2023-03-23 13:02:27','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','cedrick','','','0','31679565746','Cleared','3','2023-03-23 13:05:35','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(589,'','Voucher','','2023-03-23 13:02:56','','0','3','2023-03-23 13:02:56','','0','150','1','retail','0','150','1','0','150','0','0','0','0','printed','guards','','','0','31679565774','Cleared','3','2023-03-23 13:05:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(590,'6go5','Mpesa','','2023-03-23 14:22:09','','0','3','2023-03-23 14:22:09','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31679570528','Cleared','3','2023-03-23 15:31:24','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(591,'','Cash','','2023-03-23 17:04:35','','0','4','2023-03-23 17:04:35','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41679580274','Cleared','4','2023-03-23 17:31:00','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(592,'','Cash','','2023-03-23 19:34:02','','0','3','2023-03-23 18:03:33','','900','900','1','retail','0','900','1','0','0','0','0','0','0','printed','','','','0','31679583812','Cleared','3','2023-03-23 19:47:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(593,'zxl','Mpesa','','2023-03-23 18:30:44','','0','4','2023-03-23 18:30:44','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41679585442','Cleared','4','2023-03-23 20:16:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(594,'daq','Mpesa','','2023-03-23 18:31:00','','0','4','2023-03-23 18:31:00','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41679585458','Cleared','4','2023-03-23 20:17:49','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(595,'6dx','Mpesa','','2023-03-23 18:57:26','','0','4','2023-03-23 18:57:26','','0','500','1','retail','0','500','1','0','0','0','0','500','0','printed','','','','0','41679587036','Cleared','4','2023-03-23 20:18:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(596,'6dx','Mpesa','','2023-03-23 19:07:10','','0','4','2023-03-23 19:07:10','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41679587628','Cleared','4','2023-03-23 20:18:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(597,'6dx','Mpesa','','2023-03-23 19:20:36','','0','4','2023-03-23 19:20:36','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41679588435','Cleared','4','2023-03-23 20:19:34','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(598,'6dx','Mpesa','','2023-03-23 19:52:26','','0','4','2023-03-23 19:52:26','','0','500','1','retail','0','500','1','0','0','0','0','500','0','printed','','','','0','41679590342','Cleared','4','2023-03-23 20:20:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(599,'voiv','Mpesa','','2023-03-23 19:55:26','','0','3','2023-03-23 19:55:26','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','31679590525','Cleared','3','2023-03-23 20:01:59','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(600,'lku','Mpesa','','2023-03-23 20:31:58','','0','3','2023-03-23 20:31:58','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','31679592717','Cleared','3','2023-03-23 21:56:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(601,'','Voucher','','2023-03-23 20:36:48','','0','3','2023-03-23 20:36:48','','0','450','1','retail','0','450','1','0','450','0','0','0','0','printed','dad','','','0','31679593000','Cleared','3','2023-03-23 20:41:39','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(602,'','Voucher','','2023-03-23 20:37:07','','0','3','2023-03-23 20:37:07','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','mzae','','','0','31679593026','Cleared','3','2023-03-23 20:41:02','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(603,'','Voucher','','2023-03-23 20:37:25','','0','3','2023-03-23 20:37:25','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','everlyn','','','0','31679593044','Cleared','3','2023-03-23 20:40:34','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(604,'','Voucher','','2023-03-23 20:37:53','','0','3','2023-03-23 20:37:53','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','purity\r\n','','','0','31679593071','Cleared','3','2023-03-23 20:38:49','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(605,'ks6v','Mpesa','','2023-03-23 20:56:54','','0','3','2023-03-23 20:39:59','','0','270','1','retail','0','270','1','0','0','0','0','270','0','printed','','','','0','31679593197','Cleared','3','2023-03-23 20:59:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(606,'','Cash','','2023-03-23 22:17:07','','0','4','2023-03-23 22:17:07','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41679599026','Cleared','4','2023-03-23 22:17:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(607,'o7w','Mpesa','','2023-03-24 11:01:25','','0','4','2023-03-24 11:01:25','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41679644883','Cleared','4','2023-03-24 14:14:35','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(608,'4co','Mpesa','','2023-03-24 11:50:43','','0','4','2023-03-24 11:50:43','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41679647842','Cleared','4','2023-03-24 14:14:05','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(609,'1oc','Mpesa','','2023-03-24 14:11:14','','0','4','2023-03-24 14:11:14','','0','270','1','retail','0','270','1','0','0','0','0','270','0','printed','','','','0','41679656260','Cleared','4','2023-03-24 14:17:16','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(610,'1oc','Mpesa','','2023-03-24 14:13:06','','0','4','2023-03-24 14:13:06','','0','100','1','retail','0','100','1','0','0','0','0','100','0','printed','','','','0','41679656385','Cleared','4','2023-03-24 14:17:42','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(611,'0z7','Mpesa','','2023-03-24 15:08:26','','0','4','2023-03-24 15:08:26','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','41679659704','Cleared','4','2023-03-24 15:27:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(612,'','Cash','','2023-03-24 16:31:14','','0','3','2023-03-24 16:31:14','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','31679664672','Cleared','3','2023-03-24 20:53:37','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(613,'','Voucher','','2023-03-24 17:17:34','','0','3','2023-03-24 17:17:34','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','manager\r\n','','','0','31679667453','Cleared','3','2023-03-24 17:18:43','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(614,'','Voucher','','2023-03-24 17:18:57','','0','3','2023-03-24 17:18:57','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','cedrick','','','0','31679667536','Cleared','3','2023-03-24 17:21:10','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(615,'','Voucher','','2023-03-24 17:19:13','','0','3','2023-03-24 17:19:13','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','purity','','','0','31679667552','Cleared','3','2023-03-24 17:20:35','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(616,'yxak','Mpesa','','2023-03-24 17:45:02','','0','3','2023-03-24 17:45:02','','0','180','1','retail','0','180','1','0','0','0','0','180','0','printed','','','','0','31679669088','Cleared','3','2023-03-24 17:54:33','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(617,'szl','Mpesa','','2023-03-24 18:02:30','','0','4','2023-03-24 18:02:30','','0','600','1','retail','0','600','1','0','0','0','0','600','0','printed','','','','0','41679670148','Cleared','4','2023-03-24 21:02:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(618,'','Cash','','2023-03-24 18:19:17','','0','3','2023-03-24 18:19:17','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','31679671155','Cleared','3','2023-03-24 18:19:56','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(619,'h1zc','Mpesa','','2023-03-24 18:45:29','','0','3','2023-03-24 18:45:29','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31679672727','Cleared','3','2023-03-24 18:58:48','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(620,'wkx1','Mpesa','','2023-03-24 19:24:24','','0','3','2023-03-24 19:24:24','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31679675062','Cleared','3','2023-03-24 20:45:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(621,'wkx1','Mpesa','','2023-03-24 19:31:30','','0','3','2023-03-24 19:31:30','','0','20','1','retail','0','20','1','0','0','0','0','20','0','printed','','','','0','31679675489','Cleared','3','2023-03-24 20:44:56','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(622,'wkx1','Mpesa','','2023-03-24 20:29:17','','0','4','2023-03-24 20:29:17','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41679678956','Cleared','4','2023-03-24 20:43:23','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(623,'sg4j','Mpesa','','2023-03-24 20:55:49','','0','3','2023-03-24 20:55:49','','0','20','1','retail','0','20','1','0','0','0','0','20','0','printed','','','','0','31679680547','Cleared','3','2023-03-24 20:57:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(624,'yfa','Mpesa','','2023-03-24 21:01:46','','0','4','2023-03-24 21:01:46','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41679680886','Cleared','4','2023-03-24 21:16:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(625,'','Voucher','','2023-03-24 21:27:50','','0','3','2023-03-24 21:27:50','','0','1650','1','retail','0','1650','1','0','1650','0','0','0','0','printed','everlyn','','','0','31679682389','Cleared','3','2023-03-24 21:28:56','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(626,'qp7','Mpesa','','2023-03-25 10:18:22','','0','4','2023-03-25 10:18:22','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','joseph','','','0','41679728700','Cleared','4','2023-03-25 18:37:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(627,'qp7','Mpesa','','2023-03-25 10:18:50','','0','4','2023-03-25 10:18:50','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','joseph','','','0','41679728729','Cleared','4','2023-03-25 18:38:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(628,'','Voucher','','2023-03-25 10:19:08','','0','4','2023-03-25 10:19:08','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','purity','','','0','41679728747','Cleared','4','2023-03-25 12:07:11','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(629,'t18','Mpesa','','2023-03-25 12:05:43','','0','4','2023-03-25 12:05:43','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41679735142','Cleared','4','2023-03-25 12:06:43','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(630,'ign','Mpesa','','2023-03-25 12:06:03','','0','4','2023-03-25 12:06:03','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','dennis','','','0','41679735162','Cleared','4','2023-03-25 18:39:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(631,'ie4','Mpesa','','2023-03-25 15:05:55','','0','4','2023-03-25 15:05:55','','0','700','1','retail','0','700','1','0','0','0','0','700','0','printed','','','','0','41679745948','Cleared','4','2023-03-25 15:45:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(632,'k6u','Mpesa','','2023-03-25 15:06:09','','0','4','2023-03-25 15:06:09','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','41679745967','Cleared','4','2023-03-25 15:24:00','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(633,'k6u','Mpesa','','2023-03-25 15:07:09','','0','4','2023-03-25 15:07:09','','0','15','1','retail','0','15','1','0','0','0','0','15','0','printed','','','','0','41679746027','Cleared','4','2023-03-25 15:24:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(634,'','Voucher','','2023-03-25 16:19:12','','0','4','2023-03-25 16:19:12','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','manager','','','0','41679750351','Cleared','4','2023-03-25 16:20:38','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(635,'nyr','Mpesa','','2023-03-25 16:19:38','','0','4','2023-03-25 16:19:38','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','41679750376','Cleared','4','2023-03-25 16:40:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(636,'nyr','Mpesa','','2023-03-25 16:37:21','','0','4','2023-03-25 16:37:21','','0','15','1','retail','0','15','1','0','0','0','0','15','0','printed','','','','0','41679751439','Cleared','4','2023-03-25 16:40:56','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(637,'fi4k','Mpesa','','2023-03-25 16:56:22','','0','3','2023-03-25 16:56:22','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','31679752549','Cleared','3','2023-03-25 20:22:17','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(638,'','Voucher','','2023-03-25 17:38:12','','0','3','2023-03-25 17:38:12','','0','850','1','retail','0','850','1','0','850','0','0','0','0','printed','evelyne','','','0','31679754995','Cleared','3','2023-03-25 17:40:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(639,'1wqe','Mpesa','','2023-03-25 18:01:28','','0','3','2023-03-25 18:01:28','','0','590','1','retail','0','590','1','0','0','0','0','590','0','printed','','','','0','31679756420','Cleared','3','2023-03-25 20:19:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(640,'biw8','Mpesa','','2023-03-25 19:35:18','','0','3','2023-03-25 19:35:18','','0','480','1','retail','0','480','1','0','0','0','0','480','0','printed','','','','0','31679762083','Cleared','3','2023-03-25 20:37:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(641,'qbni','Mpesa','','2023-03-25 20:11:34','','0','4','2023-03-25 20:11:34','','0','315','1','retail','0','315','1','0','0','0','0','315','0','printed','','','','0','41679764286','Cleared','4','2023-03-25 20:17:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(642,'vzhf','Mpesa','','2023-03-25 21:50:39','','0','3','2023-03-25 21:50:39','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31679770238','Cleared','3','2023-03-25 22:36:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(643,'juq1','Mpesa','','2023-03-26 12:20:41','','0','3','2023-03-26 12:20:41','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','31679822430','Cleared','3','2023-03-26 12:54:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(644,'','Voucher','','2023-03-26 16:13:31','','0','3','2023-03-26 16:13:31','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','manager','','','0','31679836410','Cleared','3','2023-03-26 16:57:29','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(645,'','Voucher','','2023-03-26 16:13:54','','0','3','2023-03-26 16:13:54','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','cedrick','','','0','31679836433','Cleared','3','2023-03-26 16:58:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(646,'hikh','Mpesa','','2023-03-26 16:33:03','','0','4','2023-03-26 16:33:03','','0','100','1','retail','0','100','1','0','0','0','0','100','0','printed','hikh','','','0','41679837582','Cleared','4','2023-03-26 21:25:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(647,'','Mpesa','','2023-03-26 16:35:57','','0','3','2023-03-26 16:35:57','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','hikh','','','0','31679837756','Cleared','3','2023-03-26 18:09:47','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(648,'','Voucher','','2023-03-26 16:47:52','','0','4','2023-03-26 16:47:52','','0','1150','1','retail','0','1150','1','0','1150','0','0','0','0','printed','eve','','','0','41679838453','Cleared','4','2023-03-26 21:23:08','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(649,'','Voucher','','2023-03-26 16:52:32','','0','4','2023-03-26 16:52:32','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','guards','','','0','41679838747','Cleared','4','2023-03-26 16:53:39','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(650,'btbm','Mpesa','','2023-03-26 17:12:21','','0','3','2023-03-26 17:12:21','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31679839940','Cleared','3','2023-03-26 18:10:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(651,'279s','Mpesa','','2023-03-26 19:06:02','','0','4','2023-03-26 19:06:02','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41679846761','Cleared','4','2023-03-26 22:09:21','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(652,'','Cash','','2023-03-26 20:17:55','','0','4','2023-03-26 20:17:55','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','41679851074','Cleared','4','2023-03-26 21:22:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(653,'','Voucher','','2023-03-26 21:39:07','','0','4','2023-03-26 21:39:07','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','purity','','','0','41679855945','Cleared','4','2023-03-26 21:39:47','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(654,'gm5y','Mpesa','','2023-03-27 10:50:28','','0','4','2023-03-27 10:50:28','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41679903426','Cleared','4','2023-03-27 18:43:24','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(655,'24dj','Mpesa','','2023-03-27 10:50:46','','0','4','2023-03-27 10:50:46','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41679903445','Cleared','4','2023-03-27 12:02:12','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(656,'','Voucher','','2023-03-27 10:51:19','','0','4','2023-03-27 10:51:19','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','purity','','','0','41679903477','Cleared','4','2023-03-27 10:51:47','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(657,'','Cash','','2023-03-27 16:23:19','','0','4','2023-03-27 16:23:19','','150','150','1','retail','0','150','1','0','0','0','0','0','0','new',' ','','','0','41679923398','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(658,'8fxq','Mpesa','','2023-03-27 16:34:45','','0','4','2023-03-27 16:34:45','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41679924084','Cleared','4','2023-03-27 18:07:38','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(659,'ouda','Mpesa','','2023-03-27 17:40:41','','0','4','2023-03-27 17:40:41','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41679928040','Cleared','4','2023-03-27 18:45:17','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(660,'','Cash','','2023-03-27 18:05:47','','0','4','2023-03-27 18:05:47','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41679929546','Cleared','4','2023-03-27 18:43:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(661,'wczp','Mpesa','','2023-03-27 18:59:57','','0','4','2023-03-27 18:59:57','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41679932796','Cleared','4','2023-03-27 19:24:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(662,'','Voucher','','2023-03-28 10:20:04','','0','4','2023-03-28 10:20:04','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','purity','','','0','41679988002','Cleared','4','2023-03-28 10:44:08','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(663,'','Cash','','2023-03-28 12:43:41','','0','4','2023-03-28 12:43:41','','150','150','1','retail','0','150','1','0','0','0','0','0','0','new',' ','','','0','41679996620','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(664,'i96e','Mpesa','','2023-03-28 12:44:16','','0','4','2023-03-28 12:44:16','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41679996648','Cleared','4','2023-03-28 13:19:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(665,'i96e','Mpesa','','2023-03-28 13:14:44','','0','4','2023-03-28 13:14:44','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41679998482','Cleared','4','2023-03-28 13:20:33','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(666,'li5j','Mpesa','','2023-03-28 14:59:12','','0','4','2023-03-28 14:59:12','','0','650','1','retail','0','650','1','0','0','0','0','650','0','printed','','','','0','41680004746','Cleared','4','2023-03-28 15:52:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(667,'','Cash','','2023-03-28 15:35:29','','0','3','2023-03-28 15:35:29','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','31680006928','Cleared','3','2023-03-28 16:02:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(668,'','Cash','','2023-03-28 15:36:25','','0','3','2023-03-28 15:36:25','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed','','','','0','31680006970','Cleared','3','2023-03-28 16:01:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(669,'tpbh','Mpesa','','2023-03-28 17:40:51','','0','4','2023-03-28 17:40:51','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41680014450','Cleared','4','2023-03-28 18:42:02','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(670,'','Cash','','2023-03-28 17:46:09','','0','4','2023-03-28 17:46:09','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41680014768','Cleared','4','2023-03-28 18:42:17','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(671,'dgf4','Mpesa','','2023-03-28 18:07:17','','0','4','2023-03-28 18:07:17','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41680016036','Cleared','4','2023-03-28 18:43:10','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(672,'mx8x','Mpesa','','2023-03-28 18:07:43','','0','4','2023-03-28 18:07:43','','0','550','1','retail','0','550','1','0','0','0','0','550','0','printed','','','','0','41680016056','Cleared','4','2023-03-28 18:43:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(673,'','Cash','','2023-03-28 18:17:19','','0','3','2023-03-28 18:17:19','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed','','','','0','31680016627','Cleared','3','2023-03-28 19:12:45','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(674,'92lc','Mpesa','','2023-03-28 18:59:40','','0','3','2023-03-28 18:59:40','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31680019178','Cleared','3','2023-03-28 20:06:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(675,'fq4j','Mpesa','','2023-03-28 19:13:51','','0','3','2023-03-28 19:13:51','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','31680020030','Cleared','3','2023-03-28 19:41:02','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(676,'rl23','Mpesa','','2023-03-28 19:36:33','','0','3','2023-03-28 19:36:33','','0','700','1','retail','0','700','1','0','0','0','0','700','0','printed','','','','0','31680021387','Cleared','3','2023-03-28 20:05:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(677,'','Voucher','','2023-03-28 20:08:20','','0','3','2023-03-28 20:08:20','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','cedrick\r\n','','','0','31680023298','Cleared','3','2023-03-28 20:42:42','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(678,'','Cash','','2023-03-28 20:44:24','','0','3','2023-03-28 20:44:24','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','31680025462','Cleared','3','2023-03-28 21:02:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(679,'','Voucher','','2023-03-28 21:27:28','','0','3','2023-03-28 21:27:28','','0','150','1','retail','0','150','1','0','150','0','0','0','0','printed','martin','','','0','31680028046','Cleared','3','2023-03-28 21:27:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(680,'','Voucher','','2023-03-28 21:29:07','','0','3','2023-03-28 21:29:07','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','manager','','','0','31680028145','Cleared','3','2023-03-28 21:29:40','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(681,'','Voucher','','2023-03-28 21:37:50','','0','3','2023-03-28 21:37:50','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','guards','','','0','31680028668','Cleared','3','2023-03-28 21:38:12','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(682,'kq4u','Mpesa','','2023-03-29 09:38:00','','0','3','2023-03-29 09:38:00','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31680071879','Cleared','3','2023-03-29 12:57:08','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(683,'','Cash','','2023-03-29 09:59:47','','0','3','2023-03-29 09:59:47','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','31680073185','Cleared','3','2023-03-29 12:56:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(684,'ly77','Mpesa','','2023-03-29 12:57:19','','0','3','2023-03-29 12:57:19','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31680083838','Cleared','3','2023-03-29 13:20:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(685,'','Cash','','2023-03-29 13:13:04','','0','3','2023-03-29 13:13:04','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','31680084782','Cleared','3','2023-03-29 13:49:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(686,'','Cash','','2023-03-29 13:13:35','','0','3','2023-03-29 13:13:35','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','31680084814','Cleared','3','2023-03-29 15:11:43','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(687,'ubpz','Mpesa','','2023-03-29 15:11:23','','0','3','2023-03-29 15:11:23','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','ubpz','','','0','31680091881','Cleared','3','2023-03-29 15:12:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(688,'','Voucher','','2023-03-29 15:15:27','','0','3','2023-03-29 15:15:27','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','Jessica\r\n','','','0','31680092126','Cleared','3','2023-03-29 15:17:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(689,'9582','Mpesa','','2023-03-29 16:57:22','','0','3','2023-03-29 16:57:22','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31680098241','Cleared','3','2023-03-29 16:58:21','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(690,'EOWG','Mpesa','','2023-03-29 17:13:24','','0','3','2023-03-29 17:13:24','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31680099202','Cleared','3','2023-03-29 17:16:42','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(691,'','Cash','','2023-03-29 17:54:29','','0','3','2023-03-29 17:54:29','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','31680101668','Cleared','3','2023-03-29 17:54:49','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(692,'','Cash','','2023-03-29 18:30:42','','0','3','2023-03-29 18:30:42','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','31680103841','Cleared','3','2023-03-29 19:21:23','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(693,'jssi','Mpesa','','2023-03-29 18:47:04','','0','3','2023-03-29 18:47:04','','0','650','1','retail','0','650','1','0','0','0','0','650','0','printed','','','','0','31680104791','Cleared','3','2023-03-29 19:53:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(694,'4hhr','Mpesa','','2023-03-29 19:21:08','','0','3','2023-03-29 19:21:08','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31680106867','Cleared','3','2023-03-29 20:37:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(695,'','Cash','','2023-03-29 19:39:37','','0','3','2023-03-29 19:39:37','','450','450','1','retail','0','450','1','0','0','0','0','0','0','new',' ','','','0','31680107963','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(696,'ot39','Mpesa','','2023-03-29 19:53:28','','0','3','2023-03-29 19:53:28','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','31680108806','Cleared','3','2023-03-29 20:38:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(697,'cdtx','Mpesa','','2023-03-29 20:43:13','','0','3','2023-03-29 20:43:13','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31680111792','Cleared','3','2023-03-29 20:45:32','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(698,'270c','Mpesa','','2023-03-29 20:47:29','','0','3','2023-03-29 20:47:29','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','270c','','','0','31680112048','Cleared','3','2023-03-29 21:08:21','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(699,'','Cash','','2023-03-29 20:47:50','','0','3','2023-03-29 20:47:50','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31680112069','Cleared','3','2023-03-29 20:48:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(700,'','Cash','','2023-03-29 20:52:15','','0','3','2023-03-29 20:52:15','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','31680112333','Cleared','3','2023-03-29 20:57:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(701,'','Cash','','2023-03-29 21:31:48','','0','3','2023-03-29 21:31:48','','200','200','1','retail','0','200','1','0','0','0','0','0','0','new',' ','','','0','31680114706','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(702,'','Cash','','2023-03-29 21:47:59','','0','3','2023-03-29 21:47:59','','400','400','1','retail','0','400','1','0','0','0','0','0','0','new',' ','','','0','31680115677','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(703,'girw','Mpesa','','2023-03-30 11:39:25','','0','3','2023-03-30 11:39:25','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31680165564','Cleared','3','2023-03-30 14:54:39','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(704,'asmv','Mpesa','','2023-03-30 12:19:14','','0','3','2023-03-30 12:19:14','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31680167953','Cleared','3','2023-03-30 15:19:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(705,'suum','Mpesa','','2023-03-30 13:06:42','','0','3','2023-03-30 13:06:42','','0','220','1','retail','0','220','1','0','0','0','0','220','0','printed','','','','0','31680170786','Cleared','3','2023-03-30 15:00:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(706,'','Cash','','2023-03-30 13:08:21','','0','3','2023-03-30 13:08:21','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31680170900','Cleared','3','2023-03-30 15:00:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(707,'','Voucher','','2023-03-30 14:21:45','','0','3','2023-03-30 14:21:45','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','','','','0','31680175304','Cleared','3','2023-03-30 15:01:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(708,'','Voucher','','2023-03-30 15:38:37','','0','3','2023-03-30 15:38:37','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','','','','0','31680179894','Cleared','3','2023-03-30 21:30:15','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(709,'emdx','Mpesa','','2023-03-30 15:59:40','','0','4','2023-03-30 15:59:40','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41680181179','Cleared','4','2023-03-30 20:43:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(710,'f1vk','Mpesa','','2023-03-30 16:28:54','','0','4','2023-03-30 16:28:54','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41680182932','Cleared','4','2023-03-30 17:48:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(711,'','Cash','','2023-03-30 16:29:26','','0','4','2023-03-30 16:29:26','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed','','','','0','41680182961','Cleared','4','2023-03-30 17:48:59','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(712,'','Cash','','2023-03-30 16:48:52','','0','4','2023-03-30 16:48:52','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed','','','','0','41680184131','Cleared','4','2023-03-30 17:49:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(713,'','Voucher','','2023-03-30 17:11:14','','0','4','2023-03-30 17:11:14','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','manager','','','0','41680185473','Cleared','4','2023-03-30 17:16:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(714,'f1vk','Mpesa','','2023-03-30 17:16:16','','0','4','2023-03-30 17:16:16','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','f1vk','','','0','41680185559','Cleared','4','2023-03-30 17:49:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(715,'','Cash','','2023-03-30 18:46:55','','0','4','2023-03-30 18:46:55','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41680191213','Cleared','4','2023-03-30 19:50:35','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(716,'ge6t','Mpesa','','2023-03-30 18:55:49','','0','4','2023-03-30 18:55:49','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41680191747','Cleared','4','2023-03-30 22:01:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(717,'xzv3','Mpesa','','2023-03-30 19:45:48','','0','4','2023-03-30 19:45:48','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','',NULL,'0','41680194747','Cleared','4','2023-03-30 20:12:59','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(718,'l6fo','Mpesa','','2023-03-30 19:46:47','','0','4','2023-03-30 19:46:47','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41680194806','Cleared','4','2023-03-30 20:12:04','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(719,'h7b4','Mpesa','','2023-03-30 19:59:58','','0','4','2023-03-30 19:59:58','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41680195596','Cleared','4','2023-03-30 21:28:15','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(720,'','Cash','','2023-03-30 20:00:12','','0','4','2023-03-30 20:00:12','','30','30','1','retail','0','30','1','0','0','0','0','0','0','printed','','','','0','41680195611','Cleared','4','2023-03-30 21:58:10','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(721,'','Cash','','2023-03-30 20:17:46','','0','4','2023-03-30 20:17:46','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41680196665','Cleared','4','2023-03-30 20:20:47','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(722,'','Cash','','2023-03-30 20:42:11','','0','4','2023-03-30 20:42:11','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','41680198129','Cleared','4','2023-03-30 21:59:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(723,'zs13','Mpesa','','2023-03-30 20:51:48','','0','4','2023-03-30 20:51:48','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41680198706','Cleared','4','2023-03-30 20:59:48','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(724,'','Cash','','2023-03-30 20:58:34','','0','4','2023-03-30 20:58:34','','30','30','1','retail','0','30','1','0','0','0','0','0','0','printed','','','','0','41680199113','Cleared','4','2023-03-30 21:58:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(725,'','Voucher','','2023-03-30 21:10:43','','0','4','2023-03-30 21:10:43','','0','150','1','retail','0','150','1','0','150','0','0','0','0','printed','','','','0','41680199841','Cleared','4','2023-03-30 21:21:43','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(726,'','Voucher','','2023-03-30 22:18:07','','0','3','2023-03-30 22:18:07','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','','','','0','31680203886','Cleared','3','2023-03-30 22:18:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(727,'','Cash','','2023-03-31 09:23:41','','0','3','2023-03-31 09:23:41','','220','220','1','retail','0','220','1','0','0','0','0','0','0','printed','','','','0','31680243811','Cleared','3','2023-03-31 09:24:38','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(728,'','Cash','','2023-03-31 09:52:52','','0','4','2023-03-31 09:52:52','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','george','','','0','41680245571','Cleared','4','2023-03-31 21:57:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(729,'','Cash','','2023-03-31 10:56:02','','0','4','2023-03-31 10:56:02','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41680249361','Cleared','4','2023-03-31 21:16:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(730,'','Cash','','2023-03-31 13:38:41','','0','3','2023-03-31 13:38:41','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31680259120','Cleared','3','2023-03-31 21:32:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(731,'','Voucher','','2023-03-31 17:08:32','','0','3','2023-03-31 17:08:32','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','cedrick','','','0','31680271711','Cleared','3','2023-03-31 17:10:32','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(732,'','Voucher','','2023-03-31 17:08:46','','0','3','2023-03-31 17:08:46','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','purity','','','0','31680271724','Cleared','3','2023-03-31 17:10:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(733,'','Cash','','2023-03-31 18:27:37','','0','3','2023-03-31 18:27:37','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31680276455','Cleared','3','2023-03-31 18:28:04','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(734,'S4XX','Mpesa','','2023-03-31 18:28:16','','0','3','2023-03-31 18:28:16','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31680276495','Cleared','3','2023-03-31 18:40:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(735,'DLQP','Mpesa','','2023-03-31 18:28:47','','0','4','2023-03-31 18:28:47','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41680276525','Cleared','4','2023-03-31 18:30:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(736,'TNSM','Mpesa','','2023-03-31 18:29:06','','0','4','2023-03-31 18:29:06','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41680276545','Cleared','4','2023-03-31 18:48:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(737,'TNSM','Mpesa','','2023-03-31 18:29:29','','0','4','2023-03-31 18:29:29','','0','100','1','retail','0','100','1','0','0','0','0','100','0','printed','','','','0','41680276568','Cleared','4','2023-03-31 18:48:42','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(738,'QMRB','Mpesa','','2023-03-31 18:31:21','','0','4','2023-03-31 18:31:21','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41680276680','Cleared','4','2023-03-31 19:34:27','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(739,'','Cash','','2023-03-31 18:41:33','','0','4','2023-03-31 18:41:33','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41680277291','Cleared','4','2023-03-31 22:23:07','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(740,'','Voucher','','2023-03-31 19:12:49','','0','3','2023-03-31 19:12:49','','0','350','1','retail','0','350','1','0','350','0','0','0','0','printed','everlyn','','','0','31680279168','Cleared','3','2023-03-31 21:27:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(741,'dglo','Mpesa','','2023-03-31 19:55:49','','0','4','2023-03-31 19:55:49','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41680281748','Cleared','4','2023-03-31 21:57:11','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(742,'lrcy','Mpesa','','2023-03-31 21:25:30','','0','3','2023-03-31 21:25:30','','0','100','1','retail','0','100','1','0','0','0','0','100','0','printed','','','','0','31680287129','Cleared','3','2023-03-31 21:27:02','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(743,'','Cash','','2023-03-31 21:37:41','','0','3','2023-03-31 21:37:41','','30','30','1','retail','0','30','1','0','0','0','0','0','0','printed','','','','0','31680287860','Cleared','3','2023-03-31 21:38:43','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(744,'','Voucher','','2023-03-31 21:40:12','','0','3','2023-03-31 21:40:12','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','manager','','','0','31680288010','Cleared','3','2023-03-31 21:42:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(745,'','Voucher','','2023-03-31 22:05:31','','0','4','2023-03-31 22:05:31','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','','','','0','41680289530','Cleared','4','2023-03-31 22:09:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(746,'cly9','Mpesa','','2023-03-31 22:30:22','','0','4','2023-03-31 22:30:22','','0','800','1','retail','0','800','1','0','0','0','0','800','0','printed','','','','0','41680290999','Cleared','4','2023-03-31 23:01:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(747,'','Voucher','','2023-04-01 09:40:23','','0','4','2023-04-01 09:40:23','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','purity','','','0','41680331222','Cleared','4','2023-04-01 09:41:45','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(748,'','Cash','','2023-04-01 11:16:27','','0','4','2023-04-01 11:16:27','','30','30','1','retail','0','30','1','0','0','0','0','0','0','printed','','','','0','41680336986','Cleared','4','2023-04-01 11:16:43','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(749,'t4fx','Mpesa','','2023-04-01 13:17:58','','0','4','2023-04-01 13:17:58','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','41680344259','Cleared','4','2023-04-01 13:46:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(750,'','Cash','','2023-04-01 16:23:15','','0','3','2023-04-01 16:23:15','','300','300','1','retail','0','300','1','0','0','0','0','0','0','new','','','','0','31680355393','No','3','2023-04-01 23:11:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(751,'ltaf','Mpesa','','2023-04-01 16:42:33','','0','3','2023-04-01 16:42:33','','0','700','1','retail','0','700','1','0','0','0','0','700','0','printed','','','','0','31680356546','Cleared','3','2023-04-01 17:39:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(752,'5m8z','Mpesa','','2023-04-01 17:38:00','','0','3','2023-04-01 17:38:00','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31680359879','Cleared','3','2023-04-01 17:39:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(753,'','Cash','','2023-04-01 19:18:24','','0','3','2023-04-01 19:18:24','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31680365903','Cleared','3','2023-04-01 22:36:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(754,'ci64','Mpesa','','2023-04-01 19:19:29','','0','3','2023-04-01 19:19:29','','0','60','1','retail','0','60','1','0','0','0','0','60','0','printed','ci64','','','0','31680365963','Cleared','3','2023-04-01 22:37:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(755,'hjgk','Mpesa','','2023-04-01 20:22:30','','0','3','2023-04-01 20:22:31','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31680369749','Cleared','3','2023-04-01 22:42:45','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(756,'5ycy','Mpesa','','2023-04-01 20:58:04','','0','3','2023-04-01 20:58:04','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','31680371883','Cleared','3','2023-04-01 22:37:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(757,'','Cash','','2023-04-01 21:15:54','','0','3','2023-04-01 21:15:54','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','31680372953','Cleared','3','2023-04-01 22:42:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(758,'','Cash','','2023-04-01 22:07:17','','0','3','2023-04-01 22:07:17','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31680376036','Cleared','3','2023-04-01 22:07:37','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(759,'','Voucher','','2023-04-01 23:07:05','','0','3','2023-04-01 23:07:05','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','cedrick','','','0','31680379624','Cleared','3','2023-04-01 23:07:38','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(760,'','Voucher','','2023-04-01 23:09:17','','0','3','2023-04-01 23:09:17','','0','400','1','retail','0','400','1','0','400','0','0','0','0','printed','eve','','','0','31680379752','Cleared','3','2023-04-01 23:09:49','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(761,'','Cash','','2023-04-01 23:21:49','','0','3','2023-04-01 23:21:49','','30','30','1','retail','0','30','1','0','0','0','0','0','0','printed','','','','0','31680380508','Cleared','3','2023-04-01 23:22:24','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(762,'14ao','Mpesa','','2023-04-02 13:16:13','','0','3','2023-04-02 13:16:13','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','14ao','','','0','31680430572','Cleared','3','2023-04-02 18:15:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(763,'hq14','Mpesa','','2023-04-02 13:16:54','','0','3','2023-04-02 13:16:54','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','31680430613','Cleared','3','2023-04-02 18:04:05','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(764,'','Cash','','2023-04-02 16:21:31','','0','4','2023-04-02 16:21:31','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed','','','','0','41680441690','Cleared','4','2023-04-02 19:42:12','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(765,'3n2x','Mpesa','','2023-04-02 17:20:46','','0','4','2023-04-02 17:20:46','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','41680445245','Cleared','4','2023-04-02 17:24:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(766,'y53q','Mpesa','','2023-04-02 18:16:25','','0','3','2023-04-02 17:52:31','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','31680447149','Cleared','3','2023-04-02 18:48:57','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(767,'','Voucher','','2023-04-02 18:30:15','','0','3','2023-04-02 18:30:15','','0','650','1','retail','0','650','1','0','650','0','0','0','0','printed','jess and purity','','','0','31680449360','Cleared','3','2023-04-02 19:22:45','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(768,'jup1','Mpesa','','2023-04-02 18:30:44','','0','3','2023-04-02 18:30:44','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','31680449442','Cleared','3','2023-04-02 19:22:21','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(769,'','Voucher','','2023-04-02 18:33:14','','0','3','2023-04-02 18:33:14','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','cedrick\r\n','','','0','31680449592','Cleared','3','2023-04-02 18:35:24','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(770,'','Cash','','2023-04-02 19:39:19','','0','4','2023-04-02 19:39:19','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41680453558','Cleared','4','2023-04-02 19:39:48','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(771,'','Cash','','2023-04-02 20:24:02','','0','4','2023-04-02 20:24:02','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed','','','','0','41680456240','Cleared','4','2023-04-02 21:29:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(772,'','Cash','','2023-04-02 21:28:45','','0','4','2023-04-02 21:28:45','','450','450','1','retail','0','450','1','0','0','0','0','0','0','printed','','','','0','41680460112','Cleared','4','2023-04-02 21:51:48','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(773,'entz','Mpesa','','2023-04-02 21:49:20','','0','4','2023-04-02 21:49:20','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41680461358','Cleared','4','2023-04-02 21:52:34','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(774,'','Voucher','','2023-04-03 09:06:40','','0','4','2023-04-03 09:06:40','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','purity','','','0','41680501998','Cleared','4','2023-04-03 09:07:10','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(775,'s32s','Mpesa','','2023-04-03 09:40:50','','0','4','2023-04-03 09:40:50','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41680504049','Cleared','4','2023-04-03 09:41:45','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(776,'7mwt','Mpesa','','2023-04-03 12:44:27','','0','4','2023-04-03 12:44:27','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41680515066','Cleared','4','2023-04-03 14:40:57','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(777,'evq4','Mpesa','','2023-04-03 14:39:54','','0','4','2023-04-03 14:39:54','','0','980','1','retail','0','980','1','0','0','0','0','980','0','printed','','','','0','41680521975','Cleared','4','2023-04-03 15:33:24','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(778,'w4zb','Mpesa','','2023-04-03 16:33:49','','0','4','2023-04-03 16:33:49','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41680528820','Cleared','4','2023-04-03 19:40:36','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(779,'','Voucher','','2023-04-03 17:19:42','','0','4','2023-04-03 17:19:42','','0','400','1','retail','0','400','1','0','400','0','0','0','0','printed','mzae','','','0','41680531577','Cleared','4','2023-04-03 18:01:16','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(780,'','Cash','','2023-04-03 18:00:38','','0','4','2023-04-03 18:00:38','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41680534037','Cleared','4','2023-04-03 18:01:29','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(781,'','Voucher','','2023-04-03 19:40:56','','0','4','2023-04-03 19:40:56','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','jessica','','','0','41680540054','Cleared','4','2023-04-03 19:41:32','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(782,'orlp','Mpesa','','2023-04-04 10:14:27','','0','4','2023-04-04 10:14:27','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41680592465','Cleared','4','2023-04-04 10:16:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(783,'','Voucher','','2023-04-04 13:17:44','','0','4','2023-04-04 13:17:44','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','purity','','','0','41680603463','Cleared','4','2023-04-04 13:18:36','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(784,'','Voucher','','2023-04-04 13:51:37','','0','4','2023-04-04 13:51:37','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','mzae','','','0','41680605495','Cleared','4','2023-04-04 17:21:04','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(785,'','Voucher','','2023-04-04 15:52:05','','0','3','2023-04-04 15:52:05','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','cedrick\r\n','','','0','31680612723','Cleared','3','2023-04-04 17:29:59','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(786,'yshs','Mpesa','','2023-04-04 16:45:12','','0','4','2023-04-04 16:45:12','','0','700','1','retail','0','700','1','0','0','0','0','700','0','printed','','','','0','41680615905','Cleared','4','2023-04-04 17:21:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(787,'u3eg','Mpesa','','2023-04-04 17:28:09','','0','3','2023-04-04 17:28:09','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31680618484','Cleared','3','2023-04-04 19:16:42','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(788,'obwl','Mpesa','','2023-04-04 19:17:08','','0','3','2023-04-04 19:17:08','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31680625026','Cleared','3','2023-04-04 21:48:00','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(789,'udtg','Mpesa','','2023-04-04 20:26:01','','0','3','2023-04-04 20:26:01','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31680629159','Cleared','3','2023-04-04 21:50:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(790,'','Cash','','2023-04-04 20:43:56','','0','3','2023-04-04 20:43:56','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31680630235','Cleared','3','2023-04-04 21:48:11','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(791,'','Voucher','','2023-04-04 22:01:46','','0','3','2023-04-04 22:01:46','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','manager','','','0','31680634904','Cleared','3','2023-04-04 22:10:48','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(792,'','Voucher','','2023-04-04 22:16:17','','0','3','2023-04-04 22:16:17','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','martin','','','0','31680635776','Cleared','3','2023-04-04 22:22:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(793,'','Mpesa','','2023-04-05 10:06:26','','0','3','2023-04-05 10:06:26','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','aszx','','','0','31680678384','Cleared','3','2023-04-05 15:03:10','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(794,'nfh1','Mpesa','','2023-04-05 14:39:17','','0','3','2023-04-05 14:39:17','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31680694755','Cleared','3','2023-04-05 16:27:05','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(795,'ixwo','Mpesa','','2023-04-05 15:49:05','','0','3','2023-04-05 15:49:05','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','ixwo','','','0','31680698943','Cleared','3','2023-04-05 22:49:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(796,'7kjy','Mpesa','','2023-04-05 15:49:20','','0','3','2023-04-05 15:49:20','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','31680698958','Cleared','3','2023-04-05 16:48:57','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(797,'','Cash','','2023-04-05 15:49:33','','0','3','2023-04-05 15:49:33','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed','','','','0','31680698971','Cleared','3','2023-04-05 16:22:24','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(798,'','Cash','','2023-04-05 15:49:46','','0','3','2023-04-05 15:49:46','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed','','','','0','31680698985','Cleared','3','2023-04-05 16:21:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(799,'','Cash','','2023-04-05 16:36:17','','0','3','2023-04-05 16:36:17','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31680701776','Cleared','3','2023-04-05 16:36:37','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(800,'pu6r','Mpesa','','2023-04-05 17:28:30','','0','3','2023-04-05 17:28:30','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','31680704909','Cleared','3','2023-04-05 17:30:42','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(801,'nmhg','Mpesa','','2023-04-05 17:46:44','','0','3','2023-04-05 17:46:44','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31680706003','Cleared','3','2023-04-05 18:25:32','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(802,'','Voucher','','2023-04-05 17:52:23','','0','3','2023-04-05 17:52:23','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','manager','','','0','31680706341','Cleared','3','2023-04-05 18:03:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(803,'','Voucher','','2023-04-05 17:53:17','','0','3','2023-04-05 17:53:17','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','cedrick','','','0','31680706395','Cleared','3','2023-04-05 18:02:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(804,'','Voucher','','2023-04-05 18:04:02','','0','3','2023-04-05 18:04:02','','0','330','1','retail','0','330','1','0','330','0','0','0','0','printed','martin','','','0','31680707041','Cleared','3','2023-04-05 18:24:02','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(805,'ejep','Mpesa','','2023-04-05 18:23:04','','0','3','2023-04-05 18:23:04','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','31680708182','Cleared','3','2023-04-05 18:24:34','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(806,'srjm','Mpesa','','2023-04-05 19:24:46','','0','3','2023-04-05 19:24:46','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','31680711881','Cleared','3','2023-04-05 22:39:12','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(807,'','Voucher','','2023-04-05 19:25:00','','0','3','2023-04-05 19:25:00','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','mzae','','','0','31680711898','Cleared','3','2023-04-05 20:34:57','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(808,'','Cash','','2023-04-05 19:25:16','','0','3','2023-04-05 19:25:16','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed','','','','0','31680711914','Cleared','3','2023-04-05 20:33:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(809,'','Voucher','','2023-04-05 19:28:37','','0','3','2023-04-05 19:28:37','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','kamande','','','0','31680712116','Cleared','3','2023-04-05 19:34:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(810,'','Cash','','2023-04-05 20:29:33','','0','3','2023-04-05 20:29:34','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed','','','','0','31680715772','Cleared','3','2023-04-05 20:33:02','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(811,'','Voucher','','2023-04-05 21:43:03','','0','3','2023-04-05 21:43:03','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','cedrick','','','0','31680720182','Cleared','3','2023-04-05 21:48:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(812,'','Cash','','2023-04-05 21:48:35','','0','3','2023-04-05 21:48:35','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','george','','','0','31680720514','Cleared','3','2023-04-05 22:58:11','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(813,'','Cash','','2023-04-06 14:21:56','','0','3','2023-04-06 14:21:56','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','31680780115','Cleared','3','2023-04-06 17:58:42','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(814,'','Cash','','2023-04-06 14:22:19','','0','3','2023-04-06 14:22:19','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','GEORGE','','','0','31680780137','Cleared','3','2023-04-06 18:04:42','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(815,'34UD','Mpesa','','2023-04-06 14:22:40','','0','3','2023-04-06 14:22:40','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31680780159','Cleared','3','2023-04-06 14:23:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(816,'','Mpesa','','2023-04-06 14:53:08','','0','3','2023-04-06 14:53:08','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','028W','','','0','31680781980','Cleared','3','2023-04-06 18:57:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(817,'','Cash','','2023-04-06 17:06:13','','0','4','2023-04-06 17:06:13','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','41680789971','Cleared','4','2023-04-06 21:52:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(818,'','Cash','','2023-04-06 17:06:30','','0','4','2023-04-06 17:06:30','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41680789988','Cleared','4','2023-04-06 17:55:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(819,'','Cash','','2023-04-06 17:52:18','','0','4','2023-04-06 17:52:18','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','41680792736','Cleared','4','2023-04-06 21:52:00','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(820,'','Voucher','','2023-04-06 18:05:17','','0','3','2023-04-06 18:05:17','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','CEDRICK','','','0','31680793516','Cleared','3','2023-04-06 18:09:37','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(821,'','Mpesa','','2023-04-06 18:27:43','','0','3','2023-04-06 18:27:43','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','MARTIN','','','0','31680794861','Cleared','3','2023-04-06 18:32:47','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(822,'','Voucher','','2023-04-06 18:58:57','','0','4','2023-04-06 18:58:57','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','MANAGER','','','0','41680796736','Cleared','4','2023-04-06 18:59:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(823,'F9KP','Mpesa','','2023-04-06 19:55:14','','0','4','2023-04-06 19:55:14','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41680800113','Cleared','4','2023-04-06 20:26:04','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(824,'F9KP','Mpesa','','2023-04-06 19:55:33','','0','4','2023-04-06 19:55:33','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41680800131','Cleared','4','2023-04-06 20:26:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(825,'','Voucher','','2023-04-06 20:21:53','','0','4','2023-04-06 20:21:53','','0','350','1','retail','0','350','1','0','350','0','0','0','0','printed','PURE','','','0','41680801712','Cleared','4','2023-04-06 22:26:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(826,'','Voucher','','2023-04-06 20:31:37','','0','4','2023-04-06 20:31:37','','0','150','1','retail','0','150','1','0','150','0','0','0','0','printed','GUARDS','','','0','41680802296','Cleared','4','2023-04-06 21:21:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(827,'','Cash','','2023-04-06 20:43:47','','0','4','2023-04-06 20:43:47','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41680803025','Cleared','4','2023-04-06 21:51:40','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(828,'PGPG','Mpesa','','2023-04-06 20:57:55','','0','4','2023-04-06 20:57:55','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41680803874','Cleared','4','2023-04-06 21:51:15','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(829,'7KF1','Mpesa','','2023-04-06 21:17:13','','0','4','2023-04-06 21:17:13','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41680805032','Cleared','4','2023-04-06 21:20:15','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(830,'','Cash','','2023-04-06 21:21:30','','0','4','2023-04-06 21:21:30','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','41680805288','Cleared','4','2023-04-06 21:43:49','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(831,'ON3K','Mpesa','','2023-04-06 22:11:12','','0','4','2023-04-06 22:11:12','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41680808271','Cleared','4','2023-04-06 22:25:34','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(832,'','Voucher','','2023-04-07 09:00:47','','0','4','2023-04-07 09:00:47','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','','','','0','41680847245','Cleared','4','2023-04-07 16:42:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(833,'tw5l','Mpesa','','2023-04-07 09:44:18','','0','4','2023-04-07 09:44:18','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41680849857','Cleared','4','2023-04-07 12:48:10','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(834,'i1vg','Mpesa','','2023-04-07 09:44:31','','0','4','2023-04-07 09:44:31','','0','100','1','retail','0','100','1','0','0','0','0','100','0','printed','','','','0','41680849870','Cleared','4','2023-04-07 14:15:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(835,'5x90','Mpesa','','2023-04-07 11:08:30','','0','3','2023-04-07 11:08:30','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31680854908','Cleared','3','2023-04-07 16:20:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(836,'','Cash','','2023-04-07 11:48:42','','0','4','2023-04-07 11:48:42','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','41680857320','Cleared','4','2023-04-07 11:48:57','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(837,'khbe','Mpesa','','2023-04-07 14:14:34','','0','4','2023-04-07 14:14:34','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41680866072','Cleared','4','2023-04-07 14:39:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(838,'khbe','Mpesa','','2023-04-07 14:14:51','','0','4','2023-04-07 14:14:51','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','41680866089','Cleared','4','2023-04-07 14:39:49','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(839,'','Voucher','','2023-04-07 14:35:21','','0','4','2023-04-07 14:35:21','','0','150','1','retail','0','150','1','0','150','0','0','0','0','printed','mzae','','','0','41680867319','Cleared','4','2023-04-07 16:44:10','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(840,'8895','Mpesa','','2023-04-07 14:50:19','','0','3','2023-04-07 14:50:19','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','31680865986','Cleared','3','2023-04-07 16:21:12','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(841,'72mb','Mpesa','','2023-04-07 15:21:14','','0','4','2023-04-07 15:21:14','','0','600','1','retail','0','600','1','0','0','0','0','600','0','printed','','','','0','41680870073','Cleared','4','2023-04-07 16:11:21','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(842,'ow8t','Mpesa','','2023-04-07 15:36:19','','0','3','2023-04-07 15:36:19','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','31680870978','Cleared','3','2023-04-07 21:55:35','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(843,'05wc','Mpesa','','2023-04-07 15:37:44','','0','3','2023-04-07 15:37:44','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31680871063','Cleared','3','2023-04-07 16:22:17','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(844,'','Cash','','2023-04-07 16:32:47','','0','3','2023-04-07 16:32:47','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31680874366','Cleared','3','2023-04-07 16:33:45','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(845,'','Voucher','','2023-04-07 16:41:46','','0','4','2023-04-07 16:41:46','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','mzae','','','0','41680874905','Cleared','4','2023-04-07 16:43:27','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(846,'','Voucher','','2023-04-07 17:38:21','','0','4','2023-04-07 17:38:21','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','manager\r\n','','','0','41680878299','Cleared','4','2023-04-07 17:39:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(847,'','Cash','','2023-04-07 18:21:24','','0','4','2023-04-07 18:21:24','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41680880882','Cleared','4','2023-04-07 18:29:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(848,'','Mpesa','','2023-04-07 21:40:32','','0','3','2023-04-07 21:40:32','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','3h4w','','','0','31680892831','Cleared','4','2023-04-07 22:32:43','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(849,'laj4','Mpesa','','2023-04-07 21:41:14','','0','3','2023-04-07 21:41:14','','0','600','1','retail','0','600','1','0','0','0','0','600','0','printed','','','','0','31680892872','Cleared','3','2023-04-07 21:53:00','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(850,'','Voucher','','2023-04-07 22:09:27','','0','4','2023-04-07 22:09:27','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','martin','','','0','41680894565','Cleared','4','2023-04-07 22:24:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(851,'','Voucher','','2023-04-07 22:19:24','','0','4','2023-04-07 22:19:24','','0','330','1','retail','0','330','1','0','330','0','0','0','0','printed','cedrick','','','0','41680895162','Cleared','4','2023-04-07 22:23:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(852,'','Voucher','','2023-04-08 10:47:23','','0','4','2023-04-08 10:47:23','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','purity','','','0','41680940042','Cleared','4','2023-04-08 10:48:29','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(853,'o66x','Mpesa','','2023-04-08 10:47:51','','0','4','2023-04-08 10:47:51','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','41680940069','Cleared','4','2023-04-08 14:53:49','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(854,'wrao','Mpesa','','2023-04-08 12:22:14','','0','4','2023-04-08 12:22:14','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41680945732','Cleared','4','2023-04-08 15:08:37','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(855,'opkp','Mpesa','','2023-04-08 13:27:29','','0','4','2023-04-08 13:27:29','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41680949648','Cleared','4','2023-04-08 14:54:27','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(856,'','Voucher','','2023-04-08 13:35:03','','0','4','2023-04-08 13:35:03','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','cleaner','','','0','41680950101','Cleared','4','2023-04-08 13:35:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(857,'v2jq','Mpesa','','2023-04-08 14:04:04','','0','4','2023-04-08 14:04:04','','0','280','1','retail','0','280','1','0','0','0','0','280','0','new','','','','0','41680951842','Delivered','4','2023-04-08 14:55:12','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(858,'v2jq','Mpesa','','2023-04-08 14:04:15','','0','4','2023-04-08 14:04:15','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41680951854','Cleared','4','2023-04-08 14:55:39','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(859,'h4jf','Mpesa','','2023-04-08 14:35:17','','0','4','2023-04-08 14:35:17','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41680953715','Cleared','4','2023-04-08 15:59:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(860,'','Cash','','2023-04-08 15:29:16','','0','4','2023-04-08 15:29:16','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41680956955','Cleared','4','2023-04-08 18:19:45','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(861,'wrao','Mpesa','','2023-04-08 15:39:44','','0','3','2023-04-08 15:39:44','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','31680957583','Cleared','3','2023-04-08 16:54:45','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(862,'wrao','Mpesa','','2023-04-08 15:39:59','','0','3','2023-04-08 15:39:59','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31680957598','Cleared','3','2023-04-08 16:55:12','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(863,'jh2i','Mpesa','','2023-04-08 15:48:31','','0','3','2023-04-08 15:48:31','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','31680958110','Cleared','3','2023-04-08 16:57:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(864,'2av5','Mpesa','','2023-04-08 16:21:04','','0','3','2023-04-08 16:21:04','','0','550','1','retail','0','550','1','0','0','0','0','550','0','printed','','','','0','31680960037','Cleared','3','2023-04-08 18:46:36','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(865,'','Cash','','2023-04-08 16:33:39','','0','4','2023-04-08 16:33:39','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41680960818','Cleared','4','2023-04-08 16:34:29','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(866,'','Cash','','2023-04-08 17:42:15','','0','4','2023-04-08 17:42:15','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','41680964934','Cleared','4','2023-04-08 18:37:37','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(867,'jl3f','Mpesa','','2023-04-08 18:43:08','','0','3','2023-04-08 18:43:08','','0','1300','1','retail','0','1300','1','0','0','0','0','1300','0','printed','jl3f','','','0','31680968342','Cleared','3','2023-04-08 21:57:15','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(868,'','Cash','','2023-04-08 20:04:31','','0','3','2023-04-08 20:04:31','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31680973470','Cleared','3','2023-04-08 21:54:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(869,'6zq2','Mpesa','','2023-04-08 21:03:20','','0','3','2023-04-08 21:03:20','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','31680976998','Cleared','3','2023-04-08 21:57:48','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(870,'nft4','Mpesa','','2023-04-08 21:54:17','','0','3','2023-04-08 21:54:17','','0','700','1','retail','0','700','1','0','0','0','0','700','0','printed','','','','0','31680980047','Cleared','3','2023-04-08 22:21:10','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(871,'','Voucher','','2023-04-08 21:58:26','','0','3','2023-04-08 21:58:26','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','martin','','','0','31680980305','Cleared','3','2023-04-08 21:58:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(872,'','Voucher','','2023-04-08 21:59:15','','0','3','2023-04-08 21:59:15','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','cedrick','','','0','31680980353','Cleared','3','2023-04-08 22:06:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(873,'','Voucher','','2023-04-08 22:00:55','','0','3','2023-04-08 22:00:55','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','manager\r\n','','','0','31680980454','Cleared','3','2023-04-08 22:05:59','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(874,'','Cash','','2023-04-09 12:55:08','','0','3','2023-04-09 12:55:08','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','31681034107','Cleared','3','2023-04-09 13:58:27','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(875,'','Voucher','','2023-04-09 12:55:25','','0','3','2023-04-09 12:55:25','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','cedrick','','','0','31681034124','Cleared','3','2023-04-09 13:58:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(876,'xown','Mpesa','','2023-04-09 13:57:12','','0','3','2023-04-09 13:57:12','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','31681037830','Cleared','3','2023-04-09 13:59:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(877,'boml','Mpesa','','2023-04-09 13:58:11','','0','3','2023-04-09 13:58:11','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31681037889','Cleared','3','2023-04-09 13:59:29','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(878,'','Voucher','','2023-04-09 14:22:44','','0','4','2023-04-09 14:22:44','','0','150','1','retail','0','150','1','0','150','0','0','0','0','printed','purity','','','0','41681039363','Cleared','4','2023-04-09 18:18:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(879,'g4j3','Mpesa','','2023-04-09 15:03:46','','0','4','2023-04-09 15:03:46','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41681041825','Cleared','4','2023-04-09 15:42:45','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(880,'','Voucher','','2023-04-09 15:39:13','','0','4','2023-04-09 15:39:13','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','manager ','','','0','41681043951','Cleared','4','2023-04-09 15:42:00','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(881,'','Cash','','2023-04-09 17:15:21','','0','4','2023-04-09 17:15:21','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41681049719','Cleared','4','2023-04-09 18:18:35','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(882,'hntq','Mpesa','','2023-04-09 17:31:27','','0','4','2023-04-09 17:31:27','','0','90','1','retail','0','90','1','0','0','0','0','90','0','printed','','','','0','41681050679','Cleared','4','2023-04-09 18:19:24','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(883,'','Cash','','2023-04-09 17:53:17','','0','3','2023-04-09 17:53:17','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed','','','','0','31681051996','Cleared','3','2023-04-09 18:37:37','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(884,'','Cash','','2023-04-09 18:00:49','','0','4','2023-04-09 18:00:49','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','41681052448','Cleared','4','2023-04-09 18:37:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(885,'72u2','Mpesa','','2023-04-09 20:46:33','','0','4','2023-04-09 20:46:33','','0','480','1','retail','0','480','1','0','0','0','0','480','0','printed','','','','0','41681062354','Cleared','4','2023-04-09 20:47:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(886,'w4pw','Mpesa','','2023-04-09 20:53:04','','0','4','2023-04-09 20:53:04','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41681062783','Cleared','4','2023-04-09 20:53:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(887,'05aw','Mpesa','','2023-04-10 09:33:37','','0','4','2023-04-10 09:33:37','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41681108415','Cleared','4','2023-04-10 09:55:08','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(888,'','Voucher','','2023-04-10 09:41:34','','0','4','2023-04-10 09:41:34','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','purity','','','0','41681108893','Cleared','4','2023-04-10 18:18:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(889,'','Cash','','2023-04-10 10:52:55','','0','4','2023-04-10 10:52:55','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed','','','','0','41681113163','Cleared','4','2023-04-10 10:53:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(890,'jk04','Mpesa','','2023-04-10 14:19:45','','0','4','2023-04-10 14:19:45','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41681125583','Cleared','4','2023-04-10 14:20:27','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(891,'qalf','Mpesa','','2023-04-10 16:40:48','','0','4','2023-04-10 16:40:48','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41681134047','Cleared','4','2023-04-10 18:20:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(892,'','Cash','','2023-04-10 16:52:11','','0','4','2023-04-10 16:52:11','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41681134730','Cleared','4','2023-04-10 18:38:02','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(893,'wcyk','Mpesa','','2023-04-10 17:37:40','','0','4','2023-04-10 17:37:40','','0','600','1','retail','0','600','1','0','0','0','0','600','0','printed','','','','0','41681137451','Cleared','4','2023-04-10 18:20:39','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(894,'wcyk','Mpesa','','2023-04-10 17:57:06','','0','4','2023-04-10 17:57:06','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41681138613','Cleared','4','2023-04-10 18:21:12','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(895,'h5ej','Mpesa','','2023-04-10 18:15:20','','0','4','2023-04-10 18:15:20','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','41681139719','Cleared','4','2023-04-10 18:21:36','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(896,'','Cash','','2023-04-10 19:04:09','','0','4','2023-04-10 19:04:09','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41681142647','Cleared','4','2023-04-10 19:05:07','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(897,'gzpq','Mpesa','','2023-04-11 11:24:57','','0','4','2023-04-11 11:24:57','','0','880','1','retail','0','880','1','0','0','0','0','880','0','printed','','','','0','41681201479','Cleared','4','2023-04-11 12:20:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(898,'gzpq','Mpesa','','2023-04-11 11:32:14','','0','4','2023-04-11 11:32:14','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41681201933','Cleared','4','2023-04-11 12:21:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(899,'','Voucher','','2023-04-11 12:51:22','','0','4','2023-04-11 12:51:22','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','mzae','','','0','41681206681','Cleared','4','2023-04-11 15:42:10','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(900,'djfd','Mpesa','','2023-04-11 15:40:21','','0','4','2023-04-11 15:40:21','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41681216819','Cleared','3','2023-04-11 19:52:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(901,'','Voucher','','2023-04-11 15:42:39','','0','4','2023-04-11 15:42:39','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','purity','','','0','41681216958','Cleared','4','2023-04-11 15:43:08','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(902,'','Voucher','','2023-04-11 15:48:31','','0','4','2023-04-11 15:48:31','','0','580','1','retail','0','580','1','0','580','0','0','0','0','printed','cedrick\\mzae','','','0','41681217308','Cleared','4','2023-04-11 15:49:29','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(903,'','Voucher','','2023-04-11 16:20:53','','0','4','2023-04-11 16:20:53','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','mzae','','','0','41681219251','Cleared','4','2023-04-11 16:34:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(904,'','Voucher','','2023-04-11 16:33:35','','0','4','2023-04-11 16:33:35','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','mzae','','','0','41681220014','Cleared','4','2023-04-11 16:34:45','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(905,'','Voucher','','2023-04-11 17:06:16','','0','3','2023-04-11 17:06:16','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','manager','','','0','31681221974','Cleared','3','2023-04-11 17:38:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(906,'tvo0','Mpesa','','2023-04-11 17:39:13','','0','3','2023-04-11 17:39:13','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31681223952','Cleared','3','2023-04-11 19:51:34','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(907,'','Cash','','2023-04-11 18:26:16','','0','4','2023-04-11 18:26:16','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41681226774','Cleared','3','2023-04-11 20:06:39','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(908,'2vit','Mpesa','','2023-04-11 18:26:55','','0','3','2023-04-11 18:26:55','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','31681226814','Cleared','3','2023-04-11 19:50:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(909,'btfw','Mpesa','','2023-04-11 19:33:39','','0','3','2023-04-11 19:33:39','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31681230817','Cleared','3','2023-04-11 19:49:35','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(910,'','Voucher','','2023-04-11 20:19:49','','0','3','2023-04-11 20:19:49','','0','150','1','retail','0','150','1','0','150','0','0','0','0','printed','guards','','','0','31681233588','Cleared','3','2023-04-11 20:20:35','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(911,'','Cash','','2023-04-11 20:20:54','','0','3','2023-04-11 20:20:54','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','31681233653','Cleared','3','2023-04-11 20:49:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(912,'','Cash','','2023-04-11 20:50:31','','0','3','2023-04-11 20:50:31','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','waiter club','','','0','31681235430','Cleared','3','2023-04-11 20:54:37','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(913,'kjh4','Mpesa','','2023-04-11 22:08:01','','0','3','2023-04-11 22:08:01','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','31681240071','Cleared','3','2023-04-11 22:33:56','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(914,'llk0','Mpesa','','2023-04-11 22:26:32','','0','3','2023-04-11 22:26:32','','0','600','1','retail','0','600','1','0','0','0','0','600','0','printed','llk0','','','0','31681241187','Cleared','3','2023-04-11 22:44:27','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(915,'','Voucher','','2023-04-11 22:35:23','','0','3','2023-04-11 22:35:23','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','','','','0','31681241722','Cleared','3','2023-04-11 22:35:45','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(916,'','Voucher','','2023-04-11 22:36:00','','0','3','2023-04-11 22:36:00','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','','','','0','31681241759','Cleared','3','2023-04-11 22:36:15','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(917,'','Voucher','','2023-04-11 22:36:41','','0','3','2023-04-11 22:36:41','','0','500','1','retail','0','500','1','0','500','0','0','0','0','printed','','','','0','31681241788','Cleared','3','2023-04-11 22:37:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(918,'8z8v','Mpesa','','2023-04-12 13:05:39','','0','3','2023-04-12 13:05:39','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','8z8v','','','0','31681293934','Cleared','3','2023-04-12 13:08:42','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(919,'','Voucher','','2023-04-12 13:09:18','','0','3','2023-04-12 13:09:18','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','cedrick','','','0','31681294157','Cleared','3','2023-04-12 13:09:48','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(920,'0jf4','Mpesa','','2023-04-12 13:29:33','','0','3','2023-04-12 13:29:33','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','31681295372','Cleared','3','2023-04-12 20:20:33','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(921,'3h81','Mpesa','','2023-04-12 13:48:57','','0','3','2023-04-12 13:48:57','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','31681296535','Cleared','3','2023-04-12 13:51:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(922,'','Voucher','','2023-04-12 17:38:24','','0','3','2023-04-12 17:38:24','','0','150','1','retail','0','150','1','0','150','0','0','0','0','printed','mzae','','','0','31681310302','Cleared','3','2023-04-12 18:17:56','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(923,'ojf4','Mpesa','','2023-04-12 17:39:09','','0','3','2023-04-12 17:39:09','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','31681310347','Cleared','3','2023-04-12 20:19:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(924,'','Cash','','2023-04-12 17:56:30','','0','3','2023-04-12 17:56:30','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','31681311388','Cleared','3','2023-04-12 18:17:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(925,'','Cash','','2023-04-12 18:01:38','','0','3','2023-04-12 18:01:38','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31681311696','Cleared','3','2023-04-12 20:04:27','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(926,'yjhj','Mpesa','','2023-04-12 18:43:31','','0','3','2023-04-12 18:43:31','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','31681314209','Cleared','3','2023-04-12 20:04:05','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(927,'dlth','Mpesa','','2023-04-12 19:00:26','','0','3','2023-04-12 19:00:26','','0','550','1','retail','0','550','1','0','0','0','0','550','0','printed','','','','0','31681315195','Cleared','3','2023-04-12 20:02:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(928,'qvss','Mpesa','','2023-04-12 19:48:00','','0','3','2023-04-12 19:48:00','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','31681318079','Cleared','3','2023-04-12 20:03:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(929,'','Cash','','2023-04-12 20:05:12','','0','3','2023-04-12 20:05:12','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','31681319110','Cleared','3','2023-04-12 20:17:47','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(930,'w91l','Mpesa','','2023-04-12 20:05:23','','0','3','2023-04-12 20:05:23','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31681319122','Cleared','3','2023-04-12 22:09:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(931,'lo55','Mpesa','','2023-04-12 20:21:05','','0','3','2023-04-12 20:21:05','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31681320064','Cleared','3','2023-04-12 21:30:07','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(932,'','Voucher','','2023-04-12 21:33:48','','0','3','2023-04-12 21:33:48','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','manager','','','0','31681324427','Cleared','3','2023-04-12 21:41:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(933,'','Voucher','','2023-04-12 22:10:04','','0','3','2023-04-12 22:10:04','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','martin','','','0','31681326603','Cleared','3','2023-04-12 22:10:42','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(934,'kb7l','Mpesa','','2023-04-13 12:01:47','','0','3','2023-04-13 12:01:47','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','31681376505','Cleared','3','2023-04-13 12:05:42','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(935,'3s dr','Mpesa','','2023-04-13 12:39:58','','0','3','2023-04-13 12:39:58','','0','1050','1','retail','0','1050','1','0','0','0','0','1050','0','printed','','','','0','31681378784','Cleared','4','2023-04-13 22:00:05','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(936,'ilfi','Mpesa','','2023-04-13 12:40:54','','0','3','2023-04-13 12:40:54','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','31681378853','Cleared','3','2023-04-13 15:47:12','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(937,'','Voucher','','2023-04-13 14:26:23','','0','3','2023-04-13 14:26:23','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','cedrick','','','0','31681385182','Cleared','3','2023-04-13 15:45:36','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(938,'','Voucher','','2023-04-13 15:34:38','','0','3','2023-04-13 15:34:38','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','manager','','','0','31681389277','Cleared','3','2023-04-13 15:36:15','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(939,'042t','Mpesa','','2023-04-13 16:38:23','','0','4','2023-04-13 16:38:23','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41681393102','Cleared','4','2023-04-13 19:48:11','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(940,'','Cash','','2023-04-13 17:31:53','','0','4','2023-04-13 17:31:53','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41681396311','Cleared','4','2023-04-13 19:48:24','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(941,'rugs','Mpesa','','2023-04-13 18:17:17','','0','4','2023-04-13 18:17:17','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41681399036','Cleared','4','2023-04-13 19:49:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(942,'zf67','Mpesa','','2023-04-13 19:08:49','','0','4','2023-04-13 19:08:49','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41681402127','Cleared','4','2023-04-13 19:49:45','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(943,'hzew','Mpesa','','2023-04-13 19:46:49','','0','4','2023-04-13 19:46:49','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41681404408','Cleared','4','2023-04-13 21:03:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(944,'dcfb','Mpesa','','2023-04-13 21:02:00','','0','4','2023-04-13 21:02:00','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41681408919','Cleared','4','2023-04-13 21:03:40','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(945,'hpmh','Mpesa','','2023-04-13 21:57:06','','0','4','2023-04-13 21:57:06','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41681412225','Cleared','4','2023-04-13 21:58:08','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(946,'','Voucher','','2023-04-13 21:58:36','','0','4','2023-04-13 21:58:36','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','martin','','','0','41681412314','Cleared','4','2023-04-13 21:59:10','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(947,'','Cash','','2023-04-13 22:10:42','','0','4','2023-04-13 22:10:42','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41681413041','Cleared','4','2023-04-13 22:21:04','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(948,'','Cash','','2023-04-14 09:39:36','','0','4','2023-04-14 09:39:36','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41681454375','Cleared','4','2023-04-14 09:40:00','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(949,'','Voucher','','2023-04-14 10:14:53','','0','4','2023-04-14 10:14:53','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','','','','0','41681456492','Cleared','4','2023-04-14 10:15:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(950,'au6u','Mpesa','','2023-04-14 10:28:08','','0','4','2023-04-14 10:28:08','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41681457286','Cleared','4','2023-04-14 10:29:27','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(951,'','Cash','','2023-04-14 14:17:28','','0','4','2023-04-14 14:17:28','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','41681471046','Cleared','4','2023-04-14 18:03:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(952,'','Cash','','2023-04-14 16:45:56','','0','3','2023-04-14 16:45:56','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed','','','','0','31681479950','Cleared','3','2023-04-14 16:48:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(953,'vfen','Mpesa','','2023-04-14 16:47:24','','0','3','2023-04-14 16:47:24','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','31681480039','Cleared','3','2023-04-14 21:09:33','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(954,'ozo8','Mpesa','','2023-04-14 17:26:51','','0','3','2023-04-14 17:26:51','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','ozo8','','','0','31681482410','Cleared','3','2023-04-14 21:28:42','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(955,'ozo8','Mpesa','','2023-04-14 17:27:46','','0','3','2023-04-14 17:27:46','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','31681482464','Cleared','3','2023-04-14 19:54:37','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(956,'ozo8','Mpesa','','2023-04-14 17:37:45','','0','3','2023-04-14 17:37:45','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31681483063','Cleared','3','2023-04-14 19:54:16','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(957,'','Cash','','2023-04-14 18:03:29','','0','4','2023-04-14 18:03:29','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41681484607','Cleared','4','2023-04-14 18:04:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(958,'','Voucher','','2023-04-14 18:12:04','','0','4','2023-04-14 18:12:04','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','mzae','','','0','41681485122','Cleared','4','2023-04-14 18:13:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(959,'tpz6','Mpesa','','2023-04-14 18:30:17','','0','4','2023-04-14 18:30:17','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41681486215','Cleared','4','2023-04-14 19:42:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(960,'tpz6','Mpesa','','2023-04-14 18:47:09','','0','4','2023-04-14 18:47:09','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41681487228','Cleared','4','2023-04-14 21:16:21','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(961,'tpz6','Mpesa','','2023-04-14 19:03:36','','0','4','2023-04-14 19:03:36','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41681488215','Cleared','4','2023-04-14 21:16:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(962,'','Cash','','2023-04-14 19:03:56','','0','4','2023-04-14 19:03:56','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41681488235','Cleared','4','2023-04-14 19:31:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(963,'','Voucher','','2023-04-14 19:08:18','','0','4','2023-04-14 19:08:18','','0','150','1','retail','0','150','1','0','150','0','0','0','0','printed','purity','','','0','41681488497','Cleared','4','2023-04-14 21:20:39','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(964,'','Cash','','2023-04-14 19:31:31','','0','3','2023-04-14 19:31:31','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','31681489889','Cleared','3','2023-04-14 19:32:39','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(965,'','Voucher','','2023-04-14 19:32:03','','0','3','2023-04-14 19:32:03','','0','150','1','retail','0','150','1','0','150','0','0','0','0','printed','mzae','','','0','31681489921','Cleared','3','2023-04-14 21:11:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(966,'30yp','Mpesa','','2023-04-14 19:41:05','','0','3','2023-04-14 19:41:05','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','31681490464','Cleared','3','2023-04-14 20:05:32','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(967,'80wr','Mpesa','','2023-04-14 19:42:12','','0','4','2023-04-14 19:42:12','','0','700','1','retail','0','700','1','0','0','0','0','700','0','printed','','','','0','41681490528','Cleared','4','2023-04-14 21:22:27','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(968,'','Voucher','','2023-04-14 21:44:28','','0','3','2023-04-14 21:44:28','','0','350','1','retail','0','350','1','0','350','0','0','0','0','printed','manager','','','0','31681497866','Cleared','3','2023-04-14 22:11:21','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(969,'gq1b','Mpesa','','2023-04-14 21:54:31','','0','3','2023-04-14 21:54:31','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','31681498469','Cleared','3','2023-04-14 22:05:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(970,'zaie','Mpesa','','2023-04-14 22:24:58','','0','3','2023-04-14 22:24:58','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','zaie','','','0','31681500297','Cleared','3','2023-04-14 22:29:00','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(971,'','Voucher','','2023-04-14 22:38:05','','0','3','2023-04-14 22:38:05','','0','560','1','retail','0','560','1','0','560','0','0','0','0','printed','martin','','','0','31681501080','Cleared','3','2023-04-14 22:39:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(972,'','Cash','','2023-04-15 08:46:47','','0','4','2023-04-15 08:46:47','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41681537605','Cleared','4','2023-04-15 09:24:11','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(973,'51if','Mpesa','','2023-04-15 08:47:01','','0','4','2023-04-15 08:47:01','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41681537619','Cleared','4','2023-04-15 09:23:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(974,'zmfq','Mpesa','','2023-04-15 09:27:58','','0','4','2023-04-15 09:27:58','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41681540077','Cleared','4','2023-04-15 09:28:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(975,'8999p','Mpesa','','2023-04-15 10:29:36','','0','4','2023-04-15 10:29:36','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41681543775','Cleared','4','2023-04-15 12:16:34','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(976,'4xtb','Mpesa','','2023-04-15 11:02:58','','0','4','2023-04-15 11:02:58','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','4xtb','','','0','41681545777','Cleared','4','2023-04-15 11:04:38','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(977,'4xtb','Mpesa','','2023-04-15 11:03:15','','0','4','2023-04-15 11:03:15','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41681545794','Cleared','4','2023-04-15 11:05:04','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(978,'4xtb','Mpesa','','2023-04-15 11:03:27','','0','4','2023-04-15 11:03:27','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41681545806','Cleared','4','2023-04-15 11:05:33','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(979,'','Cash','','2023-04-15 11:06:25','','0','4','2023-04-15 11:06:25','','150','150','1','retail','0','150','1','0','0','0','0','0','0','new','george','','','0','41681545984','No','3','2023-04-15 22:11:43','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(980,'','Cash','','2023-04-15 12:49:47','','0','4','2023-04-15 12:49:47','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed','','','','0','41681552186','Cleared','4','2023-04-15 13:40:05','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(981,'8061','Mpesa','','2023-04-15 12:50:11','','0','4','2023-04-15 12:50:11','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','41681552210','Cleared','4','2023-04-15 13:56:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(982,'','Cash','','2023-04-15 13:35:00','','0','4','2023-04-15 13:35:00','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed','','','','0','41681554899','Cleared','4','2023-04-15 13:40:17','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(983,'','Mpesa','','2023-04-15 15:15:17','','0','3','2023-04-15 15:15:17','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','bzjh','','','0','31681560915','Cleared','3','2023-04-15 15:16:24','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(984,'li29','Mpesa','','2023-04-15 17:01:55','','0','3','2023-04-15 17:01:55','','0','700','1','retail','0','700','1','0','0','0','0','700','0','printed','','','','0','31681567304','Cleared','3','2023-04-15 17:30:48','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(985,'','Cash','','2023-04-15 17:48:44','','0','4','2023-04-15 17:48:44','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','41681570122','Cleared','4','2023-04-15 18:28:33','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(986,'','Cash','','2023-04-15 17:57:53','','0','4','2023-04-15 17:57:53','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41681570671','Cleared','4','2023-04-15 18:12:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(987,'','Voucher','','2023-04-15 18:12:50','','0','4','2023-04-15 18:12:50','','0','500','1','retail','0','500','1','0','500','0','0','0','0','printed','purity','','','0','41681571562','Cleared','4','2023-04-15 18:13:23','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(988,'','Cash','','2023-04-15 18:35:16','','0','3','2023-04-15 18:21:15','','430','430','1','retail','0','430','1','0','0','0','0','0','0','printed','','','','0','31681572073','Cleared','3','2023-04-15 18:55:57','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(989,'','Cash','','2023-04-15 18:56:16','','0','3','2023-04-15 18:56:16','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed','','','','0','31681574175','Cleared','3','2023-04-15 19:34:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(990,'','Cash','','2023-04-15 18:57:41','','0','3','2023-04-15 18:57:41','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31681574260','Cleared','3','2023-04-15 19:34:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(991,'f48c','Mpesa','','2023-04-15 19:26:24','','0','3','2023-04-15 19:26:24','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31681575983','Cleared','3','2023-04-15 20:22:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(992,'elph','Mpesa','','2023-04-15 19:51:27','','0','3','2023-04-15 19:51:27','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31681577485','Cleared','3','2023-04-15 22:08:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(993,'','Cash','','2023-04-15 20:41:07','','0','3','2023-04-15 20:41:07','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed','','','','0','31681580466','Cleared','3','2023-04-15 20:53:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(994,'','Voucher','','2023-04-15 20:52:35','','0','3','2023-04-15 20:52:35','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','cedrick','','','0','31681581154','Cleared','3','2023-04-15 20:53:08','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(995,'','Voucher','','2023-04-15 20:53:27','','0','3','2023-04-15 20:53:27','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','martin','','','0','31681581205','Cleared','3','2023-04-15 20:54:10','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(996,'','Voucher','','2023-04-15 20:55:36','','0','3','2023-04-15 20:55:36','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','manager','','','0','31681581335','Cleared','3','2023-04-15 21:24:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(997,'','Cash','','2023-04-15 21:45:55','','0','3','2023-04-15 21:45:55','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed','','','','0','31681584350','Cleared','3','2023-04-15 22:06:29','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(998,'w2ep','Mpesa','','2023-04-16 13:08:48','','0','3','2023-04-16 13:08:48','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31681639726','Cleared','3','2023-04-16 15:35:21','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(999,'','Cash','','2023-04-16 15:22:44','','0','3','2023-04-16 15:22:44','','280','280','1','retail','0','280','1','0','0','0','0','0','0','printed','','','','0','31681647762','Cleared','3','2023-04-16 15:24:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1000,'','Cash','','2023-04-16 15:23:30','','0','3','2023-04-16 15:23:30','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31681647809','Cleared','3','2023-04-16 16:12:10','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1001,'','Voucher','','2023-04-16 15:53:47','','0','3','2023-04-16 15:53:47','','0','500','1','retail','0','500','1','0','500','0','0','0','0','printed','cedrick','','','0','31681649618','Cleared','4','2023-04-16 21:55:29','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1002,'','Cash','','2023-04-16 17:48:58','','0','4','2023-04-16 17:48:58','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41681656536','Cleared','4','2023-04-16 17:50:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1003,'3wf4','Mpesa','','2023-04-16 19:05:16','','0','4','2023-04-16 19:05:16','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41681661115','Cleared','4','2023-04-16 20:16:38','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1004,'w6hq','Mpesa','','2023-04-16 19:57:25','','0','4','2023-04-16 19:57:25','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41681664243','Cleared','4','2023-04-16 20:55:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1005,'8p7s','Mpesa','','2023-04-16 19:57:48','','0','4','2023-04-16 19:57:48','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41681664267','Cleared','4','2023-04-16 20:17:16','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1006,'','Cash','','2023-04-16 20:17:31','','0','4','2023-04-16 20:17:31','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41681665450','Cleared','4','2023-04-16 20:55:15','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1007,'','Voucher','','2023-04-16 20:53:56','','0','4','2023-04-16 20:53:56','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','manager','','','0','41681667634','Cleared','4','2023-04-16 20:55:39','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1008,'','Voucher','','2023-04-16 20:54:11','','0','4','2023-04-16 20:54:11','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','mzae','','','0','41681667649','Cleared','4','2023-04-16 21:51:32','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1009,'','Voucher','','2023-04-16 20:57:07','','0','4','2023-04-16 20:57:07','','0','100','1','retail','0','100','1','0','100','0','0','0','0','printed','mzae','','','0','41681667826','Cleared','4','2023-04-16 21:51:57','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1010,'','Voucher','','2023-04-16 21:52:44','','0','4','2023-04-16 21:52:44','','0','1030','1','retail','0','1030','1','0','1030','0','0','0','0','printed','martin','','','0','41681671136','Cleared','4','2023-04-16 21:53:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1011,'','Voucher','','2023-04-17 10:08:11','','0','4','2023-04-17 10:08:11','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','purity','','','0','41681715289','Cleared','4','2023-04-17 10:09:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1012,'saop','Mpesa','','2023-04-17 10:08:27','','0','4','2023-04-17 10:08:27','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41681715306','Cleared','4','2023-04-17 10:30:24','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1013,'fhrq','Mpesa','','2023-04-17 11:00:38','','0','4','2023-04-17 11:00:38','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41681718437','Cleared','4','2023-04-17 11:01:08','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1014,'','Cash','','2023-04-17 12:27:08','','0','4','2023-04-17 12:27:08','','150','150','1','retail','0','150','1','0','0','0','0','0','0','new',' ','','','0','41681723626','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1015,'','Cash','','2023-04-17 12:27:29','','0','4','2023-04-17 12:27:29','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41681723647','Cleared','4','2023-04-17 12:53:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1016,'503f','Mpesa','','2023-04-17 12:27:53','','0','4','2023-04-17 12:27:53','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41681723672','Cleared','4','2023-04-17 12:40:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1017,'rgrh','Mpesa','','2023-04-17 12:28:22','','0','4','2023-04-17 12:28:22','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','rgrh','','','0','41681723701','Cleared','4','2023-04-17 12:32:40','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1018,'1gzj','Mpesa','','2023-04-17 12:39:50','','0','4','2023-04-17 12:39:50','','0','450','1','retail','0','450','1','0','0','0','0','450','0','printed','','','','0','41681724376','Cleared','4','2023-04-17 13:21:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1019,'','Voucher','','2023-04-17 14:59:45','','0','4','2023-04-17 14:59:45','','0','150','1','retail','0','150','1','0','150','0','0','0','0','printed','mzae','','','0','41681732783','Cleared','4','2023-04-17 19:19:23','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1020,'zowg','Mpesa','','2023-04-17 16:54:49','','0','4','2023-04-17 16:54:49','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41681739687','Cleared','4','2023-04-17 19:20:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1021,'7wcl','Mpesa','','2023-04-17 17:22:23','','0','4','2023-04-17 17:22:23','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','41681741341','Cleared','4','2023-04-17 18:34:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1022,'q84n','Mpesa','','2023-04-17 18:02:26','','0','4','2023-04-17 18:02:26','','0','530','1','retail','0','530','1','0','0','0','0','530','0','printed','','','','0','41681743739','Cleared','4','2023-04-17 18:35:27','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1023,'','Voucher','','2023-04-17 18:35:50','','0','4','2023-04-17 18:35:50','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','martin','','','0','41681745748','Cleared','4','2023-04-17 19:20:40','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1024,'','Cash','','2023-04-17 18:56:15','','0','4','2023-04-17 18:56:15','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41681746974','Cleared','4','2023-04-17 19:31:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1025,'zv8k','Mpesa','','2023-04-17 18:56:29','','0','4','2023-04-17 18:56:29','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41681746987','Cleared','4','2023-04-17 21:16:10','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1026,'7xbx','Mpesa','','2023-04-17 19:17:17','','0','4','2023-04-17 19:17:17','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41681748236','Cleared','4','2023-04-17 20:20:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1027,'2ri9','Mpesa','','2023-04-17 19:17:41','','0','4','2023-04-17 19:17:41','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41681748259','Cleared','4','2023-04-17 19:21:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1028,'jonl','Mpesa','','2023-04-18 11:10:17','','0','4','2023-04-18 11:10:17','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41681805416','Cleared','3','2023-04-18 21:18:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1029,'','Voucher','','2023-04-18 11:10:34','','0','4','2023-04-18 11:10:34','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','purity','','','0','41681805433','Cleared','4','2023-04-18 11:50:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1030,'','Voucher','','2023-04-18 11:12:19','','0','4','2023-04-18 11:12:19','','0','150','1','retail','0','150','1','0','150','0','0','0','0','printed','mzae','','','0','41681805538','Cleared','4','2023-04-18 11:50:23','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1031,'1dad','Mpesa','','2023-04-18 11:36:32','','0','4','2023-04-18 11:36:32','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','41681806991','Cleared','4','2023-04-18 11:40:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1032,'jsw3','Mpesa','','2023-04-18 11:49:28','','0','4','2023-04-18 11:49:28','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41681807767','Cleared','4','2023-04-18 12:19:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1033,'','Voucher','','2023-04-18 12:51:44','','0','4','2023-04-18 12:51:44','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','dad','','','0','41681811503','Cleared','4','2023-04-18 12:52:08','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1034,'gufp','Mpesa','','2023-04-18 14:08:30','','0','4','2023-04-18 14:08:30','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41681816109','Cleared','4','2023-04-18 14:36:24','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1035,'t3cq','Mpesa','','2023-04-18 15:50:27','','0','3','2023-04-18 15:50:27','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31681822226','Cleared','3','2023-04-18 16:49:45','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1036,'ayoh','Mpesa','','2023-04-18 16:52:09','','0','4','2023-04-18 16:52:09','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','41681825928','Cleared','4','2023-04-18 18:55:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1037,'m5o5','Mpesa','','2023-04-18 16:52:31','','0','4','2023-04-18 16:52:31','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41681825950','Cleared','4','2023-04-18 17:22:07','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1038,'','Cash','','2023-04-18 17:36:22','','0','3','2023-04-18 17:36:22','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed','','','','0','31681828580','Cleared','3','2023-04-18 17:36:40','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1039,'','Cash','','2023-04-18 18:00:46','','0','3','2023-04-18 18:00:46','','730','730','1','retail','0','730','1','0','0','0','0','0','0','printed','','','','0','31681829989','Cleared','3','2023-04-18 19:42:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1040,'','Cash','','2023-04-18 18:12:17','','0','4','2023-04-18 18:12:18','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41681830736','Cleared','4','2023-04-18 18:12:39','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1041,'vztv','Mpesa','','2023-04-18 18:15:52','','0','4','2023-04-18 18:15:52','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41681830951','Cleared','4','2023-04-18 18:16:48','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1042,'ayoh','Mpesa','','2023-04-18 18:52:51','','0','3','2023-04-18 18:52:51','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','ayoh','','','0','31681833144','Cleared','3','2023-04-18 22:40:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1043,'','Voucher','','2023-04-18 19:40:10','','0','3','2023-04-18 19:40:10','','0','350','1','retail','0','350','1','0','350','0','0','0','0','printed','manager','','','0','31681836008','Cleared','3','2023-04-18 21:19:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1044,'psb3','Mpesa','','2023-04-18 19:40:36','','0','3','2023-04-18 19:40:36','','0','700','1','retail','0','700','1','0','0','0','0','700','0','printed','psb3','','','0','31681836028','Cleared','3','2023-04-18 22:39:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1045,'','Cash','','2023-04-18 19:50:50','','0','3','2023-04-18 19:50:50','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed','','','','0','31681836648','Cleared','3','2023-04-18 21:20:11','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1046,'','Mpesa','','2023-04-18 20:07:09','','0','3','2023-04-18 20:07:09','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','jonl','','','0','31681837627','Cleared','3','2023-04-18 21:21:11','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1047,'91rg','Mpesa','','2023-04-18 20:17:52','','0','3','2023-04-18 20:17:52','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','31681838270','Cleared','3','2023-04-18 22:10:57','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1048,'','Voucher','','2023-04-18 21:26:57','','0','3','2023-04-18 21:26:57','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','cedrick','','','0','31681842415','Cleared','3','2023-04-18 21:34:23','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1049,'','Voucher','','2023-04-18 21:27:18','','0','3','2023-04-18 21:27:18','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','everlyn','','','0','31681842436','Cleared','3','2023-04-18 21:34:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1050,'','Voucher','','2023-04-18 22:02:08','','0','3','2023-04-18 22:02:08','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','martin','','','0','31681844526','Cleared','3','2023-04-18 22:03:35','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1051,'','Voucher','','2023-04-19 10:47:31','','0','3','2023-04-19 10:47:31','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','cedrick','','','0','31681890449','Cleared','3','2023-04-19 18:55:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1052,'5lwh','Mpesa','','2023-04-19 10:47:48','','0','3','2023-04-19 10:47:48','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','31681890467','Cleared','3','2023-04-19 19:29:38','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1053,'','Cash','','2023-04-19 10:48:05','','0','3','2023-04-19 10:48:05','','150','150','1','retail','0','150','1','0','0','0','0','0','0','new',' ','','','0','31681890483','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1054,'','Cash','','2023-04-19 17:26:15','','0','3','2023-04-19 17:26:15','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31681914374','Cleared','3','2023-04-19 17:26:33','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1055,'hdop','Mpesa','','2023-04-19 17:30:32','','0','3','2023-04-19 17:30:32','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','hdop','','','0','31681914630','Cleared','3','2023-04-19 17:44:36','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1056,'d1d0','Mpesa','','2023-04-19 18:07:53','','0','3','2023-04-19 18:07:53','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31681916872','Cleared','3','2023-04-19 18:54:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1057,'htws','Mpesa','','2023-04-19 18:08:07','','0','3','2023-04-19 18:08:07','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31681916886','Cleared','3','2023-04-19 19:51:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1058,'','Voucher','','2023-04-19 18:35:33','','0','3','2023-04-19 18:35:34','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','manager','','','0','31681918532','Cleared','3','2023-04-19 19:22:05','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1059,'v8li','Mpesa','','2023-04-19 18:36:05','','0','3','2023-04-19 18:36:05','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','v8li','','','0','31681918564','Cleared','3','2023-04-19 20:16:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1060,'','Cash','','2023-04-19 19:03:21','','0','3','2023-04-19 18:46:55','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','31681919213','Cleared','3','2023-04-19 19:21:17','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1061,'vvsd','Mpesa','','2023-04-19 18:56:22','','0','3','2023-04-19 18:56:22','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31681919781','Cleared','3','2023-04-19 20:15:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1062,'','Cash','','2023-04-19 18:57:02','','0','3','2023-04-19 18:57:02','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','31681919820','Cleared','3','2023-04-19 20:53:38','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1063,'egcv','Mpesa','','2023-04-19 19:36:56','','0','3','2023-04-19 19:36:56','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','31681922215','Cleared','3','2023-04-19 21:50:33','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1064,'','Cash','','2023-04-19 20:02:34','','0','3','2023-04-19 20:02:34','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed','','','','0','31681923753','Cleared','3','2023-04-19 20:49:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1065,'','Cash','','2023-04-19 20:50:04','','0','3','2023-04-19 20:50:04','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','31681926602','Cleared','3','2023-04-19 20:50:47','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1066,'','Voucher','','2023-04-19 21:50:48','','0','3','2023-04-19 21:50:48','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','martin','','','0','31681930247','Cleared','3','2023-04-19 21:51:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1067,'','Cash','','2023-04-20 10:14:51','','0','3','2023-04-20 10:14:51','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','31681974890','Cleared','3','2023-04-20 10:15:15','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1068,'yype','Mpesa','','2023-04-20 12:27:25','','0','3','2023-04-20 12:27:25','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','31681982844','Cleared','3','2023-04-20 14:27:04','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1069,'','Cash','','2023-04-20 12:27:40','','0','3','2023-04-20 12:27:40','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31681982859','Cleared','4','2023-04-20 18:41:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1070,'','Voucher','','2023-04-20 16:42:17','','0','4','2023-04-20 16:42:17','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','mzae','','','0','41681998135','Cleared','4','2023-04-20 17:24:43','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1071,'','Cash','','2023-04-20 16:42:45','','0','4','2023-04-20 16:42:45','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','41681998164','Cleared','4','2023-04-20 18:01:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1072,'f9pw','Mpesa','','2023-04-20 17:23:04','','0','4','2023-04-20 17:23:04','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41682000583','Cleared','4','2023-04-20 17:37:11','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1073,'','Voucher','','2023-04-20 17:23:23','','0','4','2023-04-20 17:23:23','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','manager','','','0','41682000602','Cleared','4','2023-04-20 20:09:29','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1074,'ruq8','Mpesa','','2023-04-20 17:48:11','','0','3','2023-04-20 17:48:11','','0','1000','1','retail','0','1000','1','0','0','0','0','1000','0','printed','','','','0','31682002075','Cleared','3','2023-04-20 18:42:34','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1075,'','Cash','','2023-04-20 18:23:04','','0','4','2023-04-20 18:23:04','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41682004183','Cleared','4','2023-04-20 20:07:42','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1076,'','Voucher','','2023-04-20 19:32:39','','0','4','2023-04-20 19:32:39','','0','150','1','retail','0','150','1','0','150','0','0','0','0','printed','mzae','','','0','41682008357','Cleared','4','2023-04-20 20:08:37','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1077,'','Cash','','2023-04-20 19:53:25','','0','4','2023-04-20 19:53:25','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed','','','','0','41682009604','Cleared','4','2023-04-20 20:08:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1078,'','Voucher','','2023-04-20 20:09:53','','0','4','2023-04-20 20:09:53','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','purity','','','0','41682010592','Cleared','4','2023-04-20 20:10:24','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1079,'','Cash','','2023-04-20 20:17:29','','0','4','2023-04-20 20:17:29','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41682011048','Cleared','4','2023-04-20 22:01:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1080,'mrqt','Mpesa','','2023-04-20 21:21:31','','0','4','2023-04-20 21:21:31','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41682014890','Cleared','4','2023-04-20 21:22:08','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1081,'bgmg','Mpesa','','2023-04-21 12:10:37','','0','4','2023-04-21 12:10:37','','0','800','1','retail','0','800','1','0','0','0','0','800','0','printed','','','','0','41682068217','Cleared','4','2023-04-21 12:24:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1082,'bgmg','Mpesa','','2023-04-21 12:10:51','','0','4','2023-04-21 12:10:51','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41682068250','Cleared','4','2023-04-21 12:25:23','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1083,'bgmg','Mpesa','','2023-04-21 12:11:15','','0','4','2023-04-21 12:11:15','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41682068274','Cleared','4','2023-04-21 12:25:40','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1084,'bjql','Mpesa','','2023-04-21 12:17:07','','0','3','2023-04-21 12:17:07','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','bjql','','','0','31682068625','Cleared','3','2023-04-21 18:37:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1085,'g94b','Mpesa','','2023-04-21 14:30:16','','0','3','2023-04-21 14:30:16','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','31682076615','Cleared','3','2023-04-21 21:59:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1086,'','Cash','','2023-04-21 14:32:30','','0','4','2023-04-21 14:32:30','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','41682076748','Cleared','4','2023-04-21 14:49:32','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1087,'te2p','Mpesa','','2023-04-21 14:45:36','','0','3','2023-04-21 14:45:36','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31682077535','Cleared','3','2023-04-21 16:01:45','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1088,'','Cash','','2023-04-21 14:49:03','','0','4','2023-04-21 14:49:03','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed','','','','0','41682077742','Cleared','4','2023-04-21 15:26:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1089,'','Cash','','2023-04-21 15:21:10','','0','4','2023-04-21 15:21:10','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed','','','','0','41682079669','Cleared','4','2023-04-21 15:27:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1090,'','Cash','','2023-04-21 16:05:53','','0','3','2023-04-21 16:05:53','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','31682082351','Cleared','3','2023-04-21 16:06:07','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1091,'g94b','Mpesa','','2023-04-21 16:06:31','','0','3','2023-04-21 16:06:31','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','31682082389','Cleared','3','2023-04-21 21:59:42','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1092,'9d06','Mpesa','','2023-04-21 17:49:22','','0','4','2023-04-21 17:49:22','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41682088560','Cleared','4','2023-04-21 18:05:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1093,'kwwl','Mpesa','','2023-04-21 18:06:38','','0','4','2023-04-21 18:06:38','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41682089597','Cleared','4','2023-04-21 22:43:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1094,'','Cash','','2023-04-21 19:22:59','','0','3','2023-04-21 18:51:33','','380','380','1','retail','0','380','1','0','0','0','0','0','0','printed','','','','0','31682092283','Cleared','3','2023-04-21 19:38:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1095,'','Cash','','2023-04-21 19:30:19','','0','4','2023-04-21 19:30:19','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed','','','','0','41682094617','Cleared','4','2023-04-21 19:48:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1096,'','Cash','','2023-04-21 19:48:29','','0','4','2023-04-21 19:48:29','','150','150','1','retail','0','150','1','0','0','0','0','0','0','new','george','','','0','41682095707','No','3','2023-04-21 23:03:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1097,'qzoh','Mpesa','','2023-04-21 20:12:56','','0','4','2023-04-21 20:12:56','','0','200','1','retail','0','200','1','0','','0','0','200','0','new','','','','0','41682097174','Confirmed','4','2023-04-21 20:13:56','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1098,'','Cash','','2023-04-21 21:33:32','','0','3','2023-04-21 21:33:32','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed','','','','0','31682102011','Cleared','3','2023-04-21 21:33:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1099,'a5yk','Mpesa','','2023-04-21 22:44:05','','0','3','2023-04-21 22:44:05','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','31682106244','Cleared','3','2023-04-21 22:53:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1100,'','Voucher','','2023-04-21 22:55:22','','0','3','2023-04-21 22:55:22','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','martin','','','0','31682106920','Cleared','3','2023-04-21 23:01:45','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1101,'','Voucher','','2023-04-21 22:56:25','','0','3','2023-04-21 22:56:25','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','purity','','','0','31682106984','Cleared','3','2023-04-21 23:01:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1102,'','Voucher','','2023-04-21 22:56:49','','0','3','2023-04-21 22:56:49','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','manager','','','0','31682107008','Cleared','3','2023-04-21 23:01:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1103,'','Voucher','','2023-04-21 22:57:09','','0','3','2023-04-21 22:57:09','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','cedrick','','','0','31682107028','Cleared','3','2023-04-21 22:58:57','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1104,'tchj','Mpesa','','2023-04-22 09:58:50','','0','4','2023-04-22 09:58:50','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41682146729','Cleared','4','2023-04-22 09:59:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1105,'','Voucher','','2023-04-22 11:47:21','','0','4','2023-04-22 11:47:21','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','purity','','','0','41682153239','Cleared','4','2023-04-22 17:12:59','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1106,'sy8g','Mpesa','','2023-04-22 12:37:40','','0','4','2023-04-22 12:37:40','','0','700','1','retail','0','700','1','0','0','0','0','700','0','printed','','','','0','41682156248','Cleared','4','2023-04-22 13:00:40','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1107,'3z1r','Mpesa','','2023-04-22 12:37:58','','0','4','2023-04-22 12:37:58','','0','700','1','retail','0','700','1','0','0','0','0','700','0','printed','','','','0','41682156273','Cleared','4','2023-04-22 14:18:23','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1108,'','Cash','','2023-04-22 12:48:12','','0','4','2023-04-22 12:48:12','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41682156890','Cleared','4','2023-04-22 12:51:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1109,'nmkc','Mpesa','','2023-04-22 12:59:17','','0','4','2023-04-22 12:59:17','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41682157547','Cleared','4','2023-04-22 13:01:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1110,'u646','Mpesa','','2023-04-22 12:59:46','','0','4','2023-04-22 12:59:46','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41682157584','Cleared','4','2023-04-22 13:01:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1111,'ay3j','Mpesa','','2023-04-22 14:18:56','','0','4','2023-04-22 14:18:56','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41682162335','Cleared','4','2023-04-22 14:59:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1112,'4eha','Mpesa','','2023-04-22 14:32:15','','0','4','2023-04-22 14:32:15','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41682163134','Cleared','3','2023-04-22 23:42:45','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1113,'z5hs','Mpesa','','2023-04-22 15:00:10','','0','4','2023-04-22 15:00:10','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41682164808','Cleared','4','2023-04-22 16:14:47','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1114,'z5hs','Mpesa','','2023-04-22 15:00:38','','0','4','2023-04-22 15:00:38','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41682164836','Cleared','4','2023-04-22 16:15:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1115,'','Voucher','','2023-04-22 15:35:46','','0','4','2023-04-22 15:35:46','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','manager','','','0','41682166944','Cleared','4','2023-04-22 17:10:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1116,'6zl1','Mpesa','','2023-04-22 15:44:30','','0','3','2023-04-22 15:44:30','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','31682167469','Cleared','3','2023-04-22 18:27:33','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1117,'2mbg','Mpesa','','2023-04-22 16:11:55','','0','3','2023-04-22 16:11:55','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','31682169113','Cleared','3','2023-04-22 17:40:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1118,'xcna','Mpesa','','2023-04-22 16:15:28','','0','4','2023-04-22 16:15:28','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41682169327','Cleared','4','2023-04-22 17:12:16','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1119,'qmbl','Mpesa','','2023-04-22 16:16:21','','0','3','2023-04-22 16:16:21','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','31682169379','Cleared','3','2023-04-22 18:42:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1120,'','Cash','','2023-04-22 16:26:05','','0','3','2023-04-22 16:26:05','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31682169963','Cleared','3','2023-04-22 22:59:00','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1121,'','Cash','','2023-04-22 16:33:43','','0','4','2023-04-22 16:33:43','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41682170421','Cleared','4','2023-04-22 17:59:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1122,'21mu','Mpesa','','2023-04-22 16:46:25','','0','3','2023-04-22 16:46:25','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','\r\n','','','0','31682171183','Cleared','3','2023-04-22 18:45:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1123,'','Cash','','2023-04-22 16:49:36','','0','4','2023-04-22 16:49:36','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41682171374','Cleared','4','2023-04-22 17:59:36','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1124,'','Cash','','2023-04-22 16:49:54','','0','4','2023-04-22 16:49:54','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41682171393','Cleared','4','2023-04-22 17:59:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1125,'','Cash','','2023-04-22 17:33:41','','0','4','2023-04-22 17:33:41','','150','150','1','retail','0','150','1','0','0','0','0','0','0','new',' ','','','0','41682174020','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1126,'','Cash','','2023-04-22 17:35:04','','0','3','2023-04-22 17:35:04','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31682174103','Cleared','3','2023-04-22 18:06:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1127,'','Cash','','2023-04-22 17:48:05','','0','4','2023-04-22 17:48:05','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41682174884','Cleared','4','2023-04-22 18:00:05','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1128,'','Cash','','2023-04-22 18:06:58','','0','4','2023-04-22 18:06:58','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41682176017','Cleared','4','2023-04-22 18:07:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1129,'6jbw','Mpesa','','2023-04-22 19:01:41','','0','3','2023-04-22 19:01:41','','0','450','1','retail','0','450','1','0','0','0','0','450','0','printed','','','','0','31682179291','Cleared','3','2023-04-22 19:02:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1130,'','Cash','','2023-04-22 19:05:13','','0','3','2023-04-22 19:05:13','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31682179499','Cleared','3','2023-04-22 23:03:45','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1131,'u4r9','Mpesa','','2023-04-22 19:05:31','','0','3','2023-04-22 19:05:31','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','31682179529','Cleared','3','2023-04-22 23:43:32','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1132,'hqg5','Mpesa','','2023-04-22 19:20:27','','0','3','2023-04-22 19:20:27','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','31682180426','Cleared','3','2023-04-22 23:27:10','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1133,'','Cash','','2023-04-22 19:28:00','','0','3','2023-04-22 19:28:00','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31682180879','Cleared','3','2023-04-22 20:06:21','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1134,'s8xc','Mpesa','','2023-04-22 19:49:58','','0','3','2023-04-22 19:49:58','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31682182197','Cleared','3','2023-04-22 23:02:48','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1135,'df6u','Mpesa','','2023-04-22 22:34:41','','0','3','2023-04-22 22:34:41','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','31682192080','Cleared','3','2023-04-22 23:02:00','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1136,'s8xc','Mpesa','','2023-04-22 22:34:52','','0','3','2023-04-22 22:34:52','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31682192091','Cleared','3','2023-04-22 23:00:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1137,'','Cash','','2023-04-22 22:39:09','','0','3','2023-04-22 22:39:09','','280','280','1','retail','0','280','1','0','0','0','0','0','0','printed','','','','0','31682192347','Cleared','3','2023-04-22 22:59:59','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1138,'8ky1','Mpesa','','2023-04-22 23:17:35','','0','3','2023-04-22 23:17:35','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31682194654','Cleared','3','2023-04-22 23:19:59','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1139,'','Voucher','','2023-04-22 23:47:47','','0','3','2023-04-22 23:47:47','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','martin','','','0','31682196465','Cleared','3','2023-04-22 23:49:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1140,'','Voucher','','2023-04-22 23:48:03','','0','3','2023-04-22 23:48:03','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','cedrick','','','0','31682196482','Cleared','3','2023-04-22 23:49:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1141,'9ygz','Mpesa','','2023-04-23 11:40:21','','0','3','2023-04-23 11:40:21','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','9ygz','','','0','31682238328','Cleared','3','2023-04-23 12:23:34','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1142,'','Cash','','2023-04-23 11:41:56','','0','3','2023-04-23 11:41:56','','180','180','1','retail','0','180','1','0','0','0','0','0','0','printed','','','','0','31682239303','Cleared','3','2023-04-23 12:16:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1143,'1HOL','Mpesa','','2023-04-23 12:51:04','','0','3','2023-04-23 12:51:04','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','1HOL','','','0','31682243457','Cleared','3','2023-04-23 18:41:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1144,'','Mpesa','','2023-04-23 14:02:50','','0','3','2023-04-23 14:02:50','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','BCU5','','','0','31682247768','Cleared','3','2023-04-23 18:43:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1145,'','Cash','','2023-04-23 18:17:14','','0','4','2023-04-23 18:17:14','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41682263032','Cleared','4','2023-04-23 18:36:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1146,'','Mpesa','','2023-04-23 18:17:31','','0','4','2023-04-23 18:17:31','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','7bla','','','0','41682263050','Cleared','4','2023-04-23 20:12:36','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1147,'h6tr','Mpesa','','2023-04-23 19:37:09','','0','4','2023-04-23 19:37:09','','0','580','1','retail','0','580','1','0','0','0','0','580','0','printed','','','','0','41682267825','Cleared','4','2023-04-23 20:12:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1148,'','Cash','','2023-04-23 19:55:22','','0','3','2023-04-23 19:55:22','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','koffi 100paid','','','0','31682268921','Cleared','4','2023-04-23 22:05:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1149,'sfbl','Mpesa','','2023-04-23 20:01:40','','0','4','2023-04-23 20:01:40','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41682269299','Cleared','4','2023-04-23 20:27:15','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1150,'sfbl','Mpesa','','2023-04-23 20:02:09','','0','4','2023-04-23 20:02:09','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41682269327','Cleared','4','2023-04-23 20:27:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1151,'','Cash','','2023-04-23 20:02:24','','0','4','2023-04-23 20:02:24','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41682269343','Cleared','4','2023-04-23 20:11:29','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1152,'','Cash','','2023-04-23 20:10:15','','0','4','2023-04-23 20:10:15','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41682269814','Cleared','4','2023-04-23 20:11:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1153,'','Voucher','','2023-04-23 22:06:00','','0','4','2023-04-23 22:06:00','','0','990','1','retail','0','990','1','0','990','0','0','0','0','printed','purity\\cedrick\\martin','','','0','41682276752','Cleared','4','2023-04-23 22:07:27','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1154,'','Voucher','','2023-04-23 22:06:13','','0','4','2023-04-23 22:06:13','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','manager','','','0','41682276772','Cleared','4','2023-04-23 22:07:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1155,'','Voucher','','2023-04-24 10:40:34','','0','4','2023-04-24 10:40:34','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','','','','0','41682322032','Cleared','4','2023-04-24 10:41:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1156,'1j9z','Mpesa','','2023-04-24 10:50:01','','0','4','2023-04-24 10:50:01','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41682322584','Cleared','4','2023-04-24 11:03:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1157,'67JJ','Mpesa','','2023-04-24 15:42:27','','0','4','2023-04-24 15:42:27','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41682340146','Cleared','4','2023-04-24 19:43:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1158,'BLIC','Mpesa','','2023-04-24 15:42:38','','0','4','2023-04-24 15:42:38','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41682340156','Cleared','4','2023-04-24 19:44:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1159,'','Voucher','','2023-04-24 16:30:13','','0','4','2023-04-24 16:30:13','','0','400','1','retail','0','400','1','0','400','0','0','0','0','printed','Jessica\r\n','','','0','41682342959','Cleared','4','2023-04-24 16:32:34','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1160,'4JZ4','Mpesa','','2023-04-24 16:57:43','','0','4','2023-04-24 16:57:43','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41682344662','Cleared','4','2023-04-24 19:44:49','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1161,'LJUB','Mpesa','','2023-04-24 17:46:43','','0','4','2023-04-24 17:46:43','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41682347602','Cleared','4','2023-04-24 19:46:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1162,'LJUB','Mpesa','','2023-04-24 17:47:32','','0','4','2023-04-24 17:47:32','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41682347651','Cleared','4','2023-04-24 19:47:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1163,'WQXE','Mpesa','','2023-04-24 18:05:17','','0','4','2023-04-24 18:05:17','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41682348716','Cleared','4','2023-04-24 20:38:17','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1164,'WZIG','Mpesa','','2023-04-24 18:12:40','','0','4','2023-04-24 18:12:40','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41682349158','Cleared','4','2023-04-24 19:47:49','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1165,'WZIG','Mpesa','','2023-04-24 18:25:15','','0','4','2023-04-24 18:25:15','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41682349914','Cleared','4','2023-04-24 19:48:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1166,'','Voucher','','2023-04-24 18:35:26','','0','4','2023-04-24 18:35:26','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','PURITY','','','0','41682350524','Cleared','4','2023-04-24 21:41:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1167,'G4QT','Mpesa','','2023-04-24 19:26:24','','0','4','2023-04-24 19:26:24','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41682353583','Cleared','4','2023-04-24 21:14:59','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1168,'','Cash','','2023-04-24 19:36:18','','0','4','2023-04-24 19:36:18','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41682354176','Cleared','4','2023-04-24 19:48:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1169,'','Voucher','','2023-04-24 19:49:22','','0','4','2023-04-24 19:49:22','','0','350','1','retail','0','350','1','0','350','0','0','0','0','printed','JESS','','','0','41682354954','Cleared','4','2023-04-24 21:15:23','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1170,'NM68','Mpesa','','2023-04-24 21:36:37','','0','4','2023-04-24 21:36:37','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41682361395','Cleared','4','2023-04-24 21:40:37','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1171,'1x8h','Mpesa','','2023-04-25 15:37:38','','0','4','2023-04-25 15:37:38','','0','1200','1','retail','0','1200','1','0','0','0','0','1200','0','printed','','','','0','41682426253','Cleared','4','2023-04-25 15:38:29','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1172,'','Cash','','2023-04-25 15:46:37','','0','4','2023-04-25 15:46:37','','150','150','1','retail','0','150','1','0','0','0','0','0','0','new',' ','','','0','41682426796','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1173,'','Voucher','','2023-04-25 16:52:08','','0','4','2023-04-25 16:52:08','','0','400','1','retail','0','400','1','0','400','0','0','0','0','printed','','','','0','41682430726','Cleared','4','2023-04-25 16:52:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1174,'shi7','Mpesa','','2023-04-25 17:12:37','','0','4','2023-04-25 17:12:37','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41682431955','Cleared','4','2023-04-25 17:58:02','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1175,'','Voucher','','2023-04-25 17:47:04','','0','4','2023-04-25 17:47:04','','0','600','1','retail','0','600','1','0','600','0','0','0','0','printed','mzae','','','0','41682434001','Cleared','4','2023-04-25 18:36:34','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1176,'xd81','Mpesa','','2023-04-25 18:37:52','','0','3','2023-04-25 18:37:52','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31682437070','Cleared','3','2023-04-25 21:35:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1177,'','Cash','','2023-04-25 20:29:20','','0','3','2023-04-25 18:49:18','','210','210','1','retail','0','210','1','0','0','0','0','0','0','printed','','','','0','31682437747','Cleared','3','2023-04-25 21:35:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1178,'','Cash','','2023-04-25 20:14:47','','0','3','2023-04-25 20:14:47','','280','280','1','retail','0','280','1','0','0','0','0','0','0','printed','','','','0','31682442885','Cleared','3','2023-04-25 20:30:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1179,'xzp7','Mpesa','','2023-04-25 20:30:29','','0','3','2023-04-25 20:30:29','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','31682443825','Cleared','3','2023-04-25 21:34:37','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1180,'wcf9','Mpesa','','2023-04-25 20:48:03','','0','3','2023-04-25 20:48:03','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31682444881','Cleared','3','2023-04-25 20:54:40','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1181,'qtio','Mpesa','','2023-04-25 21:23:49','','0','3','2023-04-25 21:23:49','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','31682447028','Cleared','3','2023-04-25 21:33:37','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1182,'w5vu','Mpesa','','2023-04-25 21:24:03','','0','3','2023-04-25 21:24:03','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31682447042','Cleared','3','2023-04-25 21:33:04','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1183,'','Voucher','','2023-04-25 21:36:36','','0','3','2023-04-25 21:36:36','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','manager','','','0','31682447794','Cleared','3','2023-04-25 21:37:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1184,'','Voucher','','2023-04-25 21:36:58','','0','3','2023-04-25 21:36:58','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','manager','','','0','31682447816','Cleared','3','2023-04-25 21:37:29','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1185,'','Voucher','','2023-04-25 21:38:27','','0','3','2023-04-25 21:38:27','','0','400','1','retail','0','400','1','0','400','0','0','0','0','printed','mzae','','','0','31682447892','Cleared','3','2023-04-25 21:38:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1186,'','Voucher','','2023-04-25 21:39:33','','0','3','2023-04-25 21:39:33','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','cedrick','','','0','31682447971','Cleared','3','2023-04-25 21:39:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1187,'','Mpesa','','2023-04-26 11:29:45','','0','3','2023-04-26 11:29:45','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','3vm5','','','0','31682497784','Cleared','3','2023-04-26 12:49:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1188,'7s2c','Mpesa','','2023-04-26 11:57:26','','0','3','2023-04-26 11:57:26','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31682499445','Cleared','3','2023-04-26 12:48:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1189,'','Cash','','2023-04-26 12:39:59','','0','3','2023-04-26 12:39:59','','150','150','1','retail','0','150','1','0','0','0','0','0','0','new','bar man','','','0','31682501998','No','3','2023-04-26 21:59:40','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1190,'','Voucher','','2023-04-26 14:07:23','','0','3','2023-04-26 14:07:23','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','manager','','','0','31682507242','Cleared','3','2023-04-26 18:09:38','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1191,'','Voucher','','2023-04-26 17:24:52','','0','3','2023-04-26 17:24:52','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','mzae','','','0','31682519091','Cleared','3','2023-04-26 18:10:36','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1192,'','Cash','','2023-04-26 18:10:53','','0','3','2023-04-26 18:10:53','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31682521852','Cleared','3','2023-04-26 18:11:33','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1193,'','Cash','','2023-04-26 19:01:39','','0','3','2023-04-26 19:01:39','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','31682524897','Cleared','3','2023-04-26 19:11:05','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1194,'bimw','Mpesa','','2023-04-26 20:18:50','','0','3','2023-04-26 20:18:50','','0','500','1','retail','0','500','1','0','0','0','0','500','0','printed','','','','0','31682529525','Cleared','3','2023-04-26 20:40:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1195,'','Cash','','2023-04-26 20:24:27','','0','3','2023-04-26 20:24:27','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','31682529865','Cleared','3','2023-04-26 20:40:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1196,'','Cash','','2023-04-26 20:45:20','','0','3','2023-04-26 20:45:20','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31682531118','Cleared','3','2023-04-26 21:33:24','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1197,'mzae','Voucher','','2023-04-26 20:48:21','','0','3','2023-04-26 20:48:21','','0','200','1','retail','0','200','1','0','200','0','0','0','0','new',' ','','','0','31682531300','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1198,'','Voucher','','2023-04-26 20:49:46','','0','3','2023-04-26 20:49:46','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','cedrick','','','0','31682531384','Cleared','3','2023-04-26 20:50:35','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1199,'jj1w','Mpesa','','2023-04-26 20:50:54','','0','3','2023-04-26 20:50:54','','0','30','1','retail','0','30','1','0','0','0','0','30','0','printed','','','','0','31682531452','Cleared','3','2023-04-26 21:02:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1200,'','Voucher','','2023-04-26 21:40:40','','0','3','2023-04-26 21:40:40','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','jessica','','','0','31682534438','Cleared','3','2023-04-26 21:41:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1201,'6qcs','Mpesa','','2023-04-26 21:53:18','','0','3','2023-04-26 21:53:18','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','31682535193','Cleared','3','2023-04-26 21:58:57','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1202,'G8yq','Mpesa','','2023-04-27 09:31:55','','0','3','2023-04-27 09:31:55','','0','380','1','retail','0','380','1','0','0','0','0','380','0','printed','','','','0','31682577105','Cleared','3','2023-04-27 10:03:02','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1203,'','Cash','','2023-04-27 10:49:23','','0','3','2023-04-27 10:49:23','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','31682581762','Cleared','3','2023-04-27 12:21:23','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1204,'ndb1','Mpesa','','2023-04-27 12:16:03','','0','3','2023-04-27 11:58:24','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','31682585903','Cleared','3','2023-04-27 12:50:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1205,'','Voucher','','2023-04-27 12:22:01','','0','3','2023-04-27 12:22:01','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','cedrick','','','0','31682587320','Cleared','3','2023-04-27 12:50:35','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1206,'','Cash','','2023-04-27 13:56:20','','0','3','2023-04-27 13:22:44','','450','450','1','retail','0','450','1','0','0','0','0','0','0','printed','','','','0','31682590962','Cleared','3','2023-04-27 17:19:34','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1207,'wcbw','Mpesa','','2023-04-27 14:43:41','','0','3','2023-04-27 14:43:41','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','31682595819','Cleared','3','2023-04-27 18:24:04','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1208,'','Voucher','','2023-04-27 16:22:03','','0','4','2023-04-27 16:22:03','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','mzae','','','0','41682601722','Cleared','4','2023-04-27 18:48:39','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1209,'','Voucher','','2023-04-27 16:22:18','','0','4','2023-04-27 16:22:18','','0','350','1','retail','0','350','1','0','350','0','0','0','0','printed','purity','','','0','41682601737','Cleared','4','2023-04-27 21:32:24','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1210,'','Cash','','2023-04-27 17:55:34','','0','3','2023-04-27 17:55:34','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31682607333','Cleared','3','2023-04-27 18:23:21','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1211,'','Cash','','2023-04-27 17:59:01','','0','3','2023-04-27 17:59:01','','30','30','1','retail','0','30','1','0','0','0','0','0','0','printed','','','','0','31682607540','Cleared','3','2023-04-27 17:59:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1212,'','Cash','','2023-04-27 18:48:52','','0','4','2023-04-27 18:48:52','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed','','','','0','41682610528','Cleared','4','2023-04-27 18:52:38','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1213,'ekg4','Mpesa','','2023-04-27 19:50:37','','0','4','2023-04-27 19:50:37','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41682614236','Cleared','4','2023-04-27 20:21:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1214,'','Cash','','2023-04-27 20:16:58','','0','4','2023-04-27 20:16:58','','180','180','1','retail','0','180','1','0','0','0','0','0','0','printed','','','','0','41682615809','Cleared','4','2023-04-27 20:27:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1215,'1no8','Mpesa','','2023-04-27 21:29:26','','0','4','2023-04-27 21:29:26','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41682620165','Cleared','4','2023-04-27 21:30:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1216,'','Voucher','','2023-04-27 21:30:51','','0','4','2023-04-27 21:30:51','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','mzae','','','0','41682620242','Cleared','4','2023-04-27 21:31:47','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1217,'','Cash','','2023-04-28 11:32:44','','0','3','2023-04-28 11:32:44','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','31682670763','Cleared','3','2023-04-28 15:54:11','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1218,'','Cash','','2023-04-28 11:34:38','','0','4','2023-04-28 11:34:38','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed','','','','0','41682670876','Cleared','4','2023-04-28 11:35:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1219,'','Cash','','2023-04-28 11:34:59','','0','4','2023-04-28 11:34:59','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41682670897','Cleared','4','2023-04-28 11:35:57','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1220,'','Cash','','2023-04-28 11:35:18','','0','4','2023-04-28 11:35:18','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41682670917','Cleared','4','2023-04-28 11:36:10','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1221,'','Cash','','2023-04-28 11:35:32','','0','4','2023-04-28 11:35:32','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41682670930','Cleared','4','2023-04-28 11:36:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1222,'cu4t','Mpesa','','2023-04-28 11:52:50','','0','3','2023-04-28 11:52:50','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31682671969','Cleared','3','2023-04-28 15:54:45','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1223,'q6p2','Mpesa','','2023-04-28 12:41:50','','0','4','2023-04-28 12:41:50','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41682674909','Cleared','4','2023-04-28 13:11:29','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1224,'q6p2','Mpesa','','2023-04-28 12:42:03','','0','4','2023-04-28 12:42:03','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41682674922','Cleared','4','2023-04-28 13:11:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1225,'q6p2','Mpesa','','2023-04-28 12:42:15','','0','4','2023-04-28 12:42:15','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','q6p2','','','0','41682674934','Cleared','4','2023-04-28 13:12:29','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1226,'q6p2','Mpesa','','2023-04-28 12:42:26','','0','4','2023-04-28 12:42:26','','0','30','1','retail','0','30','1','0','0','0','0','30','0','printed','','','','0','41682674945','Cleared','4','2023-04-28 13:12:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1227,'','Cash','','2023-04-28 13:13:30','','0','4','2023-04-28 13:13:30','','280','280','1','retail','0','280','1','0','0','0','0','0','0','printed','','','','0','41682676809','Cleared','4','2023-04-28 13:39:12','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1228,'','Cash','','2023-04-28 13:13:42','','0','4','2023-04-28 13:13:42','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41682676821','Cleared','4','2023-04-28 13:39:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1229,'csqx','Mpesa','','2023-04-28 14:34:01','','0','4','2023-04-28 14:34:01','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41682681639','Cleared','4','2023-04-28 14:50:33','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1230,'csqx','Mpesa','','2023-04-28 14:34:12','','0','4','2023-04-28 14:34:12','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41682681651','Cleared','4','2023-04-28 14:51:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1231,'csqx','Mpesa','','2023-04-28 14:34:31','','0','4','2023-04-28 14:34:31','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41682681670','Cleared','4','2023-04-28 14:51:21','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1232,'','Cash','','2023-04-28 15:41:22','','0','3','2023-04-28 15:41:22','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','31682685681','Cleared','3','2023-04-28 15:41:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1233,'','Voucher','','2023-04-28 15:41:35','','0','3','2023-04-28 15:41:35','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','manager','','','0','31682685694','Cleared','3','2023-04-28 15:55:15','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1234,'','Cash','','2023-04-28 16:11:27','','0','3','2023-04-28 16:11:27','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','31682687486','Cleared','3','2023-04-28 16:11:48','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1235,'','Cash','','2023-04-28 16:47:19','','0','4','2023-04-28 16:47:19','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41682689637','Cleared','4','2023-04-28 18:58:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1236,'25wc','Mpesa','','2023-04-28 16:50:08','','0','3','2023-04-28 16:50:08','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31682689806','Cleared','3','2023-04-28 18:42:00','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1237,'','Voucher','','2023-04-28 17:16:01','','0','4','2023-04-28 17:16:01','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','everlyn','','','0','41682691359','Cleared','3','2023-04-28 18:19:43','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1238,'','Voucher','','2023-04-28 18:26:08','','0','3','2023-04-28 17:29:53','','0','900','1','retail','0','900','1','0','900','0','0','0','0','printed','mwangi','','','0','31682692192','Cleared','3','2023-04-28 18:26:49','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1239,'','Cash','','2023-04-28 18:15:36','','0','3','2023-04-28 18:15:36','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31682694934','Cleared','3','2023-04-28 22:32:40','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1240,'','Cash','','2023-04-28 18:58:33','','0','4','2023-04-28 18:58:33','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41682697511','Cleared','4','2023-04-28 18:59:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1241,'T0N9','Mpesa','','2023-04-28 19:18:44','','0','3','2023-04-28 19:18:44','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','31682698722','Cleared','3','2023-04-28 21:43:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1242,'Y7UH','Mpesa','','2023-04-28 21:41:15','','0','3','2023-04-28 21:41:15','','0','600','1','retail','0','600','1','0','0','0','0','600','0','printed','Y7UH','','','0','31682707273','Cleared','3','2023-04-28 21:42:02','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1243,'','Voucher','','2023-04-28 22:27:33','','0','3','2023-04-28 22:27:33','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','purity','','','0','31682710052','Cleared','3','2023-04-28 22:28:05','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1244,'','Voucher','','2023-04-28 22:36:08','','0','3','2023-04-28 22:36:08','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','mzae','','','0','31682710567','Cleared','3','2023-04-28 22:36:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1245,'','Cash','','2023-04-28 22:49:23','','0','3','2023-04-28 22:49:23','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31682711362','Cleared','3','2023-04-28 22:50:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1246,'','Voucher','','2023-04-28 22:51:54','','0','3','2023-04-28 22:51:54','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','cedrick','','','0','31682711513','Cleared','3','2023-04-28 22:52:36','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1247,'','Voucher','','2023-04-29 11:35:15','','0','4','2023-04-29 11:35:15','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','purity','','','0','41682757313','Cleared','4','2023-04-29 18:14:23','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1248,'gy1p','Mpesa','','2023-04-29 11:35:29','','0','4','2023-04-29 11:35:29','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41682757327','Cleared','4','2023-04-29 11:36:27','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1249,'m7dx','Mpesa','','2023-04-29 11:35:42','','0','4','2023-04-29 11:35:42','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41682757340','Cleared','4','2023-04-29 12:22:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1250,'m7dx','Mpesa','','2023-04-29 11:35:54','','0','4','2023-04-29 11:35:54','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41682757353','Cleared','4','2023-04-29 12:23:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1251,'','Cash','','2023-04-29 13:29:31','','0','4','2023-04-29 13:29:31','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41682764170','Cleared','4','2023-04-29 18:14:00','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1252,'','Cash','','2023-04-29 14:47:13','','0','4','2023-04-29 14:47:13','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41682768832','Cleared','4','2023-04-29 15:30:02','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1253,'jk4f','Mpesa','','2023-04-29 15:24:01','','0','4','2023-04-29 15:24:01','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41682771040','Cleared','4','2023-04-29 15:42:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1254,'hqf3','Mpesa','','2023-04-29 16:56:05','','0','4','2023-04-29 16:56:05','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41682776564','Cleared','4','2023-04-29 18:05:11','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1255,'','Voucher','','2023-04-29 17:22:42','','0','3','2023-04-29 17:22:42','','0','330','1','retail','0','330','1','0','330','0','0','0','0','printed','cedrick','','','0','31682778161','Cleared','3','2023-04-29 17:23:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1256,'sxor','Mpesa','','2023-04-29 21:16:02','','0','3','2023-04-29 17:53:14','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','31682779992','Cleared','3','2023-04-29 22:36:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1257,'paug','Mpesa','','2023-04-29 18:04:16','','0','4','2023-04-29 18:04:16','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41682780655','Cleared','4','2023-04-29 18:05:40','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1258,'','Cash','','2023-04-29 19:04:24','','0','3','2023-04-29 19:04:24','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','31682784262','Cleared','3','2023-04-29 20:47:40','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1259,'','Cash','','2023-04-29 19:09:42','','0','3','2023-04-29 19:09:42','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','31682784581','Cleared','3','2023-04-29 19:48:43','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1260,'','Cash','','2023-04-29 19:42:56','','0','3','2023-04-29 19:42:56','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','31682786575','Cleared','3','2023-04-29 20:50:45','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1261,'','Cash','','2023-04-29 20:52:05','','0','3','2023-04-29 20:52:05','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','31682790661','Cleared','3','2023-04-29 20:52:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1262,'','Cash','','2023-04-29 20:53:11','','0','3','2023-04-29 20:53:11','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31682790790','Cleared','3','2023-04-29 20:53:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1263,'o228','Mpesa','','2023-04-29 21:15:09','','0','3','2023-04-29 21:15:09','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31682792107','Cleared','3','2023-04-29 21:56:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1264,'','Cash','','2023-04-29 21:46:14','','0','3','2023-04-29 21:46:14','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed','','','','0','31682793973','Cleared','3','2023-04-29 22:35:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1265,'jvnt','Mpesa','','2023-04-29 23:02:36','','0','3','2023-04-29 23:02:36','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31682798555','Cleared','3','2023-04-29 23:07:29','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1266,'','Cash','','2023-04-30 12:18:04','','0','3','2023-04-30 12:18:04','','280','280','1','retail','0','280','1','0','0','0','0','0','0','printed','','','','0','31682846282','Cleared','3','2023-04-30 12:22:23','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1267,'','Cash','','2023-04-30 12:58:04','','0','3','2023-04-30 12:58:04','','450','450','1','retail','0','450','1','0','0','0','0','0','0','printed','','','','0','31682848666','Cleared','3','2023-04-30 12:58:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1268,'3yct','Mpesa','','2023-04-30 18:27:02','','0','3','2023-04-30 16:35:58','','0','980','1','retail','0','980','1','0','0','0','0','980','0','printed','','','','0','31682861756','Cleared','3','2023-04-30 19:09:56','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1269,'','Voucher','','2023-04-30 16:39:36','','0','3','2023-04-30 16:39:36','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','cedrick\r\n','','','0','31682861974','Cleared','3','2023-04-30 16:41:10','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1270,'olxk','Mpesa','','2023-04-30 17:07:38','','0','4','2023-04-30 17:07:38','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41682863656','Cleared','4','2023-04-30 21:50:15','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1271,'cwjd','Mpesa','','2023-04-30 18:21:36','','0','4','2023-04-30 18:21:36','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41682868095','Cleared','4','2023-04-30 19:14:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1272,'','Cash','','2023-04-30 18:39:11','','0','4','2023-04-30 18:39:11','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41682869150','Cleared','4','2023-04-30 18:39:24','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1273,'5558','Mpesa','','2023-04-30 18:45:55','','0','3','2023-04-30 18:45:55','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31682869554','Cleared','3','2023-04-30 19:08:11','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1274,'','Cash','','2023-04-30 19:01:17','','0','3','2023-04-30 19:01:17','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed','','','','0','31682870476','Cleared','3','2023-04-30 19:01:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1275,'','Voucher','','2023-04-30 19:11:06','','0','3','2023-04-30 19:11:06','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','manager','','','0','31682871065','Cleared','3','2023-04-30 19:12:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1276,'obzj','Mpesa','','2023-05-01 10:19:41','','0','4','2023-05-01 10:19:41','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41682925579','Cleared','4','2023-05-01 21:31:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1277,'','Voucher','','2023-05-01 10:21:13','','0','4','2023-05-01 10:21:13','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','purity','','','0','41682925671','Cleared','4','2023-05-01 13:05:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1278,'tbwh','Mpesa','','2023-05-01 13:01:42','','0','4','2023-05-01 13:01:42','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41682935300','Cleared','4','2023-05-01 13:04:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1279,'yoqv','Mpesa','','2023-05-01 14:16:16','','0','4','2023-05-01 14:16:16','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41682939775','Cleared','4','2023-05-01 14:17:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1280,'','Cash','','2023-05-01 14:23:53','','0','4','2023-05-01 14:23:53','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41682940232','Cleared','4','2023-05-01 14:34:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1281,'n3m9','Mpesa','','2023-05-01 14:34:08','','0','4','2023-05-01 14:34:08','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41682940846','Cleared','4','2023-05-01 14:35:59','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1282,'111y','Mpesa','','2023-05-01 14:42:36','','0','4','2023-05-01 14:42:36','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41682941354','Cleared','4','2023-05-01 17:29:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1283,'','Voucher','','2023-05-01 14:43:00','','0','4','2023-05-01 14:43:00','','0','350','1','retail','0','350','1','0','350','0','0','0','0','printed','','','','0','41682941379','Cleared','4','2023-05-01 17:30:48','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1284,'g1og','Mpesa','','2023-05-01 16:29:42','','0','4','2023-05-01 16:29:42','','0','480','1','retail','0','480','1','0','0','0','0','480','0','printed','','','','0','41682947763','Cleared','4','2023-05-01 17:30:00','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1285,'qhme','Mpesa','','2023-05-01 17:07:39','','0','4','2023-05-01 17:07:39','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41682950057','Cleared','4','2023-05-01 17:08:15','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1286,'7mbf','Mpesa','','2023-05-01 17:28:43','','0','4','2023-05-01 17:28:43','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41682951321','Cleared','4','2023-05-01 17:55:23','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1287,'2h77','Mpesa','','2023-05-01 18:30:12','','0','4','2023-05-01 18:30:12','','0','450','1','retail','0','450','1','0','0','0','0','450','0','printed','','','','0','41682955002','Cleared','4','2023-05-01 19:24:11','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1288,'z5vo','Mpesa','','2023-05-01 18:57:22','','0','4','2023-05-01 18:57:22','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41682956641','Cleared','4','2023-05-01 19:21:34','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1289,'02s2','Mpesa','','2023-05-01 19:20:32','','0','4','2023-05-01 19:20:32','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41682958030','Cleared','4','2023-05-01 21:03:04','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1290,'02s2','Mpesa','','2023-05-01 20:13:44','','0','4','2023-05-01 20:13:44','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41682961223','Cleared','4','2023-05-01 21:03:35','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1291,'9xmc','Mpesa','','2023-05-01 21:03:52','','0','4','2023-05-01 21:03:52','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41682964230','Cleared','4','2023-05-01 21:04:34','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1292,'7tvb','Mpesa','','2023-05-01 21:04:49','','0','4','2023-05-01 21:04:49','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41682964288','Cleared','4','2023-05-01 21:25:04','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1293,'purity','Voucher','','2023-05-02 11:18:43','','0','4','2023-05-02 11:18:43','','0','150','1','retail','0','150','1','0','150','0','0','0','0','printed','purity','','','0','41683015521','Cleared','4','2023-05-02 11:29:59','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1294,'','Cash','','2023-05-02 11:19:08','','0','4','2023-05-02 11:19:08','','300','300','1','retail','0','300','1','0','0','0','0','0','0','new',' ','','','0','41683015541','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1295,'53nv','Mpesa','','2023-05-02 12:15:56','','0','4','2023-05-02 12:15:56','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41683018954','Cleared','4','2023-05-02 12:48:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1296,'','Voucher','','2023-05-02 13:45:26','','0','4','2023-05-02 13:45:26','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','manager','','','0','41683024325','Cleared','4','2023-05-02 13:46:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1297,'wk7q','Mpesa','','2023-05-02 14:30:16','','0','4','2023-05-02 14:30:16','','0','630','1','retail','0','630','1','0','0','0','0','630','0','printed','','','','0','41683026772','Cleared','4','2023-05-02 14:50:23','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1298,'r2zi','Mpesa','','2023-05-02 14:30:54','','0','4','2023-05-02 14:30:54','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','41683027052','Cleared','4','2023-05-02 18:31:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1299,'','Voucher','','2023-05-02 17:38:34','','0','4','2023-05-02 17:38:34','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','mzae','','','0','41683038313','Cleared','4','2023-05-02 18:31:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1300,'','Voucher','','2023-05-02 18:32:30','','0','4','2023-05-02 18:32:30','','0','150','1','retail','0','150','1','0','150','0','0','0','0','printed','purity','','','0','41683041548','Cleared','4','2023-05-02 18:33:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1301,'','Voucher','','2023-05-02 19:14:17','','0','3','2023-05-02 19:14:17','','0','350','1','retail','0','350','1','0','350','0','0','0','0','printed','cedrick','','','0','31683044055','Cleared','3','2023-05-02 19:16:36','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1302,'1wsf','Mpesa','','2023-05-02 19:15:20','','0','3','2023-05-02 19:15:20','','0','550','1','retail','0','550','1','0','0','0','0','550','0','printed','','','','0','31683044113','Cleared','3','2023-05-02 22:22:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1303,'svuh','Mpesa','','2023-05-02 19:18:22','','0','3','2023-05-02 19:18:22','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','31683044301','Cleared','3','2023-05-02 22:20:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1304,'rmp8','Mpesa','','2023-05-02 20:40:51','','0','3','2023-05-02 20:40:51','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','31683049249','Cleared','3','2023-05-02 22:20:12','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1305,'s3go','Mpesa','','2023-05-02 21:59:52','','0','3','2023-05-02 21:59:52','','0','680','1','retail','0','680','1','0','0','0','0','680','0','printed','','','','0','31683053980','Cleared','3','2023-05-02 22:19:42','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1306,'','Voucher','','2023-05-02 22:31:26','','0','3','2023-05-02 22:31:26','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','cedrick','','','0','31683055885','Cleared','3','2023-05-02 22:32:12','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1307,'','Cash','','2023-05-03 12:04:18','','0','3','2023-05-03 12:04:18','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','31683104657','Cleared','3','2023-05-03 19:40:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1308,'s8m6','Mpesa','','2023-05-03 12:04:48','','0','3','2023-05-03 12:04:48','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31683104686','Cleared','3','2023-05-03 12:20:57','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1309,'','Voucher','','2023-05-03 12:05:33','','0','3','2023-05-03 12:05:33','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','cedrick','','','0','31683104732','Cleared','3','2023-05-03 12:17:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1310,'','Voucher','','2023-05-03 12:06:01','','0','3','2023-05-03 12:06:01','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','manager','','','0','31683104759','Cleared','3','2023-05-03 12:16:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1311,'','Cash','','2023-05-03 13:18:32','','0','3','2023-05-03 13:18:32','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31683109110','Cleared','3','2023-05-03 14:25:40','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1312,'xayl','Mpesa','','2023-05-03 14:21:22','','0','3','2023-05-03 14:21:22','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','31683112881','Cleared','3','2023-05-03 19:41:07','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1313,'','Cash','','2023-05-03 14:26:04','','0','3','2023-05-03 14:26:04','','150','150','1','retail','0','150','1','0','0','0','0','0','0','new',' ','','','0','31683113162','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1314,'2ub1','Mpesa','','2023-05-03 18:52:34','','0','3','2023-05-03 18:52:34','','0','850','1','retail','0','850','1','0','0','0','0','850','0','printed','','','','0','31683129138','Cleared','3','2023-05-03 19:42:23','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1315,'7pqc','Mpesa','','2023-05-03 18:58:33','','0','3','2023-05-03 18:58:33','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31683129512','Cleared','3','2023-05-03 19:43:35','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1316,'','Cash','','2023-05-03 19:44:04','','0','3','2023-05-03 19:44:04','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','31683132242','Cleared','3','2023-05-03 19:47:57','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1317,'','Cash','','2023-05-03 19:48:13','','0','3','2023-05-03 19:48:13','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31683132492','Cleared','3','2023-05-03 19:48:38','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1318,'1h94','Mpesa','','2023-05-03 20:01:02','','0','3','2023-05-03 20:01:02','','0','550','1','retail','0','550','1','0','0','0','0','550','0','printed','','','','0','31683133238','Cleared','3','2023-05-03 20:07:04','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1319,'','Voucher','','2023-05-03 20:28:42','','0','3','2023-05-03 20:28:42','','0','500','1','retail','0','500','1','0','500','0','0','0','0','printed','jessica','','','0','31683134913','Cleared','3','2023-05-03 20:50:29','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1320,'q1nq','Mpesa','','2023-05-03 20:49:28','','0','3','2023-05-03 20:49:28','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31683136167','Cleared','3','2023-05-03 20:50:04','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1321,'2PQ1','Mpesa','','2023-05-03 21:17:15','','0','3','2023-05-03 21:17:15','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31683137834','Cleared','3','2023-05-03 21:52:29','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1322,'V7UZ','Mpesa','','2023-05-03 21:17:41','','0','3','2023-05-03 21:17:41','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','V7UZ','','','0','31683137860','Cleared','3','2023-05-03 23:06:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1323,'','Cash','','2023-05-04 12:06:33','','0','3','2023-05-04 12:06:33','','300','300','1','retail','0','300','1','0','0','0','0','0','0','new',' ','','','0','31683191188','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1324,'','Cash','','2023-05-04 17:57:01','','0','4','2023-05-04 17:57:01','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41683212220','Cleared','4','2023-05-04 19:23:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1325,'','Cash','','2023-05-04 17:58:02','','0','4','2023-05-04 17:58:02','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41683212281','Cleared','4','2023-05-04 17:58:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1326,'kdl8','Mpesa','','2023-05-04 18:29:36','','0','4','2023-05-04 18:29:36','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41683214175','Cleared','4','2023-05-04 18:30:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1327,'1k3z','Mpesa','','2023-05-04 18:48:09','','0','4','2023-05-04 18:48:09','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','41683215284','Cleared','4','2023-05-04 20:40:05','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1328,'','Cash','','2023-05-04 19:02:02','','0','4','2023-05-04 19:02:02','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41683216120','Cleared','4','2023-05-04 19:23:40','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1329,'61c1','Mpesa','','2023-05-04 19:53:46','','0','4','2023-05-04 19:53:46','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41683219224','Cleared','4','2023-05-04 20:39:21','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1330,'','Voucher','','2023-05-04 20:01:25','','0','4','2023-05-04 20:01:25','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','mzae','','','0','41683219683','Cleared','4','2023-05-04 20:34:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1331,'','Voucher','','2023-05-04 20:31:33','','0','4','2023-05-04 20:31:33','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','manager','','','0','41683221492','Cleared','4','2023-05-04 20:35:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1332,'x9qz','Mpesa','','2023-05-04 20:40:17','','0','4','2023-05-04 20:40:17','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41683222016','Cleared','4','2023-05-04 20:41:05','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1333,'','Cash','','2023-05-04 21:25:17','','0','4','2023-05-04 21:25:17','','150','150','1','retail','0','150','1','0','0','0','0','0','0','new',' ','','','0','41683224715','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1334,'','Voucher','','2023-05-04 21:27:48','','0','4','2023-05-04 21:27:48','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','purity','','','0','41683224867','Cleared','4','2023-05-04 21:28:21','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1335,'aey2','Mpesa','','2023-05-04 22:15:49','','0','4','2023-05-04 22:15:49','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41683227748','Cleared','4','2023-05-04 22:19:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1336,'3tq3','Mpesa','','2023-05-04 22:29:12','','0','4','2023-05-04 22:29:12','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41683228550','Cleared','4','2023-05-04 22:35:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1337,'vwd3','Mpesa','','2023-05-05 09:49:34','','0','4','2023-05-05 09:49:34','','0','380','1','retail','0','380','1','0','0','0','0','380','0','printed','','','','0','41683269357','Cleared','4','2023-05-05 09:50:11','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1338,'imix','Mpesa','','2023-05-05 10:10:13','','0','4','2023-05-05 10:10:13','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41683270611','Cleared','4','2023-05-05 11:12:39','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1339,'u7vs','Mpesa','','2023-05-05 10:21:31','','0','4','2023-05-05 10:21:31','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41683271290','Cleared','4','2023-05-05 11:13:17','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1340,'','Cash','','2023-05-05 10:55:34','','0','4','2023-05-05 10:55:34','','450','450','1','retail','0','450','1','0','0','0','0','0','0','printed','uber eats','','','0','41683273319','Cleared','4','2023-05-05 18:12:56','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1341,'xegi','Mpesa','','2023-05-05 11:12:02','','0','4','2023-05-05 11:12:02','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41683274320','Cleared','4','2023-05-05 18:09:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1342,'fpb9','Mpesa','','2023-05-05 12:26:09','','0','4','2023-05-05 12:26:09','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41683278768','Cleared','4','2023-05-05 13:02:33','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1343,'','Cash','','2023-05-05 13:27:26','','0','4','2023-05-05 13:27:26','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','41683282444','Cleared','4','2023-05-05 16:56:12','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1344,'','Cash','','2023-05-05 13:52:00','','0','4','2023-05-05 13:52:00','','450','450','1','retail','0','450','1','0','0','0','0','0','0','printed','','','','0','41683283910','Cleared','4','2023-05-05 13:52:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1345,'','Cash','','2023-05-05 14:01:14','','0','4','2023-05-05 14:01:14','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41683284473','Cleared','4','2023-05-05 18:12:21','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1346,'','Cash','','2023-05-05 14:17:01','','0','4','2023-05-05 14:17:01','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','41683285420','Cleared','4','2023-05-05 14:31:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1347,'','Cash','','2023-05-05 16:48:53','','0','4','2023-05-05 16:48:53','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed','','','','0','41683294531','Cleared','4','2023-05-05 16:49:10','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1348,'ofo2','Mpesa','','2023-05-05 16:55:51','','0','4','2023-05-05 16:55:51','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41683294949','Cleared','4','2023-05-05 17:32:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1349,'','Cash','','2023-05-05 18:06:02','','0','3','2023-05-05 18:06:02','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31683299160','Cleared','3','2023-05-05 18:06:34','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1350,'rfoa','Mpesa','','2023-05-05 18:43:30','','0','3','2023-05-05 18:43:30','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','rfoa','','','0','31683301409','Cleared','3','2023-05-05 22:44:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1351,'','Cash','','2023-05-05 20:33:52','','0','3','2023-05-05 19:53:42','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed','','','','0','31683305620','Cleared','3','2023-05-05 22:52:05','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1352,'waqk','Mpesa','','2023-05-05 20:32:08','','0','3','2023-05-05 20:32:08','','0','500','1','retail','0','500','1','0','0','0','0','500','0','printed','','','','0','31683307922','Cleared','3','2023-05-05 22:05:48','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1353,'','Cash','','2023-05-05 21:41:47','','0','3','2023-05-05 21:41:47','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','31683312106','Cleared','3','2023-05-05 22:04:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1354,'tkyt','Mpesa','','2023-05-05 21:55:52','','0','3','2023-05-05 21:46:48','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','31683312407','Cleared','3','2023-05-05 22:04:37','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1355,'v9oe','Mpesa','','2023-05-05 23:38:55','','0','3','2023-05-05 23:38:55','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','31683319134','Cleared','3','2023-05-05 23:39:32','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1356,'everlyn','Voucher','','2023-05-05 23:40:04','','0','3','2023-05-05 23:40:04','','0','400','1','retail','0','400','1','0','400','0','0','0','0','printed','','','','0','31683319201','Cleared','3','2023-05-05 23:41:35','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1357,'','Voucher','','2023-05-05 23:40:33','','0','3','2023-05-05 23:40:33','','0','330','1','retail','0','330','1','0','330','0','0','0','0','printed','cedrick','','','0','31683319231','Cleared','3','2023-05-05 23:42:07','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1358,'','Voucher','','2023-05-05 23:42:27','','0','3','2023-05-05 23:42:27','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','jessica','','','0','31683319345','Cleared','3','2023-05-05 23:42:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1359,'','Voucher','','2023-05-05 23:44:06','','0','3','2023-05-05 23:44:06','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','everlyn','','','0','31683319444','Cleared','3','2023-05-05 23:52:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1360,'','Voucher','','2023-05-05 23:44:23','','0','3','2023-05-05 23:44:23','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','manager','','','0','31683319461','Cleared','3','2023-05-05 23:51:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1361,'jl94','Mpesa','','2023-05-06 10:54:03','','0','4','2023-05-06 10:54:03','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41683359641','Cleared','4','2023-05-06 10:55:24','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1362,'3r2d','Mpesa','','2023-05-06 12:45:40','','0','4','2023-05-06 12:45:40','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41683366339','Cleared','4','2023-05-06 14:25:24','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1363,'3r2d','Mpesa','','2023-05-06 12:45:58','','0','4','2023-05-06 12:45:58','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41683366357','Cleared','4','2023-05-06 14:25:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1364,'','Cash','','2023-05-06 12:57:05','','0','4','2023-05-06 12:57:05','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41683367024','Cleared','4','2023-05-06 13:15:57','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1365,'','Cash','','2023-05-06 14:15:16','','0','4','2023-05-06 14:15:16','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41683371714','Cleared','4','2023-05-06 14:15:43','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1366,'abed','Mpesa','','2023-05-06 15:26:45','','0','3','2023-05-06 15:26:45','','0','700','1','retail','0','700','1','0','0','0','0','700','0','printed','','','','0','31683376001','Cleared','3','2023-05-06 21:44:05','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1367,'','Cash','','2023-05-06 15:31:05','','0','4','2023-05-06 15:31:05','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41683376263','Cleared','4','2023-05-06 15:46:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1368,'','Cash','','2023-05-06 16:33:20','','0','3','2023-05-06 16:33:20','','280','280','1','retail','0','280','1','0','0','0','0','0','0','printed','','','','0','31683379998','Cleared','3','2023-05-06 19:16:16','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1369,'','Cash','','2023-05-06 17:37:08','','0','4','2023-05-06 17:37:08','','200','200','1','retail','0','200','1','0','0','0','0','0','0','new',' ','','','0','41683383826','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1370,'j8sh','Cash','','2023-05-06 17:56:09','','0','4','2023-05-06 17:56:09','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed','','','','0','41683384968','Cleared','3','2023-05-06 22:21:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1371,'fr19','Mpesa','','2023-05-06 18:07:21','','0','3','2023-05-06 18:07:21','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','31683385639','Cleared','3','2023-05-06 22:19:39','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1372,'','Cash','','2023-05-06 18:41:30','','0','3','2023-05-06 18:41:30','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed','','','','0','31683387689','Cleared','3','2023-05-06 19:15:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1373,'w7tb','Mpesa','','2023-05-06 20:03:45','','0','3','2023-05-06 20:03:45','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31683392623','Cleared','3','2023-05-06 21:41:24','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1374,'','Cash','','2023-05-06 20:23:36','','0','3','2023-05-06 20:23:36','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed','','','','0','31683393810','Cleared','3','2023-05-06 22:07:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1375,'','Cash','','2023-05-06 21:12:03','','0','3','2023-05-06 21:12:03','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed','','','','0','31683396722','Cleared','3','2023-05-06 21:40:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1376,'','Voucher','','2023-05-06 22:24:22','','0','3','2023-05-06 22:24:22','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','manager','','','0','31683401060','Cleared','3','2023-05-06 22:36:34','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1377,'','Voucher','','2023-05-06 22:24:47','','0','3','2023-05-06 22:24:47','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','cedrick\r\n','','','0','31683401086','Cleared','3','2023-05-06 22:36:07','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1378,'','Voucher','','2023-05-06 22:25:15','','0','3','2023-05-06 22:25:15','','0','500','1','retail','0','500','1','0','500','0','0','0','0','printed','jessica','','','0','31683401101','Cleared','3','2023-05-06 22:35:35','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1379,'','Voucher','','2023-05-07 14:04:26','','0','3','2023-05-07 14:04:26','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','cedrick','','','0','31683457464','Cleared','3','2023-05-07 14:08:56','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1380,'','Voucher','','2023-05-07 14:05:34','','0','3','2023-05-07 14:05:34','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','everlyn','','','0','31683457533','Cleared','3','2023-05-07 14:08:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1381,'','Cash','','2023-05-07 14:43:36','','0','3','2023-05-07 14:43:36','','480','480','1','retail','0','480','1','0','0','0','0','0','0','printed','','','','0','31683459299','Cleared','3','2023-05-07 15:10:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1382,'fqe6','Mpesa','','2023-05-07 16:13:29','','0','4','2023-05-07 16:13:29','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41683465207','Cleared','4','2023-05-07 16:14:34','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1383,'','Cash','','2023-05-07 17:02:24','','0','3','2023-05-07 17:02:24','','450','450','1','retail','0','450','1','0','0','0','0','0','0','printed','','','','0','31683468134','Cleared','3','2023-05-07 17:02:43','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1384,'','Cash','','2023-05-07 17:03:22','','0','4','2023-05-07 17:03:22','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed','','','','0','41683468197','Cleared','4','2023-05-07 17:34:29','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1385,'owb2','Mpesa','','2023-05-07 17:51:34','','0','3','2023-05-07 17:51:34','','0','500','1','retail','0','500','1','0','0','0','0','500','0','printed','','','','0','31683471090','Cleared','3','2023-05-07 18:16:56','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1386,'cgog','Mpesa','','2023-05-07 17:52:37','','0','4','2023-05-07 17:52:37','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41683471156','Cleared','4','2023-05-07 21:05:00','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1387,'','Voucher','','2023-05-07 18:47:59','','0','3','2023-05-07 18:47:59','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','cedrick\r\n','','','0','31683474477','Cleared','3','2023-05-07 18:48:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1388,'','Voucher','','2023-05-07 18:55:48','','0','4','2023-05-07 18:55:48','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','jessica','','','0','41683474947','Cleared','4','2023-05-07 19:22:43','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1389,'','Cash','','2023-05-07 18:56:03','','0','4','2023-05-07 18:56:03','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41683474962','Cleared','4','2023-05-07 19:22:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1390,'','Voucher','','2023-05-07 19:21:45','','0','4','2023-05-07 19:21:45','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','manager','','','0','41683476504','Cleared','4','2023-05-07 19:23:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1391,'t8bo','Mpesa','','2023-05-07 20:14:22','','0','4','2023-05-07 20:14:22','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41683479660','Cleared','4','2023-05-07 21:49:56','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1392,'','Cash','','2023-05-07 21:05:11','','0','4','2023-05-07 21:05:11','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41683482710','Cleared','4','2023-05-07 21:46:47','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1393,'','Voucher','','2023-05-07 22:15:00','','0','4','2023-05-07 22:15:00','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','purity','','','0','41683486899','Cleared','4','2023-05-07 22:31:15','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1394,'','Cash','','2023-05-07 22:21:09','','0','4','2023-05-07 22:21:09','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed','','','','0','41683487267','Cleared','4','2023-05-07 22:31:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1395,'','Voucher','','2023-05-08 10:20:25','','0','4','2023-05-08 10:20:25','','0','150','1','retail','0','150','1','0','150','0','0','0','0','printed','guards','','','0','41683530424','Cleared','4','2023-05-08 17:55:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1396,'','Voucher','','2023-05-08 10:20:41','','0','4','2023-05-08 10:20:41','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','purity','','','0','41683530440','Cleared','4','2023-05-08 17:55:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1397,'oz3m','Mpesa','','2023-05-08 10:20:59','','0','4','2023-05-08 10:20:59','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41683530458','Cleared','4','2023-05-08 18:20:21','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1398,'oedr','Mpesa','','2023-05-08 10:59:09','','0','4','2023-05-08 10:59:09','','0','480','1','retail','0','480','1','0','0','0','0','480','0','printed','','','','0','41683532741','Cleared','4','2023-05-08 12:08:40','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1399,'','Cash','','2023-05-08 14:46:11','','0','4','2023-05-08 14:46:11','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41683546369','Cleared','4','2023-05-08 14:49:12','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1400,'xsap','Mpesa','','2023-05-08 17:02:55','','0','4','2023-05-08 17:02:55','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41683554574','Cleared','4','2023-05-08 17:54:49','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1401,'52il','Mpesa','','2023-05-08 17:54:01','','0','4','2023-05-08 17:54:01','','0','450','1','retail','0','450','1','0','0','0','0','450','0','printed','','','','0','41683557631','Cleared','4','2023-05-08 18:20:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1402,'','Cash','','2023-05-08 18:14:05','','0','4','2023-05-08 18:14:05','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41683558843','Cleared','4','2023-05-08 18:14:24','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1403,'','Cash','','2023-05-08 20:45:13','','0','4','2023-05-08 20:45:13','','280','280','1','retail','0','280','1','0','0','0','0','0','0','printed','','','','0','41683567911','Cleared','4','2023-05-08 21:02:32','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1404,'','Voucher','','2023-05-08 21:37:38','','0','4','2023-05-08 21:37:38','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','martin','','','0','41683571057','Cleared','4','2023-05-08 21:38:29','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1405,'','Voucher','','2023-05-08 21:37:58','','0','4','2023-05-08 21:37:58','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','martin','','','0','41683571076','Cleared','4','2023-05-08 21:38:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1406,'60f1','Mpesa','','2023-05-09 10:00:22','','0','4','2023-05-09 10:00:22','','0','380','1','retail','0','380','1','0','0','0','0','380','0','printed','','','','0','41683615610','Cleared','4','2023-05-09 10:01:02','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1407,'','Cash','','2023-05-09 11:52:29','','0','4','2023-05-09 11:52:29','','150','150','1','retail','0','150','1','0','0','0','0','0','0','new',' ','','','0','41683622341','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1408,'8eq6','Mpesa','','2023-05-09 15:45:42','','0','3','2023-05-09 15:45:42','','0','880','1','retail','0','880','1','0','0','0','0','880','0','printed','','','','0','31683636322','Cleared','3','2023-05-09 16:58:08','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1409,'','Voucher','','2023-05-09 16:34:08','','0','3','2023-05-09 16:34:08','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','cedrick','','','0','31683639247','Cleared','3','2023-05-09 19:39:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1410,'','Cash','','2023-05-09 16:35:26','','0','3','2023-05-09 16:35:26','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','31683639324','Cleared','3','2023-05-09 21:10:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1411,'','Voucher','','2023-05-09 18:15:55','','0','4','2023-05-09 18:15:55','','0','350','1','retail','0','350','1','0','350','0','0','0','0','printed','purity','','','0','41683645353','Cleared','3','2023-05-09 22:43:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1412,'gf3l','Mpesa','','2023-05-09 18:17:03','','0','4','2023-05-09 18:17:03','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41683645422','Cleared','3','2023-05-09 20:02:34','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1413,'zbyo','Mpesa','','2023-05-09 19:23:23','','0','3','2023-05-09 19:23:23','','0','760','1','retail','0','760','1','0','0','0','0','760','0','printed','','','','0','31683649383','Cleared','3','2023-05-09 20:07:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1414,'','Cash','','2023-05-09 19:37:24','','0','3','2023-05-09 19:37:24','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed','','','','0','31683650239','Cleared','3','2023-05-09 19:38:02','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1415,'','Voucher','','2023-05-09 19:55:34','','0','3','2023-05-09 19:55:34','','0','350','1','retail','0','350','1','0','350','0','0','0','0','printed','mzae','','','0','31683651333','Cleared','3','2023-05-09 21:11:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1416,'','Cash','','2023-05-09 20:08:05','','0','3','2023-05-09 20:08:05','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31683652084','Cleared','3','2023-05-09 22:15:37','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1417,'hyum','Mpesa','','2023-05-09 20:19:16','','0','3','2023-05-09 20:19:16','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31683652755','Cleared','3','2023-05-09 22:43:17','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1418,'','Cash','','2023-05-09 22:15:53','','0','3','2023-05-09 22:15:53','','1050','1050','1','retail','0','1050','1','0','0','0','0','0','0','printed','','','','0','31683659745','Cleared','3','2023-05-09 22:42:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1419,'','Cash','','2023-05-09 23:40:12','','0','3','2023-05-09 23:40:12','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','31683664810','Cleared','3','2023-05-09 23:59:29','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1420,'','Mpesa','','2023-05-10 13:50:55','','0','3','2023-05-10 13:50:55','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','p2uy','','','0','31683715853','Cleared','3','2023-05-10 21:15:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1421,'','Cash','','2023-05-10 21:41:33','','0','3','2023-05-10 13:51:27','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed','','','','0','31683715885','Cleared','3','2023-05-10 23:26:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1422,'manager','Voucher','','2023-05-10 17:05:09','','0','3','2023-05-10 17:05:09','','0','280','1','retail','0','280','1','0','280','0','0','0','0','new',' ','','','0','31683727507','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1423,'','Cash','','2023-05-10 17:09:20','','0','3','2023-05-10 17:09:20','','630','630','1','retail','0','630','1','0','0','0','0','0','0','printed','','','','0','31683727736','Cleared','3','2023-05-10 21:15:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1424,'mzae','Voucher','','2023-05-10 17:09:52','','0','3','2023-05-10 17:09:52','','0','200','1','retail','0','200','1','0','200','0','0','0','0','new',' ','','','0','31683727790','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1425,'cedrick','Voucher','','2023-05-10 17:10:47','','0','3','2023-05-10 17:10:47','','0','200','1','retail','0','200','1','0','200','0','0','0','0','new',' ','','','0','31683727845','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1426,'','Cash','','2023-05-10 18:32:01','','0','3','2023-05-10 18:32:01','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed','','','','0','31683732713','Cleared','3','2023-05-10 21:14:37','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1427,'f7aw','Mpesa','','2023-05-10 18:34:06','','0','3','2023-05-10 18:34:06','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','31683732844','Cleared','3','2023-05-10 23:09:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1428,'nk9j','Mpesa','','2023-05-10 20:47:33','','0','3','2023-05-10 18:34:28','','0','500','1','retail','0','500','1','0','0','0','0','500','0','printed','','','','0','31683732867','Cleared','3','2023-05-10 21:14:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1429,'9r7k','Cash','','2023-05-10 21:16:40','','0','3','2023-05-10 21:16:40','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31683742598','Cleared','3','2023-05-10 21:18:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1430,'vdjb','Mpesa','','2023-05-10 21:18:55','','0','3','2023-05-10 21:18:55','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31683742734','Cleared','3','2023-05-10 22:16:05','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1431,'','Cash','','2023-05-10 21:40:01','','0','3','2023-05-10 21:40:01','','150','150','1','retail','0','150','1','0','0','0','0','0','0','new','','','','0','31683744000','No','3','2023-05-10 23:27:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1432,'dx5a','Mpesa','','2023-05-10 21:55:43','','0','3','2023-05-10 21:55:43','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31683744941','Cleared','3','2023-05-10 23:09:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1433,'martin','Voucher','','2023-05-10 23:33:03','','0','3','2023-05-10 23:33:03','','0','500','1','retail','0','500','1','0','500','0','0','0','0','new',' ','','','0','31683750714','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1434,'cedrick','Voucher','','2023-05-11 16:35:04','','0','3','2023-05-11 16:35:04','','0','200','1','retail','0','200','1','0','200','0','0','0','0','new',' ','','','0','31683812102','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1435,'george','Voucher','','2023-05-11 16:35:29','','0','3','2023-05-11 16:35:29','','0','150','1','retail','0','150','1','0','150','0','0','0','0','new',' ','','','0','31683812127','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1436,'d4ot','Mpesa','','2023-05-11 16:36:04','','0','3','2023-05-11 16:36:04','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','31683812162','Cleared','3','2023-05-11 19:18:39','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1437,'','Cash','','2023-05-11 18:20:47','','0','4','2023-05-11 18:20:47','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','41683818427','Cleared','4','2023-05-11 20:20:24','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1438,'auk7','Mpesa','','2023-05-11 19:20:34','','0','3','2023-05-11 19:20:34','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','31683822033','Cleared','4','2023-05-11 20:46:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1439,'a95e','Mpesa','','2023-05-11 20:20:05','','0','4','2023-05-11 20:20:05','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41683825603','Cleared','4','2023-05-11 20:45:29','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1440,'','Voucher','','2023-05-11 21:55:05','','0','4','2023-05-11 21:55:05','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','manager','','','0','41683831303','Cleared','4','2023-05-11 21:55:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1441,'','Voucher','','2023-05-11 21:55:59','','0','4','2023-05-11 21:55:59','','0','350','1','retail','0','350','1','0','350','0','0','0','0','printed','purity','','','0','41683831358','Cleared','4','2023-05-11 21:56:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1442,'kj40','Mpesa','','2023-05-11 22:06:59','','0','4','2023-05-11 22:06:59','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41683832017','Cleared','4','2023-05-11 22:19:57','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1443,'','Cash','','2023-05-12 09:53:46','','0','4','2023-05-12 09:53:46','','150','150','1','retail','0','150','1','0','0','0','0','0','0','new',' ','','','0','41683874424','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1444,'','Voucher','','2023-05-12 09:54:17','','0','4','2023-05-12 09:54:17','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','purity','','','0','41683874456','Cleared','4','2023-05-12 09:54:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1445,'cmqt','Mpesa','','2023-05-12 14:07:16','','0','3','2023-05-12 14:07:16','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','31683889634','Cleared','3','2023-05-12 16:18:48','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1446,'8u25','Mpesa','','2023-05-12 14:10:10','','0','4','2023-05-12 14:10:10','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41683889808','Cleared','4','2023-05-12 15:16:12','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1447,'zyrh','Cash','','2023-05-12 15:30:04','','0','3','2023-05-12 15:30:04','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed','','','','0','31683894602','Cleared','3','2023-05-12 21:27:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1448,'wztj','Mpesa','','2023-05-12 15:43:09','','0','4','2023-05-12 15:43:09','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41683895388','Cleared','4','2023-05-12 15:44:16','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1449,'kpqm','Cash','','2023-05-12 16:15:16','','0','3','2023-05-12 16:15:16','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','31683897314','Cleared','3','2023-05-12 16:41:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1450,'rtrg','Mpesa','','2023-05-12 16:40:08','','0','4','2023-05-12 16:40:08','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41683898806','Cleared','4','2023-05-12 17:27:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1451,'rtrg','Mpesa','','2023-05-12 17:26:21','','0','4','2023-05-12 17:26:21','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41683901579','Cleared','4','2023-05-12 17:27:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1452,'18sf','Mpesa','','2023-05-12 17:41:11','','0','3','2023-05-12 17:41:11','','0','1200','1','retail','0','1200','1','0','0','0','0','1200','0','printed','','','','0','31683902467','Cleared','3','2023-05-12 20:46:33','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1453,'','Voucher','','2023-05-12 17:56:57','','0','4','2023-05-12 17:56:57','','0','700','1','retail','0','700','1','0','700','0','0','0','0','printed','evelyne','','','0','41683903412','Cleared','4','2023-05-12 17:57:29','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1454,'','Cash','','2023-05-12 17:57:46','','0','4','2023-05-12 17:57:46','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed','','','','0','41683903465','Cleared','4','2023-05-12 20:28:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1455,'','Cash','','2023-05-12 18:09:16','','0','3','2023-05-12 18:09:16','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','31683904155','Cleared','3','2023-05-12 18:39:34','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1456,'','Cash','','2023-05-12 18:09:45','','0','3','2023-05-12 18:09:45','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','31683904184','Cleared','3','2023-05-12 18:40:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1457,'','Voucher','','2023-05-12 18:10:49','','0','3','2023-05-12 18:10:49','','0','350','1','retail','0','350','1','0','350','0','0','0','0','printed','manager','','','0','31683904248','Cleared','3','2023-05-12 20:41:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1458,'george','Voucher','','2023-05-12 18:40:40','','0','3','2023-05-12 18:40:40','','0','200','1','retail','0','200','1','0','200','0','0','0','0','new',' ','','','0','31683906039','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1459,'','Cash','','2023-05-12 20:27:47','','0','4','2023-05-12 20:27:47','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','41683912465','Cleared','4','2023-05-12 20:28:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1460,'rl3q','Cash','','2023-05-12 21:28:28','','0','3','2023-05-12 21:28:28','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','31683916107','Cleared','3','2023-05-12 21:29:43','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1461,'k7ai','Mpesa','','2023-05-12 21:30:24','','0','3','2023-05-12 21:30:24','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31683916222','Cleared','3','2023-05-12 22:11:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1462,'','Cash','','2023-05-12 21:47:16','','0','4','2023-05-12 21:47:16','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41683917234','Cleared','4','2023-05-12 22:09:02','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1463,'martin','Voucher','','2023-05-12 22:48:07','','0','3','2023-05-12 22:48:07','','0','250','1','retail','0','250','1','0','250','0','0','0','0','new',' ','','','0','31683920886','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1464,'cedrick','Voucher','','2023-05-12 22:48:30','','0','3','2023-05-12 22:48:30','','0','200','1','retail','0','200','1','0','200','0','0','0','0','new',' ','','','0','31683920909','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1465,'bd32','Mpesa','','2023-05-13 09:49:52','','0','4','2023-05-13 09:49:52','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41683960591','Cleared','4','2023-05-13 09:50:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1466,'','Cash','','2023-05-13 11:00:05','','0','4','2023-05-13 11:00:05','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41683964804','Cleared','4','2023-05-13 12:13:10','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1467,'k4q7','Mpesa','','2023-05-13 13:13:00','','0','4','2023-05-13 13:13:00','','0','550','1','retail','0','550','1','0','0','0','0','550','0','printed','','','','0','41683972773','Cleared','4','2023-05-13 13:19:29','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1468,'6vzk','Mpesa','','2023-05-13 13:18:28','','0','4','2023-05-13 13:18:28','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41683973106','Cleared','4','2023-05-13 14:13:00','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1469,'','Voucher','','2023-05-13 13:18:46','','0','4','2023-05-13 13:18:46','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','purity','','','0','41683973124','Cleared','4','2023-05-13 13:19:49','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1470,'','Voucher','','2023-05-13 14:11:54','','0','4','2023-05-13 14:11:54','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','martin','','','0','41683976312','Cleared','4','2023-05-13 14:14:07','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1471,'','Cash','','2023-05-13 14:14:25','','0','4','2023-05-13 14:14:25','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41683976464','Cleared','4','2023-05-13 14:14:43','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1472,'','Cash','','2023-05-13 14:15:05','','0','4','2023-05-13 14:15:05','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41683976503','Cleared','4','2023-05-13 14:18:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1473,'2ghm','Cash','','2023-05-13 15:45:13','','0','3','2023-05-13 15:45:13','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed','','','','0','31683981912','Cleared','3','2023-05-13 19:35:02','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1474,'manager','Voucher','','2023-05-13 16:34:58','','0','3','2023-05-13 16:34:58','','0','350','1','retail','0','350','1','0','350','0','0','0','0','new',' ','','','0','31683984896','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1475,'2ghm','Mpesa','','2023-05-13 16:35:58','','0','3','2023-05-13 16:35:58','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','31683984957','Cleared','3','2023-05-13 19:36:36','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1476,'ilix','Mpesa','','2023-05-13 18:18:47','','0','4','2023-05-13 18:18:47','','0','1400','1','retail','0','1400','1','0','0','0','0','1400','0','printed','','','','0','41683991115','Cleared','4','2023-05-13 18:44:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1477,'c4lk','Mpesa','','2023-05-13 18:19:53','','0','3','2023-05-13 18:19:53','','0','600','1','retail','0','600','1','0','0','0','0','600','0','printed','','','','0','31683991188','Cleared','3','2023-05-13 19:35:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1478,'','Cash','','2023-05-13 18:25:38','','0','3','2023-05-13 18:25:38','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed','','','','0','31683991537','Cleared','3','2023-05-13 18:27:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1479,'','Cash','','2023-05-13 19:37:38','','0','3','2023-05-13 19:37:38','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31683995856','Cleared','3','2023-05-13 19:39:23','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1480,'','Cash','','2023-05-13 19:39:39','','0','3','2023-05-13 19:39:39','','150','150','1','retail','0','150','1','0','0','0','0','0','0','new',' ','','','0','31683995977','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1481,'martin','Voucher','','2023-05-13 19:45:32','','0','3','2023-05-13 19:45:32','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','','','','0','31683996331','Cleared','3','2023-05-13 20:10:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1482,'','Cash','','2023-05-13 19:48:33','','0','3','2023-05-13 19:48:33','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed','','','','0','31683996512','Cleared','3','2023-05-13 21:34:07','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1483,'ksq9','Mpesa','','2023-05-13 20:09:40','','0','3','2023-05-13 20:09:40','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31683997779','Cleared','3','2023-05-13 21:37:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1484,'w7hv','Cash','','2023-05-13 20:28:39','','0','3','2023-05-13 20:28:39','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','31683998918','Cleared','3','2023-05-13 21:37:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1485,'hw1p','Mpesa','','2023-05-13 21:32:35','','0','3','2023-05-13 21:32:35','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','31684002753','Cleared','3','2023-05-13 21:43:38','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1486,'george','Voucher','','2023-05-13 21:32:59','','0','3','2023-05-13 21:32:59','','0','200','1','retail','0','200','1','0','200','0','0','0','0','new',' ','','','0','31684002778','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1487,'vg1l','Mpesa','','2023-05-13 21:35:16','','0','3','2023-05-13 21:35:16','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','31684002915','Cleared','3','2023-05-13 21:36:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1488,'cedrick','Voucher','','2023-05-13 21:39:47','','0','3','2023-05-13 21:39:47','','0','300','1','retail','0','300','1','0','300','0','0','0','0','new',' ','','','0','31684003185','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1489,'w1l6','Mpesa','','2023-05-13 21:40:13','','0','3','2023-05-13 21:40:13','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','31684003212','Cleared','3','2023-05-13 22:02:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1490,'','Cash','','2023-05-13 22:02:29','','0','3','2023-05-13 22:02:29','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','31684004548','Cleared','3','2023-05-13 22:07:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1491,'manager','Voucher','','2023-05-14 14:23:05','','0','3','2023-05-14 14:23:05','','0','280','1','retail','0','280','1','0','280','0','0','0','0','new',' ','','','0','31684063383','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1492,'','Cash','','2023-05-14 14:58:04','','0','3','2023-05-14 14:58:04','','200','200','1','retail','0','200','1','0','0','0','0','0','0','new',' ','','','0','31684065483','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1493,'cedrick','Voucher','','2023-05-14 14:59:22','','0','3','2023-05-14 14:59:22','','0','200','1','retail','0','200','1','0','200','0','0','0','0','new',' ','','','0','31684065561','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1494,'','Cash','','2023-05-14 18:11:34','','0','4','2023-05-14 18:11:34','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41684077092','Cleared','4','2023-05-14 22:24:17','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1495,'iypo','Mpesa','','2023-05-14 19:30:00','','0','3','2023-05-14 19:30:00','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31684081799','Cleared','3','2023-05-14 19:51:47','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1496,'','Cash','','2023-05-14 20:44:23','','0','3','2023-05-14 20:44:23','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31684086262','Cleared','3','2023-05-14 20:44:42','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1497,'otie','Mpesa','','2023-05-15 08:45:24','','0','4','2023-05-15 08:45:24','','0','580','1','retail','0','580','1','0','0','0','0','580','0','printed','','','','0','41684129504','Cleared','4','2023-05-15 08:45:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1498,'75xj','Mpesa','','2023-05-15 11:43:16','','0','4','2023-05-15 11:43:16','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41684140194','Cleared','4','2023-05-15 13:39:39','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1499,'lzvu','Mpesa','','2023-05-15 13:45:39','','0','4','2023-05-15 13:45:39','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41684147538','Cleared','4','2023-05-15 14:11:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1500,'18ln','Mpesa','','2023-05-15 14:55:03','','0','4','2023-05-15 14:55:03','','0','600','1','retail','0','600','1','0','0','0','0','600','0','printed','','','','0','41684151702','Cleared','4','2023-05-15 15:43:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1501,'','Cash','','2023-05-15 16:17:51','','0','4','2023-05-15 16:17:51','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41684156669','Cleared','4','2023-05-15 16:44:56','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1502,'','Voucher','','2023-05-15 16:44:29','','0','4','2023-05-15 16:44:29','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','george','','','0','41684158268','Cleared','4','2023-05-15 17:25:33','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1503,'','Voucher','','2023-05-15 17:25:08','','0','4','2023-05-15 17:25:08','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','mzae','','','0','41684160706','Cleared','4','2023-05-15 17:26:00','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1504,'82qu','Mpesa','','2023-05-15 17:54:31','','0','4','2023-05-15 17:54:31','','0','600','1','retail','0','600','1','0','0','0','0','600','0','printed','','','','0','41684162470','Cleared','4','2023-05-15 18:59:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1505,'hu5t','Mpesa','','2023-05-15 18:40:44','','0','4','2023-05-15 18:40:44','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','41684165238','Cleared','4','2023-05-15 18:59:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1506,'','Cash','','2023-05-15 19:00:01','','0','4','2023-05-15 19:00:01','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41684166400','Cleared','4','2023-05-15 19:00:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1507,'','Cash','','2023-05-15 19:26:16','','0','4','2023-05-15 19:26:16','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41684167975','Cleared','4','2023-05-15 19:32:33','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1508,'','Cash','','2023-05-15 19:38:55','','0','4','2023-05-15 19:38:55','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41684168734','Cleared','4','2023-05-15 19:39:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1509,'','Voucher','','2023-05-15 19:50:03','','0','4','2023-05-15 19:50:03','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','martin','','','0','41684169402','Cleared','4','2023-05-15 21:29:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1510,'wjzm','Mpesa','','2023-05-15 20:30:36','','0','4','2023-05-15 20:30:36','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41684171835','Cleared','4','2023-05-15 21:29:42','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1511,'','Cash','','2023-05-15 21:13:17','','0','4','2023-05-15 21:13:17','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed','','','','0','41684174392','Cleared','4','2023-05-15 21:47:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1512,'','Voucher','','2023-05-15 21:29:53','','0','4','2023-05-15 21:29:53','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','purity','','','0','41684175391','Cleared','4','2023-05-15 21:30:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1513,'8vlo','Mpesa','','2023-05-16 08:52:05','','0','4','2023-05-16 08:52:05','','0','380','1','retail','0','380','1','0','0','0','0','380','0','printed','','','','0','41684216300','Cleared','4','2023-05-16 08:52:59','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1514,'','Cash','','2023-05-16 11:05:24','','0','4','2023-05-16 11:05:24','','680','680','1','retail','0','680','1','0','0','0','0','0','0','printed','','','','0','41684224306','Cleared','4','2023-05-16 12:54:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1515,'','Cash','','2023-05-16 11:18:06','','0','4','2023-05-16 11:18:06','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41684225085','Cleared','4','2023-05-16 18:29:35','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1516,'','Voucher','','2023-05-16 11:36:31','','0','4','2023-05-16 11:36:31','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','manager','','','0','41684226189','Cleared','4','2023-05-16 11:43:11','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1517,'f46c','Mpesa','','2023-05-16 12:53:16','','0','4','2023-05-16 12:53:16','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41684230794','Cleared','4','2023-05-16 13:24:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1518,'c6oz','Mpesa','','2023-05-16 14:01:49','','0','4','2023-05-16 14:01:49','','0','700','1','retail','0','700','1','0','0','0','0','700','0','printed','','','','0','41684234903','Cleared','4','2023-05-16 14:05:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1519,'oa1q','Mpesa','','2023-05-16 16:24:12','','0','4','2023-05-16 16:24:12','','0','680','1','retail','0','680','1','0','0','0','0','680','0','printed','','','','0','41684243434','Cleared','4','2023-05-16 17:14:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1520,'','Voucher','','2023-05-16 18:29:45','','0','4','2023-05-16 18:29:45','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','purity','','','0','41684250984','Cleared','4','2023-05-16 18:30:21','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1521,'wq4l','Mpesa','','2023-05-16 19:26:36','','0','3','2023-05-16 19:26:36','','0','1080','1','retail','0','1080','1','0','0','0','0','1080','0','printed','','','','0','31684254380','Cleared','3','2023-05-16 21:58:56','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1522,'vk1g','Mpesa','','2023-05-16 19:29:33','','0','3','2023-05-16 19:29:33','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','31684254571','Cleared','3','2023-05-16 21:58:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1523,'8h6d','Mpesa','','2023-05-16 20:18:42','','0','3','2023-05-16 20:18:42','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','31684257521','Cleared','3','2023-05-16 21:57:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1524,'liqp','Mpesa','','2023-05-16 20:59:17','','0','3','2023-05-16 20:59:17','','0','600','1','retail','0','600','1','0','0','0','0','600','0','printed','','','','0','31684259946','Cleared','3','2023-05-16 21:56:45','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1525,'','Voucher','','2023-05-16 21:26:03','','0','3','2023-05-16 21:26:03','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','cedrick\r\n','','','0','31684261562','Cleared','3','2023-05-16 21:55:34','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1526,'qw2w','Mpesa','','2023-05-16 21:29:54','','0','3','2023-05-16 21:29:54','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','31684261793','Cleared','3','2023-05-16 21:56:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1527,'martin','Voucher','','2023-05-16 23:34:39','','0','3','2023-05-16 23:34:39','','0','280','1','retail','0','280','1','0','280','0','0','0','0','new',' ','','','0','31684269278','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1528,'martin','Voucher','','2023-05-16 23:35:19','','0','3','2023-05-16 23:35:19','','0','200','1','retail','0','200','1','0','200','0','0','0','0','new',' ','','','0','31684269318','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1529,'','Cash','','2023-05-17 12:27:38','','0','3','2023-05-17 12:27:38','','150','150','1','retail','0','150','1','0','0','0','0','0','0','new',' ','','','0','31684315657','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1530,'','Cash','','2023-05-17 12:31:47','','0','3','2023-05-17 12:31:47','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','31684315905','Cleared','3','2023-05-17 21:03:39','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1531,'','Cash','','2023-05-17 12:32:07','','0','3','2023-05-17 12:32:07','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed','','','','0','31684315922','Cleared','3','2023-05-17 22:51:10','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1532,'yn7m','Mpesa','','2023-05-17 12:32:29','','0','3','2023-05-17 12:32:29','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','31684315947','Cleared','3','2023-05-17 21:17:04','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1533,'3uh9','Mpesa','','2023-05-17 14:17:38','','0','3','2023-05-17 14:17:38','','0','500','1','retail','0','500','1','0','0','0','0','500','0','printed','3uh9','','','0','31684322245','Cleared','3','2023-05-17 22:56:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1534,'w3oi','Mpesa','','2023-05-17 16:49:05','','0','3','2023-05-17 16:49:05','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31684331343','Cleared','3','2023-05-17 21:29:15','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1535,'cedrick','Voucher','','2023-05-17 17:30:56','','0','3','2023-05-17 17:30:56','','0','250','1','retail','0','250','1','0','250','0','0','0','0','new',' ','','','0','31684333855','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1536,'','Voucher','','2023-05-17 17:32:20','','0','3','2023-05-17 17:32:20','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','martin','','','0','31684333939','Cleared','3','2023-05-17 17:33:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1537,'','Cash','','2023-05-17 17:36:37','','0','3','2023-05-17 17:36:37','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed','','','','0','31684334195','Cleared','3','2023-05-17 18:47:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1538,'6oei','Mpesa','','2023-05-17 20:43:09','','0','3','2023-05-17 20:43:09','','0','700','1','retail','0','700','1','0','0','0','0','700','0','printed','','','','0','31684345384','Cleared','3','2023-05-17 22:35:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1539,'martin','Voucher','','2023-05-17 20:52:21','','0','3','2023-05-17 20:52:21','','0','200','1','retail','0','200','1','0','200','0','0','0','0','new',' ','','','0','31684345940','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1540,'manager','Voucher','','2023-05-17 20:52:47','','0','3','2023-05-17 20:52:47','','0','280','1','retail','0','280','1','0','280','0','0','0','0','new',' ','','','0','31684345966','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1541,'y1eh','Mpesa','','2023-05-17 20:54:37','','0','3','2023-05-17 20:54:37','','0','380','1','retail','0','380','1','0','0','0','0','380','0','printed','','','','0','31684345997','Cleared','3','2023-05-17 21:15:45','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1542,'n75l','Mpesa','','2023-05-18 12:10:38','','0','3','2023-05-18 11:56:12','','0','550','1','retail','0','550','1','0','0','0','0','550','0','printed','','','','0','31684400170','Cleared','3','2023-05-18 18:02:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1543,'pcwa','Mpesa','','2023-05-18 13:35:41','','0','3','2023-05-18 13:35:41','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','pcwa','','','0','31684406140','Cleared','3','2023-05-18 18:11:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1544,'','Cash','','2023-05-18 14:05:01','','0','3','2023-05-18 14:05:01','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31684407900','Cleared','3','2023-05-18 17:59:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1545,'','Cash','','2023-05-18 15:23:21','','0','4','2023-05-18 15:23:21','','480','480','1','retail','0','480','1','0','0','0','0','0','0','printed','','','','0','41684412588','Cleared','4','2023-05-18 15:32:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1546,'','Cash','','2023-05-18 15:24:01','','0','3','2023-05-18 15:24:01','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31684408025','Cleared','3','2023-05-18 18:31:56','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1547,'tk2u','Mpesa','','2023-05-18 15:31:43','','0','4','2023-05-18 15:31:43','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41684413102','Cleared','4','2023-05-18 15:32:36','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1548,'yu8r','Mpesa','','2023-05-18 15:50:48','','0','4','2023-05-18 15:50:48','','0','500','1','retail','0','500','1','0','0','0','0','500','0','printed','','','','0','41684414243','Cleared','4','2023-05-18 17:10:38','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1549,'','Cash','','2023-05-18 16:29:32','','0','4','2023-05-18 16:29:32','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41684416571','Cleared','4','2023-05-18 17:11:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1550,'8vqi','Mpesa','','2023-05-18 17:17:02','','0','4','2023-05-18 17:17:02','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41684419421','Cleared','4','2023-05-18 17:28:17','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1551,'juuy','Cash','','2023-05-18 17:22:19','','0','3','2023-05-18 17:22:19','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed','','','','0','31684419728','Cleared','3','2023-05-18 18:00:05','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1552,'1gwd','Mpesa','','2023-05-18 17:26:11','','0','4','2023-05-18 17:26:11','','0','600','1','retail','0','600','1','0','0','0','0','600','0','printed','','','','0','41684419969','Cleared','4','2023-05-18 17:27:38','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1553,'manager','Voucher','','2023-05-18 17:44:29','','0','4','2023-05-18 17:44:29','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','','','','0','41684421067','Cleared','4','2023-05-18 17:45:07','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1554,'','Cash','','2023-05-18 18:00:40','','0','3','2023-05-18 18:00:40','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31684422038','Cleared','3','2023-05-18 18:01:21','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1555,'','Cash','','2023-05-18 18:17:11','','0','3','2023-05-18 18:17:11','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed','','','','0','31684423029','Cleared','3','2023-05-18 18:21:05','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1556,'bbq4','Mpesa','','2023-05-18 18:18:29','','0','4','2023-05-18 18:18:29','','0','500','1','retail','0','500','1','0','0','0','0','500','0','printed','','','','0','41684423103','Cleared','4','2023-05-18 20:24:35','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1557,'cedrick','Voucher','','2023-05-18 18:34:35','','0','3','2023-05-18 18:34:35','','0','300','1','retail','0','300','1','0','300','0','0','0','0','new',' ','','','0','31684424073','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1558,'','Cash','','2023-05-18 20:07:23','','0','3','2023-05-18 20:07:23','','350','350','1','retail','0','350','1','0','0','0','0','0','0','new',' ','','','0','31684429642','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1559,'','Cash','','2023-05-18 20:12:11','','0','4','2023-05-18 20:12:11','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41684429930','Cleared','4','2023-05-18 20:24:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1560,'mzae','Voucher','','2023-05-18 20:38:55','','0','4','2023-05-18 20:38:55','','0','200','1','retail','0','200','1','0','200','0','0','0','0','new',' ','','','0','41684431534','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1561,'','Voucher','','2023-05-18 22:10:17','','0','4','2023-05-18 22:10:17','','0','350','1','retail','0','350','1','0','350','0','0','0','0','printed','purity','','','0','41684437015','Cleared','4','2023-05-18 22:10:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1562,'xreu','Mpesa','','2023-05-19 09:24:51','','0','4','2023-05-19 09:24:51','','0','480','1','retail','0','480','1','0','0','0','0','480','0','printed','','','','0','41684477480','Cleared','4','2023-05-19 14:41:24','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1563,'','Voucher','','2023-05-19 09:25:54','','0','4','2023-05-19 09:25:54','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','purity','','','0','41684477552','Cleared','4','2023-05-19 14:42:05','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1564,'3qm7','Mpesa','','2023-05-19 09:38:55','','0','4','2023-05-19 09:38:55','','0','380','1','retail','0','380','1','0','0','0','0','380','0','printed','','','','0','41684478322','Cleared','4','2023-05-19 09:40:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1565,'','Cash','','2023-05-19 10:41:38','','0','4','2023-05-19 10:41:38','','780','780','1','retail','0','780','1','0','0','0','0','0','0','printed','ubereats','','','0','41684482078','Cleared','4','2023-05-19 10:42:07','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1566,'d2jw','Mpesa','','2023-05-19 12:51:12','','0','4','2023-05-19 12:51:12','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41684489870','Cleared','4','2023-05-19 14:41:48','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1567,'','Cash','','2023-05-19 13:45:10','','0','3','2023-05-19 13:45:10','','150','150','1','retail','0','150','1','0','0','0','0','0','0','new',' ','','','0','31684493108','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1568,'rcos','Mpesa','','2023-05-19 16:20:35','','0','3','2023-05-19 16:20:35','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31684502433','Cleared','3','2023-05-19 21:28:57','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1569,'','Voucher','','2023-05-19 16:23:08','','0','3','2023-05-19 16:23:08','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','manager','','','0','31684502587','Cleared','3','2023-05-19 16:24:07','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1570,'','Cash','','2023-05-19 16:48:34','','0','3','2023-05-19 16:48:34','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed','','','','0','31684504113','Cleared','3','2023-05-19 21:29:32','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1571,'uncle kamande','Voucher','','2023-05-19 17:21:57','','0','3','2023-05-19 17:21:57','','0','350','1','retail','0','350','1','0','350','0','0','0','0','new',' ','','','0','31684506115','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1572,'','Cash','','2023-05-19 20:59:05','','0','3','2023-05-19 20:59:05','','280','280','1','retail','0','280','1','0','0','0','0','0','0','printed','','','','0','31684519139','Cleared','3','2023-05-19 21:14:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1573,'','Cash','','2023-05-19 21:53:54','','0','3','2023-05-19 21:53:54','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31684522400','Cleared','3','2023-05-19 23:15:33','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1574,'kb93','Mpesa','','2023-05-19 22:34:15','','0','3','2023-05-19 22:34:15','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','31684524853','Cleared','3','2023-05-19 22:34:49','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1575,'','Cash','','2023-05-19 23:03:44','','0','3','2023-05-19 23:03:44','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31684526622','Cleared','3','2023-05-19 23:15:21','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1576,'george','Voucher','','2023-05-19 23:30:26','','0','3','2023-05-19 23:30:26','','0','200','1','retail','0','200','1','0','200','0','0','0','0','new',' ','','','0','31684528224','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1577,'martin','Voucher','','2023-05-19 23:31:05','','0','3','2023-05-19 23:31:05','','0','400','1','retail','0','400','1','0','400','0','0','0','0','new',' ','','','0','31684528260','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1578,'purity','Voucher','','2023-05-19 23:32:16','','0','3','2023-05-19 23:32:16','','0','200','1','retail','0','200','1','0','200','0','0','0','0','new',' ','','','0','31684528334','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1579,'habt','Mpesa','','2023-05-20 12:01:55','','0','4','2023-05-20 12:01:56','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41684573314','Cleared','4','2023-05-20 12:02:38','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1580,'','Voucher','','2023-05-20 17:12:30','','0','4','2023-05-20 17:12:30','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','manager','','','0','41684591949','Cleared','4','2023-05-20 17:13:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1581,'','Cash','','2023-05-20 18:07:44','','0','3','2023-05-20 18:07:44','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31684595262','Cleared','3','2023-05-20 18:50:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1582,'','Cash','','2023-05-20 18:10:26','','0','4','2023-05-20 18:10:26','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41684595425','Cleared','4','2023-05-20 18:12:40','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1583,'fs52','Mpesa','','2023-05-20 18:51:17','','0','3','2023-05-20 18:51:17','','0','430','1','retail','0','430','1','0','0','0','0','430','0','printed','','','','0','31684597873','Cleared','3','2023-05-20 19:46:47','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1584,'ehc4','Mpesa','','2023-05-20 20:40:50','','0','4','2023-05-20 20:40:50','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41684604449','Cleared','4','2023-05-20 20:41:37','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1585,'6zbh','Cash','','2023-05-20 20:42:17','','0','4','2023-05-20 20:42:17','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41684604536','Cleared','4','2023-05-20 20:42:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1586,'hohx','Mpesa','','2023-05-20 20:44:33','','0','3','2023-05-20 20:44:33','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','hohx','','','0','31684604672','Cleared','3','2023-05-20 21:00:32','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1587,'hohx','Mpesa','','2023-05-20 20:44:51','','0','3','2023-05-20 20:44:51','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','hohx','','','0','31684604689','Cleared','3','2023-05-20 21:00:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1588,'o3s0','Mpesa','','2023-05-20 20:51:27','','0','3','2023-05-20 20:51:27','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31684605086','Cleared','3','2023-05-20 20:52:49','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1589,'bj6r','Mpesa','','2023-05-20 21:33:51','','0','4','2023-05-20 21:33:51','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','bj6r','','','0','41684607630','Cleared','3','2023-05-20 21:35:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1590,'','Cash','','2023-05-20 21:56:17','','0','3','2023-05-20 21:56:18','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31684608976','Cleared','3','2023-05-20 23:20:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1591,'sr91','Cash','','2023-05-20 22:25:45','','0','3','2023-05-20 22:25:45','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','31684610744','Cleared','3','2023-05-20 23:21:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1592,'yag9','Mpesa','','2023-05-20 22:53:45','','0','4','2023-05-20 22:53:45','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41684612424','Cleared','4','2023-05-20 22:54:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1593,'6kam','Mpesa','','2023-05-21 11:13:25','','0','3','2023-05-21 11:13:25','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31684656804','Cleared','3','2023-05-21 18:06:39','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1594,'','Voucher','','2023-05-21 13:58:25','','0','3','2023-05-21 13:58:25','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','cedrick','','','0','31684666703','Cleared','3','2023-05-21 22:04:21','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1595,'','Cash','','2023-05-21 18:15:38','','0','4','2023-05-21 18:15:38','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed','','','','0','41684682133','Cleared','4','2023-05-21 19:02:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1596,'ie7b','Mpesa','','2023-05-21 19:44:43','','0','3','2023-05-21 19:44:43','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31684687481','Cleared','3','2023-05-21 19:45:29','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1597,'','Voucher','','2023-05-21 19:58:58','','0','4','2023-05-21 19:58:58','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','manager','','','0','41684688337','Cleared','4','2023-05-21 19:59:27','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1598,'','Voucher','','2023-05-21 22:05:09','','0','3','2023-05-21 22:05:09','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','purity','','','0','31684695908','Cleared','3','2023-05-21 22:05:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1599,'8759','Mpesa','','2023-05-22 11:44:09','','0','4','2023-05-22 11:44:09','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41684745048','Cleared','4','2023-05-22 20:21:02','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1600,'','Voucher','','2023-05-22 14:31:43','','0','4','2023-05-22 14:31:43','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','mzae','','','0','41684755101','Cleared','4','2023-05-22 20:21:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1601,'','Voucher','','2023-05-22 18:36:16','','0','4','2023-05-22 18:36:16','','0','150','1','retail','0','150','1','0','150','0','0','0','0','printed','george','','','0','41684769775','Cleared','4','2023-05-22 20:21:33','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1602,'z3tn','Mpesa','','2023-05-22 18:59:54','','0','4','2023-05-22 18:59:54','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41684771193','Cleared','4','2023-05-22 20:22:47','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1603,'','Cash','','2023-05-22 19:42:07','','0','4','2023-05-22 19:42:07','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed','','','','0','41684773722','Cleared','4','2023-05-22 20:23:17','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1604,'dii5','Mpesa','','2023-05-23 13:00:24','','0','4','2023-05-23 13:00:24','','0','600','1','retail','0','600','1','0','0','0','0','600','0','printed','','','','0','41684836019','Cleared','4','2023-05-23 14:10:45','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1605,'p38i','Mpesa','','2023-05-23 13:12:49','','0','4','2023-05-23 13:12:49','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41684836767','Cleared','4','2023-05-23 14:11:15','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1606,'','Voucher','','2023-05-23 13:13:31','','0','4','2023-05-23 13:13:31','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','mzae','','','0','41684836809','Cleared','4','2023-05-23 14:11:43','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1607,'','Cash','','2023-05-23 15:24:58','','0','4','2023-05-23 15:24:58','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','41684844697','Cleared','4','2023-05-23 18:24:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1608,'','Voucher','','2023-05-23 15:34:36','','0','4','2023-05-23 15:34:36','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','george','','','0','41684845275','Cleared','4','2023-05-23 15:35:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1609,'manager','Voucher','','2023-05-23 18:08:11','','0','3','2023-05-23 18:08:11','','0','280','1','retail','0','280','1','0','280','0','0','0','0','new',' ','','','0','31684854489','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1610,'m9lk','Mpesa','','2023-05-23 18:08:57','','0','3','2023-05-23 18:08:57','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31684854536','Cleared','3','2023-05-23 20:43:42','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1611,'','Cash','','2023-05-23 18:47:12','','0','3','2023-05-23 18:47:12','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','31684856830','Cleared','3','2023-05-23 19:51:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1612,'yuil','Mpesa','','2023-05-23 18:47:58','','0','4','2023-05-23 18:47:58','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41684856876','Cleared','3','2023-05-23 20:39:07','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1613,'06gi','Mpesa','','2023-05-23 18:50:50','','0','3','2023-05-23 18:50:50','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31684857048','Cleared','3','2023-05-23 20:46:56','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1614,'al2n','Mpesa','','2023-05-23 19:51:35','','0','3','2023-05-23 19:51:35','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31684860694','Cleared','3','2023-05-23 20:45:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1615,'al2n','Mpesa','','2023-05-23 19:51:50','','0','3','2023-05-23 19:51:50','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','31684860708','Cleared','3','2023-05-23 20:45:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1616,'','Cash','','2023-05-23 19:54:52','','0','3','2023-05-23 19:54:52','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','31684860891','Cleared','3','2023-05-23 20:45:59','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1617,'ijsm','Mpesa','','2023-05-23 21:20:20','','0','3','2023-05-23 21:20:20','','0','450','1','retail','0','450','1','0','0','0','0','450','0','printed','','','','0','31684866014','Cleared','3','2023-05-23 22:19:59','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1618,'mzae','Voucher','','2023-05-23 22:20:22','','0','3','2023-05-23 22:20:22','','0','200','1','retail','0','200','1','0','200','0','0','0','0','new',' ','','','0','31684869620','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1619,'cedrick','Voucher','','2023-05-23 22:21:06','','0','3','2023-05-23 22:21:06','','0','300','1','retail','0','300','1','0','300','0','0','0','0','new',' ','','','0','31684869665','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1620,'purity','Voucher','','2023-05-23 22:30:12','','0','3','2023-05-23 22:30:12','','0','280','1','retail','0','280','1','0','280','0','0','0','0','new',' ','','','0','31684870210','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1621,'urs4','Mpesa','','2023-05-24 12:58:12','','0','3','2023-05-24 12:58:12','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','urs4','','','0','31684922291','Cleared','3','2023-05-24 16:08:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1622,'nzxx','Mpesa','','2023-05-24 15:48:02','','0','3','2023-05-24 15:48:02','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','31684932481','Cleared','3','2023-05-24 16:20:04','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1623,'george','Voucher','','2023-05-24 15:49:28','','0','3','2023-05-24 15:49:28','','0','200','1','retail','0','200','1','0','200','0','0','0','0','new',' ','','','0','31684932566','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1624,'cedrick','Voucher','','2023-05-24 15:49:57','','0','3','2023-05-24 15:49:57','','0','250','1','retail','0','250','1','0','250','0','0','0','0','new',' ','','','0','31684932595','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1625,'pkyv','Mpesa','','2023-05-24 16:03:10','','0','3','2023-05-24 16:03:10','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','31684933379','Cleared','3','2023-05-24 16:19:36','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1626,'','Cash','','2023-05-24 16:55:10','','0','3','2023-05-24 16:55:10','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31684936508','Cleared','3','2023-05-24 16:55:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1627,'saq5','Mpesa','','2023-05-24 17:41:14','','0','3','2023-05-24 17:26:20','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','31684938379','Cleared','3','2023-05-24 17:42:17','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1628,'487c','Mpesa','','2023-05-24 17:28:41','','0','3','2023-05-24 17:28:41','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','31684938432','Cleared','3','2023-05-24 17:40:33','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1629,'con4','Mpesa','','2023-05-24 17:29:06','','0','3','2023-05-24 17:29:06','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','con4','','','0','31684938544','Cleared','3','2023-05-24 17:30:37','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1630,'','Cash','','2023-05-24 18:40:36','','0','3','2023-05-24 18:40:36','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','31684942835','Cleared','3','2023-05-24 18:58:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1631,'','Cash','','2023-05-24 18:58:17','','0','3','2023-05-24 18:58:17','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','31684943896','Cleared','3','2023-05-24 19:13:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1632,'qu9w','Mpesa','','2023-05-24 19:11:33','','0','3','2023-05-24 19:11:33','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','31684944691','Cleared','3','2023-05-24 21:11:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1633,'','Cash','','2023-05-24 20:09:32','','0','3','2023-05-24 20:09:32','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','uber eats','','','0','31684948171','Cleared','3','2023-05-24 20:12:39','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1634,'42xo','Mpesa','','2023-05-24 20:35:41','','0','3','2023-05-24 20:35:41','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','31684949740','Cleared','3','2023-05-24 21:09:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1635,'manager','Voucher','','2023-05-24 21:02:35','','0','3','2023-05-24 21:02:35','','0','280','1','retail','0','280','1','0','280','0','0','0','0','new',' ','','','0','31684951353','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1636,'gp9s','Mpesa','','2023-05-24 22:10:53','','0','3','2023-05-24 22:10:53','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31684955452','Cleared','3','2023-05-24 22:13:11','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1637,'george','Voucher','','2023-05-24 22:32:39','','0','3','2023-05-24 22:32:39','','0','200','1','retail','0','200','1','0','200','0','0','0','0','new',' ','','','0','31684956757','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1638,'cedrick','Voucher','','2023-05-24 22:34:53','','0','3','2023-05-24 22:34:53','','0','250','1','retail','0','250','1','0','250','0','0','0','0','new',' ','','','0','31684956892','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1639,'','Cash','','2023-05-25 18:20:10','','0','4','2023-05-25 18:20:10','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41685028008','Cleared','4','2023-05-25 20:39:07','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1640,'','Cash','','2023-05-25 18:45:43','','0','4','2023-05-25 18:45:43','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','41685029542','Cleared','4','2023-05-25 20:13:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1641,'','Voucher','','2023-05-25 18:46:55','','0','4','2023-05-25 18:46:55','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','cedrick','','','0','41685029613','Cleared','4','2023-05-25 18:49:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1642,'cedrick','Voucher','','2023-05-25 18:50:39','','0','3','2023-05-25 18:50:39','','0','280','1','retail','0','280','1','0','280','0','0','0','0','new',' ','','','0','31685029838','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1643,'ny9x','Mpesa','','2023-05-25 18:52:13','','0','3','2023-05-25 18:52:13','','0','280','1','retail','0','280','1','0','0','0','0','280','0','new',' ','','','0','31685029931','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1644,'','Cash','','2023-05-25 18:54:47','','0','3','2023-05-25 18:54:47','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','31685030086','Cleared','3','2023-05-25 18:55:36','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1645,'cedrick','Voucher','','2023-05-25 19:23:20','','0','3','2023-05-25 19:23:20','','0','250','1','retail','0','250','1','0','250','0','0','0','0','new',' ','','','0','31685031799','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1646,'','Cash','','2023-05-25 19:31:51','','0','4','2023-05-25 19:31:51','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed','','','','0','41685032309','Cleared','4','2023-05-25 20:38:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1647,'g8mh','Mpesa','','2023-05-25 20:07:59','','0','4','2023-05-25 20:07:59','','0','380','1','retail','0','380','1','0','0','0','0','380','0','printed','','','','0','41685034465','Cleared','4','2023-05-25 20:12:59','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1648,'','Cash','','2023-05-25 21:03:25','','0','4','2023-05-25 21:03:25','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41685037804','Cleared','4','2023-05-25 21:03:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1649,'','Cash','','2023-05-25 21:04:29','','0','3','2023-05-25 21:04:29','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','31685037867','Cleared','3','2023-05-25 21:37:43','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1650,'cne2','Mpesa','','2023-05-25 21:38:06','','0','4','2023-05-25 21:38:06','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41685039885','Cleared','4','2023-05-25 22:10:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1651,'o4gk','Mpesa','','2023-05-25 21:38:37','','0','4','2023-05-25 21:38:37','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41685039915','Cleared','4','2023-05-25 22:10:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1652,'j8l6','Mpesa','','2023-05-26 11:57:21','','0','4','2023-05-26 11:57:21','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','j8l6','','','0','41685091440','Cleared','4','2023-05-26 14:02:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1653,'purity','Voucher','','2023-05-26 12:00:34','','0','4','2023-05-26 12:00:34','','0','280','1','retail','0','280','1','0','280','0','0','0','0','new',' ','','','0','41685091633','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1654,'3knu','Mpesa','','2023-05-26 12:23:36','','0','4','2023-05-26 12:23:36','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41685093014','Cleared','4','2023-05-26 14:03:07','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1655,'','Cash','','2023-05-26 13:01:47','','0','3','2023-05-26 13:01:47','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31685095305','Cleared','3','2023-05-26 22:53:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1656,'zz27','Mpesa','','2023-05-26 13:54:10','','0','3','2023-05-26 13:54:10','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','31685098448','Cleared','3','2023-05-26 16:27:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1657,'orqx','Mpesa','','2023-05-26 15:07:18','','0','3','2023-05-26 15:07:18','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31685102836','Cleared','3','2023-05-26 18:45:05','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1658,'pbv1','Mpesa','','2023-05-26 15:52:20','','0','4','2023-05-26 15:52:20','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41685105538','Cleared','4','2023-05-26 16:02:23','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1659,'meej','Mpesa','','2023-05-26 15:53:03','','0','4','2023-05-26 15:53:03','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41685105581','Cleared','4','2023-05-26 16:37:59','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1660,'u7aw','Mpesa','','2023-05-26 16:20:14','','0','3','2023-05-26 16:20:14','','0','480','1','retail','0','480','1','0','0','0','0','480','0','printed','','','','0','31685107197','Cleared','3','2023-05-26 18:44:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1661,'','Voucher','','2023-05-26 18:13:20','','0','4','2023-05-26 18:13:20','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','mzae','','','0','41685113999','Cleared','4','2023-05-26 18:13:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1662,'rhig','Mpesa','','2023-05-26 18:32:35','','0','3','2023-05-26 18:32:35','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31685115153','Cleared','3','2023-05-26 18:43:47','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1663,'','Cash','','2023-05-26 18:42:38','','0','4','2023-05-26 18:42:38','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41685115757','Cleared','4','2023-05-26 19:11:24','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1664,'','Cash','','2023-05-26 20:32:39','','0','3','2023-05-26 20:32:39','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed','','','','0','31685122354','Cleared','3','2023-05-26 21:36:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1665,'wruw','Mpesa','','2023-05-26 20:47:09','','0','3','2023-05-26 20:47:09','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','31685123228','Cleared','3','2023-05-26 22:53:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1666,'','Cash','','2023-05-26 21:48:16','','0','4','2023-05-26 21:48:16','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41685126895','Cleared','4','2023-05-26 21:48:33','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1667,'jzl4','Mpesa','','2023-05-26 21:48:57','','0','3','2023-05-26 21:48:57','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31685126935','Cleared','3','2023-05-26 22:45:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1668,'','Cash','','2023-05-26 22:05:13','','0','3','2023-05-26 22:05:13','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31685127912','Cleared','3','2023-05-26 22:05:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1669,'rogers','Voucher','','2023-05-26 22:48:57','','0','3','2023-05-26 22:48:57','','0','280','1','retail','0','280','1','0','280','0','0','0','0','new',' ','','','0','31685130536','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1670,'cedrick','Voucher','','2023-05-26 22:56:38','','0','3','2023-05-26 22:56:38','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','','','','0','31685130997','Cleared','3','2023-05-26 23:05:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1671,'','Delivery','','2023-05-27 10:05:03','','0','4','2023-05-27 10:05:03','','0','200','1','retail','0','200','1','0','0','200','0','0','0','printed','ubereats','','','0','41685171101','Cleared','4','2023-05-27 10:05:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1672,'ad5m','Mpesa','','2023-05-27 10:52:22','','0','4','2023-05-27 10:52:22','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41685173941','Cleared','4','2023-05-27 10:52:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1673,'cy48','Mpesa','','2023-05-27 12:34:01','','0','4','2023-05-27 12:34:01','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41685180040','Cleared','4','2023-05-27 12:43:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1674,'pidy','Mpesa','','2023-05-27 14:25:35','','0','4','2023-05-27 14:25:35','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41685186734','Cleared','4','2023-05-27 14:54:56','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1675,'sjzk','Mpesa','','2023-05-27 14:47:47','','0','4','2023-05-27 14:47:47','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','41685188062','Cleared','4','2023-05-27 14:54:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1676,'hjjf','Mpesa','','2023-05-27 15:25:03','','0','4','2023-05-27 15:25:03','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41685190301','Cleared','4','2023-05-27 16:43:36','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1677,'1v97','Mpesa','','2023-05-27 15:43:22','','0','4','2023-05-27 15:43:22','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41685191400','Cleared','4','2023-05-27 18:51:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1678,'aoen','Mpesa','','2023-05-27 16:06:30','','0','4','2023-05-27 16:06:30','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','41685192785','Cleared','4','2023-05-27 16:44:47','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1679,'ef58','Mpesa','','2023-05-27 17:01:09','','0','4','2023-05-27 17:01:09','','0','750','1','retail','0','750','1','0','0','0','0','750','0','printed','','','','0','41685196050','Cleared','4','2023-05-27 17:46:39','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1680,'eco6','Mpesa','','2023-05-27 18:13:56','','0','3','2023-05-27 18:13:56','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31685200435','Cleared','3','2023-05-27 20:46:42','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1681,'','Cash','','2023-05-27 18:14:17','','0','3','2023-05-27 18:14:17','','280','280','1','retail','0','280','1','0','0','0','0','0','0','printed','','','','0','31685200455','Cleared','3','2023-05-27 20:45:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1682,'','Cash','','2023-05-27 18:16:51','','0','3','2023-05-27 18:16:51','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31685200610','Cleared','3','2023-05-27 19:56:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1683,'c141','Mpesa','','2023-05-27 18:50:39','','0','4','2023-05-27 18:50:39','','0','700','1','retail','0','700','1','0','0','0','0','700','0','printed','','','','0','41685202610','Cleared','4','2023-05-27 19:01:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1684,'mp4g','Mpesa','','2023-05-27 19:04:39','','0','3','2023-05-27 19:03:34','','0','700','1','retail','0','700','1','0','0','0','0','700','0','printed','','','','0','31685203412','Cleared','3','2023-05-27 19:14:45','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1685,'sl1e','Mpesa','','2023-05-27 19:57:56','','0','3','2023-05-27 19:57:56','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31685206675','Cleared','3','2023-05-27 20:43:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1686,'z7ve','Cash','','2023-05-27 20:23:20','','0','3','2023-05-27 20:23:20','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','31685208198','Cleared','3','2023-05-27 23:39:36','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1687,'','Cash','','2023-05-27 20:23:58','','0','3','2023-05-27 20:23:58','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','31685208237','Cleared','3','2023-05-27 23:37:04','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1688,'1sun','Mpesa','','2023-05-27 20:25:11','','0','3','2023-05-27 20:25:11','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31685208309','Cleared','3','2023-05-27 20:48:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1689,'ugqo','Mpesa','','2023-05-27 22:50:39','','0','3','2023-05-27 22:50:39','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31685217037','Cleared','3','2023-05-27 23:10:34','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1690,'943v','Cash','','2023-05-27 23:31:34','','0','3','2023-05-27 23:00:16','','1050','1050','1','retail','0','1050','1','0','0','0','0','0','0','printed','','','','0','31685217609','Cleared','3','2023-05-27 23:37:42','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1691,'','Cash','','2023-05-27 23:01:52','','0','4','2023-05-27 23:01:52','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed','','','','0','41685217708','Cleared','3','2023-05-27 23:10:00','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1692,'1jom','Mpesa','','2023-05-27 23:05:29','','0','4','2023-05-27 23:05:29','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41685217927','Cleared','4','2023-05-27 23:51:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1693,'marion','Voucher','','2023-05-27 23:48:30','','0','3','2023-05-27 23:48:30','','0','550','1','retail','0','550','1','0','550','0','0','0','0','new',' ','','','0','31685220499','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1694,'martin','Voucher','','2023-05-27 23:49:09','','0','3','2023-05-27 23:49:09','','0','400','1','retail','0','400','1','0','400','0','0','0','0','new',' ','','','0','31685220543','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1695,'manager','Voucher','','2023-05-27 23:49:41','','0','3','2023-05-27 23:49:41','','0','280','1','retail','0','280','1','0','280','0','0','0','0','new',' ','','','0','31685220579','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1696,'cedrick','Voucher','','2023-05-27 23:50:25','','0','3','2023-05-27 23:50:25','','0','550','1','retail','0','550','1','0','550','0','0','0','0','new',' ','','','0','31685220614','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1697,'','Cash','','2023-05-27 23:51:52','','0','4','2023-05-27 23:51:52','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed','','','','0','41685220708','Cleared','4','2023-05-27 23:52:38','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1698,'velq','Cash','','2023-05-27 23:58:35','','0','3','2023-05-27 23:58:35','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed','','','','0','31685221113','Cleared','3','2023-05-27 23:59:04','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1699,'','Cash','','2023-05-28 14:38:00','','0','3','2023-05-28 14:38:00','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','31685273878','Cleared','3','2023-05-28 14:38:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1700,'U3LU','Mpesa','','2023-05-28 14:42:33','','0','3','2023-05-28 14:42:33','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','31685274151','Cleared','3','2023-05-28 19:16:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1701,'','Cash','','2023-05-28 14:54:16','','0','3','2023-05-28 14:54:16','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed','','','','0','31685274854','Cleared','3','2023-05-28 19:15:45','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1702,'','Delivery','','2023-05-28 15:25:20','','0','3','2023-05-28 15:25:20','','0','700','1','retail','0','700','1','0','0','700','0','0','0','printed','UBER EATS','','','0','31685276616','Cleared','3','2023-05-28 19:15:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1703,'','Cash','','2023-05-28 17:10:37','','0','4','2023-05-28 17:10:37','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed','','','','0','41685283032','Cleared','4','2023-05-28 20:03:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1704,'F8XK','Mpesa','','2023-05-28 17:19:23','','0','4','2023-05-28 17:19:23','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41685283561','Cleared','4','2023-05-28 17:20:07','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1705,'63UH','Mpesa','','2023-05-28 17:20:17','','0','4','2023-05-28 17:20:17','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41685283616','Cleared','4','2023-05-28 20:03:57','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1706,'','Cash','','2023-05-28 17:39:20','','0','4','2023-05-28 17:39:20','','450','450','1','retail','0','450','1','0','0','0','0','0','0','printed','','','','0','41685284755','Cleared','4','2023-05-28 20:04:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1707,'63UH','Mpesa','','2023-05-28 18:36:57','','0','4','2023-05-28 18:36:57','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41685288215','Cleared','4','2023-05-28 20:04:47','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1708,'','Cash','','2023-05-28 19:16:42','','0','3','2023-05-28 19:16:43','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31685290601','Cleared','3','2023-05-28 19:17:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1709,'','Cash','','2023-05-28 19:17:19','','0','3','2023-05-28 19:17:19','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31685290638','Cleared','3','2023-05-28 19:34:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1710,'','Voucher','','2023-05-28 19:37:06','','0','3','2023-05-28 19:37:06','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','MANAGER','','','0','31685291824','Cleared','3','2023-05-28 20:01:10','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1711,'','Voucher','','2023-05-28 20:01:24','','0','3','2023-05-28 20:01:24','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','MANAGER','','','0','31685293283','Cleared','3','2023-05-28 20:02:32','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1712,'','Voucher','','2023-05-28 20:01:45','','0','3','2023-05-28 20:01:45','','0','150','1','retail','0','150','1','0','150','0','0','0','0','printed','MARTIN','','','0','31685293303','Cleared','3','2023-05-28 20:02:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1713,'','Cash','','2023-05-28 20:56:52','','0','4','2023-05-28 20:56:52','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41685296610','Cleared','4','2023-05-28 21:20:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1714,'','Cash','','2023-05-28 20:57:03','','0','4','2023-05-28 20:57:03','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41685296622','Cleared','4','2023-05-28 21:20:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1715,'CT6R','Mpesa','','2023-05-28 21:18:38','','0','4','2023-05-28 21:18:38','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41685297916','Cleared','4','2023-05-28 21:25:16','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1716,'','Voucher','','2023-05-29 13:56:04','','0','4','2023-05-29 13:56:04','','0','480','1','retail','0','480','1','0','480','0','0','0','0','printed','dad','','','0','41685357757','Cleared','4','2023-05-29 13:56:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1717,'tjp1','Mpesa','','2023-05-29 18:03:57','','0','4','2023-05-29 18:03:57','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41685372635','Cleared','4','2023-05-29 18:54:45','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1718,'vv79','Mpesa','','2023-05-29 18:04:13','','0','4','2023-05-29 18:04:13','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41685372652','Cleared','4','2023-05-29 18:37:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1719,'vv79','Mpesa','','2023-05-29 18:21:59','','0','4','2023-05-29 18:21:59','','0','30','1','retail','0','30','1','0','0','0','0','30','0','printed','','','','0','41685373717','Cleared','4','2023-05-29 18:37:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1720,'hdik','Mpesa','','2023-05-29 18:22:35','','0','4','2023-05-29 18:22:35','','0','500','1','retail','0','500','1','0','0','0','0','500','0','printed','','','','0','41685373743','Cleared','4','2023-05-29 19:45:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1721,'hdik','Mpesa','','2023-05-29 18:36:35','','0','4','2023-05-29 18:36:35','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41685374594','Cleared','4','2023-05-29 19:46:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1722,'e4p9','Mpesa','','2023-05-29 18:50:49','','0','4','2023-05-29 18:50:49','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','e4p9','','','0','41685375447','Cleared','4','2023-05-29 19:18:15','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1723,'m12j','Mpesa','','2023-05-29 19:11:21','','0','4','2023-05-29 19:11:21','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41685376679','Cleared','4','2023-05-29 20:14:32','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1724,'8dgq','Mpesa','','2023-05-29 20:26:24','','0','4','2023-05-29 20:26:24','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','41685381178','Cleared','4','2023-05-29 20:27:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1725,'','Voucher','','2023-05-29 21:15:11','','0','4','2023-05-29 21:15:11','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','george','','','0','41685384110','Cleared','4','2023-05-29 21:15:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1726,'','Delivery','','2023-05-30 09:47:01','','0','4','2023-05-30 09:47:01','','0','280','1','retail','0','280','1','0','0','280','0','0','0','printed','ubereats','','','0','41685429212','Cleared','4','2023-05-30 09:47:42','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1727,'','Cash','','2023-05-30 10:28:53','','0','4','2023-05-30 10:28:53','','150','150','1','retail','0','150','1','0','0','0','0','0','0','new',' ','','','0','41685431732','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1728,'','Voucher','','2023-05-30 12:28:20','','0','4','2023-05-30 12:28:20','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','manager','','','0','41685438899','Cleared','4','2023-05-30 12:28:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1729,'','Cash','','2023-05-30 13:07:28','','0','4','2023-05-30 13:07:28','','280','280','1','retail','0','280','1','0','0','0','0','0','0','printed','','','','0','41685441246','Cleared','4','2023-05-30 13:30:12','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1730,'kqji','Mpesa','','2023-05-30 15:29:14','','0','4','2023-05-30 15:29:14','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41685449752','Cleared','4','2023-05-30 15:30:08','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1731,'ro8d','Mpesa','','2023-05-30 16:07:16','','0','3','2023-05-30 16:07:16','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','ro8d','','','0','31685452035','Cleared','3','2023-05-30 22:19:47','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1732,'','Cash','','2023-05-30 17:04:54','','0','4','2023-05-30 17:04:54','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','41685455493','Cleared','4','2023-05-30 18:08:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1733,'ceny','Mpesa','','2023-05-30 18:08:15','','0','4','2023-05-30 18:08:15','','0','450','1','retail','0','450','1','0','0','0','0','450','0','printed','','','','0','41685459249','Cleared','3','2023-05-30 22:20:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1734,'','Cash','','2023-05-30 18:19:31','','0','3','2023-05-30 18:19:31','','280','280','1','retail','0','280','1','0','0','0','0','0','0','printed','','','','0','31685459970','Cleared','3','2023-05-30 18:19:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1735,'','Cash','','2023-05-30 18:29:27','','0','3','2023-05-30 18:29:27','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31685460565','Cleared','3','2023-05-30 18:29:45','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1736,'gtoc','Mpesa','','2023-05-30 18:47:47','','0','3','2023-05-30 18:47:47','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','31685461665','Cleared','3','2023-05-30 22:19:11','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1737,'','Cash','','2023-05-30 20:49:01','','0','3','2023-05-30 20:49:01','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31685468939','Cleared','3','2023-05-30 22:14:07','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1738,'zfzb','Mpesa','','2023-05-30 22:13:44','','0','3','2023-05-30 22:13:44','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','31685474022','Cleared','3','2023-05-30 22:18:23','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1739,'martin','Voucher','','2023-05-30 22:44:49','','0','3','2023-05-30 22:44:49','','0','350','1','retail','0','350','1','0','350','0','0','0','0','new',' ','','','0','31685475882','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1740,'cedrick','Voucher','','2023-05-30 22:45:35','','0','3','2023-05-30 22:45:35','','0','300','1','retail','0','300','1','0','300','0','0','0','0','new',' ','','','0','31685475934','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1741,'purity','Voucher','','2023-05-30 22:45:58','','0','3','2023-05-30 22:45:58','','0','200','1','retail','0','200','1','0','200','0','0','0','0','new',' ','','','0','31685475957','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1742,'','Voucher','','2023-05-31 16:46:44','','0','3','2023-05-31 16:46:44','','0','150','1','retail','0','150','1','0','150','0','0','0','0','printed','george','','','0','31685540803','Cleared','3','2023-05-31 23:09:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1743,'3gfq','Cash','','2023-05-31 17:24:06','','0','3','2023-05-31 17:24:06','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31685543045','Cleared','3','2023-05-31 21:45:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1744,'3gfq','Mpesa','','2023-05-31 17:24:54','','0','3','2023-05-31 17:24:54','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','31685543092','Cleared','3','2023-05-31 21:41:08','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1745,'gq46','Mpesa','','2023-05-31 18:27:16','','0','3','2023-05-31 18:27:16','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31685546835','Cleared','3','2023-05-31 21:44:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1746,'','Cash','','2023-05-31 18:27:42','','0','3','2023-05-31 18:27:42','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31685546861','Cleared','3','2023-05-31 18:28:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1747,'hana','Mpesa','','2023-05-31 18:28:15','','0','3','2023-05-31 18:28:15','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','hana','','','0','31685546893','Cleared','3','2023-05-31 22:49:21','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1748,'','Cash','','2023-05-31 18:32:10','','0','3','2023-05-31 18:32:10','','150','150','1','retail','0','150','1','0','0','0','0','0','0','new',' ','','','0','31685547128','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1749,'','Delivery','','2023-05-31 19:22:46','','0','3','2023-05-31 19:22:46','','0','200','1','retail','0','200','1','0','0','200','0','0','0','printed','uber eats','','','0','31685550164','Cleared','3','2023-05-31 21:43:24','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1750,'','Cash','','2023-05-31 19:56:15','','0','3','2023-05-31 19:56:15','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31685552174','Cleared','3','2023-05-31 22:37:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1751,'gyqt','Mpesa','','2023-05-31 21:47:45','','0','3','2023-05-31 21:47:45','','0','1040','1','retail','0','1040','1','0','0','0','0','1040','0','printed','','','','0','31685558817','Cleared','3','2023-05-31 22:14:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1752,'','Cash','','2023-05-31 22:06:53','','0','3','2023-05-31 22:06:53','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31685560011','Cleared','3','2023-05-31 22:13:08','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1753,'9p5e','Mpesa','','2023-05-31 22:41:07','','0','3','2023-05-31 22:41:07','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','31685562066','Cleared','3','2023-05-31 22:48:29','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1754,'martin','Voucher','','2023-05-31 22:51:25','','0','3','2023-05-31 22:51:25','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','martin','','','0','31685562684','Cleared','3','2023-05-31 23:12:07','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1755,'dad','Voucher','','2023-05-31 22:51:42','','0','3','2023-05-31 22:51:42','','0','350','1','retail','0','350','1','0','350','0','0','0','0','new',' ','','','0','31685562701','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1756,'7ga5','Mpesa','','2023-05-31 23:03:42','','0','3','2023-05-31 23:03:42','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','7ga5','','','0','31685563421','Cleared','3','2023-05-31 23:07:43','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1757,'manager','Voucher','','2023-05-31 23:12:24','','0','3','2023-05-31 23:12:24','','0','350','1','retail','0','350','1','0','350','0','0','0','0','new',' ','','','0','31685563942','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1758,'manager','Voucher','','2023-05-31 23:13:49','','0','3','2023-05-31 23:13:49','','0','200','1','retail','0','200','1','0','200','0','0','0','0','new',' ','','','0','31685564028','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1759,'cedrick','Voucher','','2023-05-31 23:14:30','','0','3','2023-05-31 23:14:30','','0','200','1','retail','0','200','1','0','200','0','0','0','0','new',' ','','','0','31685564069','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1760,'wvbi','Mpesa','','2023-05-31 23:20:46','','0','3','2023-05-31 23:20:46','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31685564444','Cleared','3','2023-05-31 23:27:42','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1761,'0l4l','Mpesa','','2023-06-01 11:02:31','','0','3','2023-06-01 11:02:31','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','0l4l','','','0','31685606549','Cleared','3','2023-06-01 18:28:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1762,'7501','Mpesa','','2023-06-01 14:06:36','','0','3','2023-06-01 14:06:36','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','31685617594','Cleared','3','2023-06-01 14:38:35','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1763,'1xga','Mpesa','','2023-06-01 14:07:40','','0','3','2023-06-01 14:07:40','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31685617659','Cleared','3','2023-06-01 14:37:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1764,'','Cash','','2023-06-01 14:13:32','','0','3','2023-06-01 14:13:32','','150','150','1','retail','0','150','1','0','0','0','0','0','0','new',' ','','','0','31685618010','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1765,'','Cash','','2023-06-01 14:33:47','','0','3','2023-06-01 14:33:47','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','31685619226','Cleared','3','2023-06-01 14:37:24','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1766,'qo8f','Mpesa','','2023-06-01 14:34:18','','0','3','2023-06-01 14:34:18','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','31685619257','Cleared','3','2023-06-01 14:39:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1767,'','Delivery','','2023-06-01 15:26:45','','0','4','2023-06-01 15:26:45','','0','300','1','retail','0','300','1','0','0','300','0','0','0','printed','ubereats','','','0','41685622404','Cleared','4','2023-06-01 15:27:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1768,'p40j','Mpesa','','2023-06-01 16:15:17','','0','4','2023-06-01 16:15:17','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41685625316','Cleared','4','2023-06-01 16:52:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1769,'p40j','Mpesa','','2023-06-01 16:51:13','','0','4','2023-06-01 16:51:13','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41685627471','Cleared','4','2023-06-01 16:52:59','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1770,'8FML','Mpesa','','2023-06-01 17:02:22','','0','3','2023-06-01 17:02:22','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31685628132','Cleared','3','2023-06-01 18:25:12','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1771,'85mi','Mpesa','','2023-06-01 17:10:07','','0','4','2023-06-01 17:10:07','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41685628605','Cleared','4','2023-06-01 18:04:29','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1772,'G39S','Mpesa','','2023-06-01 17:21:44','','0','3','2023-06-01 17:21:44','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31685629303','Cleared','3','2023-06-01 18:24:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1773,'pgoc','Mpesa','','2023-06-01 17:38:51','','0','4','2023-06-01 17:38:51','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41685630330','Cleared','4','2023-06-01 17:47:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1774,'','Cash','','2023-06-01 18:58:59','','0','4','2023-06-01 18:58:59','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41685635138','Cleared','4','2023-06-01 18:59:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1775,'','Voucher','','2023-06-01 18:59:26','','0','4','2023-06-01 18:59:26','','0','400','1','retail','0','400','1','0','400','0','0','0','0','printed','EVELYNE','','','0','41685635159','Cleared','4','2023-06-01 19:00:21','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1776,'','Cash','','2023-06-01 19:17:43','','0','4','2023-06-01 19:17:43','','280','280','1','retail','0','280','1','0','0','0','0','0','0','printed','','','','0','41685636262','Cleared','4','2023-06-01 21:34:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1777,'','Cash','','2023-06-01 20:04:15','','0','4','2023-06-01 20:04:15','','280','280','1','retail','0','280','1','0','0','0','0','0','0','printed','','','','0','41685639053','Cleared','4','2023-06-01 21:34:40','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1778,'9P7Z','Mpesa','','2023-06-01 21:25:02','','0','4','2023-06-01 21:25:02','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41685643901','Cleared','4','2023-06-01 22:19:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1779,'','Voucher','','2023-06-01 21:31:22','','0','4','2023-06-01 21:31:22','','0','350','1','retail','0','350','1','0','350','0','0','0','0','printed','MANAGER','','','0','41685644281','Cleared','4','2023-06-01 21:35:04','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1780,'','Voucher','','2023-06-01 21:31:50','','0','4','2023-06-01 21:31:50','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','CEDRICK','','','0','41685644308','Cleared','4','2023-06-01 21:35:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1781,'','Voucher','','2023-06-01 21:33:23','','0','4','2023-06-01 21:33:23','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','PURITY','','','0','41685644402','Cleared','4','2023-06-01 21:36:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1782,'','Voucher','','2023-06-01 21:36:37','','0','4','2023-06-01 21:36:37','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','MARTIN','','','0','41685644595','Cleared','4','2023-06-01 21:37:05','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1783,'e217','Mpesa','','2023-06-02 09:10:12','','0','4','2023-06-02 09:10:12','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','41685686208','Cleared','4','2023-06-02 10:38:33','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1784,'rvux','Mpesa','','2023-06-02 10:37:49','','0','4','2023-06-02 10:37:49','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41685691467','Cleared','4','2023-06-02 10:38:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1785,'yjxz','Mpesa','','2023-06-02 15:53:53','','0','3','2023-06-02 15:53:53','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','31685710431','Cleared','3','2023-06-02 19:39:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1786,'arob','Mpesa','','2023-06-02 16:22:03','','0','4','2023-06-02 16:22:03','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41685712121','Cleared','4','2023-06-02 16:41:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1787,'arob','Mpesa','','2023-06-02 16:23:36','','0','3','2023-06-02 16:23:36','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','arob','','','0','31685712215','Cleared','3','2023-06-02 23:08:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1788,'hu30','Mpesa','','2023-06-02 17:49:15','','0','4','2023-06-02 17:49:15','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','hu30','','','0','41685717353','Cleared','3','2023-06-02 23:20:02','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1789,'hu30','Mpesa','','2023-06-02 17:50:24','','0','3','2023-06-02 17:50:24','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','hu30','','','0','31685717423','Cleared','3','2023-06-02 23:09:36','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1790,'','Cash','','2023-06-02 19:28:53','','0','3','2023-06-02 19:28:53','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31685723319','Cleared','3','2023-06-02 19:29:35','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1791,'cilg','Mpesa','','2023-06-02 20:15:42','','0','3','2023-06-02 20:15:42','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31685726141','Cleared','3','2023-06-02 20:29:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1792,'','Cash','','2023-06-02 20:19:39','','0','3','2023-06-02 20:19:39','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed','','','','0','31685726374','Cleared','3','2023-06-02 20:20:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1793,'','Cash','','2023-06-02 20:29:55','','0','4','2023-06-02 20:29:55','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41685726994','Cleared','4','2023-06-02 20:40:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1794,'gh79','Mpesa','','2023-06-02 21:34:22','','0','3','2023-06-02 21:34:22','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31685730861','Cleared','3','2023-06-02 22:57:36','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1795,'','Cash','','2023-06-02 21:53:50','','0','3','2023-06-02 21:53:50','','150','150','1','retail','0','150','1','0','0','0','0','0','0','new',' ','','','0','31685732028','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1796,'e3t2','Mpesa','','2023-06-02 22:56:02','','0','3','2023-06-02 22:56:02','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31685735760','Cleared','3','2023-06-02 22:56:48','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1797,'martin','Voucher','','2023-06-02 23:22:58','','0','3','2023-06-02 23:22:58','','0','560','1','retail','0','560','1','0','560','0','0','0','0','new',' ','','','0','31685737372','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1798,'cedrick','Voucher','','2023-06-02 23:23:43','','0','3','2023-06-02 23:23:43','','0','300','1','retail','0','300','1','0','300','0','0','0','0','new',' ','','','0','31685737422','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1799,'purity','Voucher','','2023-06-02 23:24:23','','0','3','2023-06-02 23:24:23','','0','300','1','retail','0','300','1','0','300','0','0','0','0','new',' ','','','0','31685737462','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1800,'q3lk','Mpesa','','2023-06-03 11:07:36','','0','4','2023-06-03 11:07:36','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41685779654','Cleared','4','2023-06-03 11:08:05','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1801,'76gh','Mpesa','','2023-06-03 11:31:08','','0','4','2023-06-03 11:31:08','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41685781066','Cleared','4','2023-06-03 12:09:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1802,'','Voucher','','2023-06-03 11:53:17','','0','4','2023-06-03 11:53:17','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','george','','','0','41685782396','Cleared','4','2023-06-03 12:10:12','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1803,'h83b---zlwo','Mpesa','','2023-06-03 12:10:48','','0','4','2023-06-03 12:10:48','','0','540','1','retail','0','540','1','0','0','0','0','540','0','printed','','','','0','41685783427','Cleared','4','2023-06-03 13:14:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1804,'','Voucher','','2023-06-03 13:09:13','','0','4','2023-06-03 13:09:13','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','purity','','','0','41685786951','Cleared','4','2023-06-03 16:02:12','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1805,'m7xw','Mpesa','','2023-06-03 15:22:32','','0','4','2023-06-03 15:22:32','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41685794947','Cleared','4','2023-06-03 16:05:47','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1806,'oxn9','Cash','','2023-06-03 15:37:37','','0','3','2023-06-03 15:37:37','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','31685795844','Cleared','3','2023-06-03 19:21:48','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1807,'apgd','Mpesa','','2023-06-03 15:56:18','','0','3','2023-06-03 15:56:18','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','31685796977','Cleared','3','2023-06-03 19:21:10','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1808,'48gu','Mpesa','','2023-06-03 16:00:49','','0','4','2023-06-03 16:00:49','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41685797248','Cleared','4','2023-06-03 18:14:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1809,'','Voucher','','2023-06-03 16:14:46','','0','4','2023-06-03 16:14:46','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','cedd\r\n','','','0','41685798084','Cleared','4','2023-06-03 17:36:48','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1810,'4dhr','Mpesa','','2023-06-03 17:03:17','','0','4','2023-06-03 17:03:17','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41685800996','Cleared','4','2023-06-03 17:37:42','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1811,'4dhr','Mpesa','','2023-06-03 17:05:10','','0','3','2023-06-03 17:05:10','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','31685801109','Cleared','3','2023-06-03 19:20:35','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1812,'oxn9','Mpesa','','2023-06-03 17:06:43','','0','3','2023-06-03 17:06:43','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31685801202','Cleared','3','2023-06-03 19:19:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1813,'','Cash','','2023-06-03 18:13:12','','0','4','2023-06-03 18:13:12','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41685805191','Cleared','4','2023-06-03 18:14:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1814,'','Cash','','2023-06-03 18:24:16','','0','3','2023-06-03 18:24:16','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed','','','','0','31685805851','Cleared','3','2023-06-03 19:10:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1815,'','Cash','','2023-06-03 19:12:57','','0','3','2023-06-03 19:12:57','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed','','','','0','31685808772','Cleared','3','2023-06-03 22:46:59','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1816,'9sml','Mpesa','','2023-06-03 20:12:41','','0','4','2023-06-03 20:12:41','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41685812359','Cleared','3','2023-06-03 20:37:02','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1817,'','Cash','','2023-06-03 20:12:58','','0','4','2023-06-03 20:12:58','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41685812376','Cleared','3','2023-06-03 22:35:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1818,'','Cash','','2023-06-03 20:55:31','','0','3','2023-06-03 20:55:31','','200','200','1','retail','0','200','1','0','0','0','0','0','0','new','','','','0','31685814930','No','3','2023-06-03 23:09:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1819,'wyik','Mpesa','','2023-06-03 21:06:07','','0','3','2023-06-03 21:06:07','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','31685815566','Cleared','3','2023-06-03 22:01:05','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1820,'7u9j','Mpesa','','2023-06-03 22:20:13','','0','3','2023-06-03 22:20:14','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','31685820012','Cleared','3','2023-06-03 22:38:17','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1821,'cedrick','Voucher','','2023-06-03 22:47:46','','0','3','2023-06-03 22:47:46','','0','300','1','retail','0','300','1','0','300','0','0','0','0','new',' ','','','0','31685821665','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1822,'uncle kamande','Voucher','','2023-06-03 22:58:53','','0','3','2023-06-03 22:58:53','','0','280','1','retail','0','280','1','0','280','0','0','0','0','new',' ','','','0','31685822331','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1823,'dad','Voucher','','2023-06-03 23:02:15','','0','3','2023-06-03 23:02:15','','0','280','1','retail','0','280','1','0','280','0','0','0','0','new',' ','','','0','31685822534','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1824,'qvh2','Mpesa','','2023-06-04 14:11:10','','0','3','2023-06-04 14:11:10','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','qvh2','','','0','31685877057','Cleared','3','2023-06-04 18:54:04','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1825,'','Cash','','2023-06-04 14:11:51','','0','3','2023-06-04 14:11:51','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed','','','','0','31685877107','Cleared','3','2023-06-04 19:11:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1826,'','Voucher','','2023-06-04 16:21:07','','0','3','2023-06-04 16:21:07','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','cedd','',NULL,'0','31685884865','Cleared','3','2023-06-04 19:08:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1827,'','Cash','','2023-06-04 16:23:08','','0','4','2023-06-04 16:23:08','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41685884986','Cleared','4','2023-06-04 18:17:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1828,'manager','Voucher','','2023-06-04 17:30:15','','0','4','2023-06-04 17:30:15','','0','280','1','retail','0','280','1','0','280','0','0','0','0','new',' ','','','0','41685889014','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1829,'purity','Voucher','','2023-06-04 17:30:39','','0','4','2023-06-04 17:30:39','','0','300','1','retail','0','300','1','0','300','0','0','0','0','new',' ','','','0','41685889037','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1830,'','Cash','','2023-06-04 18:16:37','','0','4','2023-06-04 18:16:37','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41685891796','Cleared','4','2023-06-04 18:17:33','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1831,'zvlu','Cash','','2023-06-04 18:52:18','','0','3','2023-06-04 18:52:18','','100','150','1','retail','0','150','1','0','0','0','0','50','0','printed','','','','0','31685893936','Cleared','3','2023-06-04 19:07:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1832,'','Voucher','','2023-06-05 09:54:50','','0','4','2023-06-05 09:54:50','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','purity','','','0','41685948089','Cleared','4','2023-06-05 20:14:37','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1833,'','Cash','','2023-06-05 11:07:38','','0','4','2023-06-05 11:07:38','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed','','','','0','41685952456','Cleared','4','2023-06-05 14:25:12','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1834,'','Cash','','2023-06-05 12:28:44','','0','4','2023-06-05 12:28:44','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed','','','','0','41685957323','Cleared','4','2023-06-05 14:25:24','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1835,'','Voucher','','2023-06-05 14:56:25','','0','4','2023-06-05 14:56:25','','0','480','1','retail','0','480','1','0','480','0','0','0','0','printed','dad','','','0','41685966170','Cleared','4','2023-06-05 14:56:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1836,'','Voucher','','2023-06-05 15:04:46','','0','4','2023-06-05 15:04:46','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','mzae','','','0','41685966684','Cleared','4','2023-06-05 15:05:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1837,'','Cash','','2023-06-05 15:23:03','','0','4','2023-06-05 15:23:03','','200','200','1','retail','0','200','1','0','0','0','0','0','0','new',' ','','','0','41685967782','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1838,'93ld','Mpesa','','2023-06-05 18:04:50','','0','4','2023-06-05 18:04:50','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41685977489','Cleared','4','2023-06-05 18:06:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1839,'','Cash','','2023-06-05 18:15:58','','0','4','2023-06-05 18:15:58','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41685978157','Cleared','4','2023-06-05 18:16:16','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1840,'opip','Mpesa','','2023-06-05 20:14:00','','0','4','2023-06-05 20:14:00','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41685985239','Cleared','4','2023-06-05 21:27:27','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1841,'','Delivery','','2023-06-06 10:08:08','','0','4','2023-06-06 10:08:08','','0','960','1','retail','0','960','1','0','0','960','0','0','0','printed','ubereats','','','0','41686035258','Cleared','4','2023-06-06 10:08:48','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1842,'rirn','Mpesa','','2023-06-06 14:00:02','','0','4','2023-06-06 14:00:02','','0','1000','1','retail','0','1000','1','0','0','0','0','1000','0','printed','','','','0','41686049183','Cleared','4','2023-06-06 14:01:27','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1843,'','Cash','','2023-06-06 14:15:03','','0','4','2023-06-06 14:15:03','','30','30','1','retail','0','30','1','0','0','0','0','0','0','printed','','','','0','41686050101','Cleared','4','2023-06-06 17:27:59','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1844,'','Cash','','2023-06-06 17:06:06','','0','3','2023-06-06 17:06:06','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','31686060365','Cleared','3','2023-06-06 22:48:34','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1845,'xsew','Mpesa','','2023-06-06 17:06:20','','0','3','2023-06-06 17:06:20','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31686060379','Cleared','3','2023-06-06 18:48:17','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1846,'v6av','Mpesa','','2023-06-06 17:26:56','','0','4','2023-06-06 17:26:56','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41686061614','Cleared','4','2023-06-06 17:27:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1847,'','Cash','','2023-06-06 18:45:31','','0','3','2023-06-06 18:45:31','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31686066330','Cleared','3','2023-06-06 18:45:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1848,'5hxk','Mpesa','','2023-06-06 21:57:44','','0','3','2023-06-06 19:52:26','','300','630','1','retail','0','630','1','0','0','0','0','330','0','printed','','','','0','31686070345','Cleared','3','2023-06-06 22:33:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1849,'frfl','Mpesa','','2023-06-06 19:54:18','','0','3','2023-06-06 19:54:18','','0','30','1','retail','0','30','1','0','0','0','0','30','0','printed','frfl','','','0','31686070456','Cleared','3','2023-06-06 22:32:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1850,'h123','Mpesa','','2023-06-06 21:45:17','','0','3','2023-06-06 21:45:17','','0','380','1','retail','0','380','1','0','0','0','0','380','0','printed','','','','0','31686077112','Cleared','3','2023-06-06 22:34:00','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1851,'owzk','Mpesa','','2023-06-06 21:57:10','','0','3','2023-06-06 21:57:10','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','31686077829','Cleared','3','2023-06-06 22:35:05','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1852,'manager','Voucher','','2023-06-06 22:35:31','','0','3','2023-06-06 22:35:31','','0','280','1','retail','0','280','1','0','280','0','0','0','0','new',' ','','','0','31686080130','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1853,'cedrick','Voucher','','2023-06-06 22:36:08','','0','3','2023-06-06 22:36:08','','0','300','1','retail','0','300','1','0','300','0','0','0','0','new',' ','','','0','31686080167','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1854,'','Cash','','2023-06-07 11:00:06','','0','3','2023-06-07 11:00:06','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','31686122205','Cleared','3','2023-06-07 11:23:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1855,'ro97','Mpesa','','2023-06-07 11:07:47','','0','3','2023-06-07 11:07:47','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31686125265','Cleared','3','2023-06-07 11:27:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1856,'88ip','Mpesa','','2023-06-07 11:22:18','','0','3','2023-06-07 11:22:18','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','31686126137','Cleared','3','2023-06-07 19:26:17','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1857,'','Cash','','2023-06-07 11:22:52','','0','3','2023-06-07 11:22:52','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31686126171','Cleared','3','2023-06-07 11:26:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1858,'','Cash','','2023-06-07 11:25:16','','0','3','2023-06-07 11:25:16','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','31686126315','Cleared','3','2023-06-07 11:25:38','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1859,'','Cash','','2023-06-07 11:26:04','','0','3','2023-06-07 11:26:04','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','31686126362','Cleared','3','2023-06-07 11:26:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1860,'','Cash','','2023-06-07 15:54:10','','0','3','2023-06-07 15:54:10','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed','','','','0','31686142449','Cleared','3','2023-06-07 15:54:29','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1861,'zwep','Mpesa','','2023-06-07 15:54:49','','0','3','2023-06-07 15:54:49','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','31686142488','Cleared','3','2023-06-07 16:03:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1862,'','Cash','','2023-06-07 16:50:07','','0','3','2023-06-07 16:28:07','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed','','','','0','31686144485','Cleared','3','2023-06-07 18:57:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1863,'','Cash','','2023-06-07 17:31:35','','0','3','2023-06-07 17:31:35','','280','280','1','retail','0','280','1','0','0','0','0','0','0','printed','','','','0','31686148272','Cleared','3','2023-06-07 19:22:12','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1864,'','Cash','','2023-06-07 17:36:12','','0','3','2023-06-07 17:36:12','','280','280','1','retail','0','280','1','0','0','0','0','0','0','printed','','','','0','31686148571','Cleared','3','2023-06-07 19:21:59','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1865,'t4eh','Mpesa','','2023-06-07 18:24:27','','0','3','2023-06-07 18:24:27','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','31686151465','Cleared','3','2023-06-07 19:09:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1866,'','Cash','','2023-06-07 18:43:58','','0','3','2023-06-07 18:43:58','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed','','','','0','31686152636','Cleared','3','2023-06-07 19:08:00','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1867,'','Cash','','2023-06-07 19:27:56','','0','3','2023-06-07 19:27:56','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31686155275','Cleared','3','2023-06-07 19:28:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1868,'7sho','Mpesa','','2023-06-07 20:21:47','','0','3','2023-06-07 20:21:47','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','7sho','','','0','31686158505','Cleared','3','2023-06-07 21:45:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1869,'lo34','Mpesa','','2023-06-07 21:39:32','','0','3','2023-06-07 21:39:32','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','lo34','','','0','31686163171','Cleared','3','2023-06-07 21:45:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1870,'bsgp','Mpesa','','2023-06-07 21:50:36','','0','3','2023-06-07 21:50:36','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','31686163834','Cleared','3','2023-06-07 22:12:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1871,'','Cash','','2023-06-07 22:10:15','','0','3','2023-06-07 22:10:15','','20','20','1','retail','0','20','1','0','0','0','0','0','0','printed','','','','0','31686165014','Cleared','3','2023-06-07 22:12:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1872,'manager','Voucher','','2023-06-07 22:33:57','','0','3','2023-06-07 22:33:57','','0','280','1','retail','0','280','1','0','280','0','0','0','0','new',' ','','','0','31686166435','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1873,'george','Voucher','','2023-06-07 22:34:25','','0','3','2023-06-07 22:34:25','','0','200','1','retail','0','200','1','0','200','0','0','0','0','new',' ','','','0','31686166463','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1874,'cedrick','Voucher','','2023-06-07 22:34:48','','0','3','2023-06-07 22:34:48','','0','300','1','retail','0','300','1','0','300','0','0','0','0','new',' ','','','0','31686166486','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1875,'','Cash','','2023-06-08 14:25:33','','0','3','2023-06-08 14:25:33','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31686223532','Cleared','3','2023-06-08 21:12:02','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1876,'uncle kamande','Voucher','','2023-06-08 14:26:44','','0','3','2023-06-08 14:26:44','','0','280','1','retail','0','280','1','0','280','0','0','0','0','new',' ','','','0','31686223597','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1877,'8etr','Mpesa','','2023-06-08 15:47:23','','0','4','2023-06-08 15:47:23','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41686228441','Cleared','4','2023-06-08 15:53:40','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1878,'h9jd','Mpesa','','2023-06-08 17:21:03','','0','4','2023-06-08 17:21:03','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41686234061','Cleared','4','2023-06-08 18:53:16','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1879,'','Cash','','2023-06-08 18:14:10','','0','3','2023-06-08 18:14:10','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','31686237249','Cleared','3','2023-06-08 18:38:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1880,'jyb8','Mpesa','','2023-06-08 18:16:18','','0','3','2023-06-08 18:16:18','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31686237377','Cleared','4','2023-06-08 19:40:11','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1881,'','Voucher','','2023-06-08 18:39:20','','0','3','2023-06-08 18:39:21','','0','480','1','retail','0','480','1','0','480','0','0','0','0','printed','dad','','','0','31686238741','Cleared','3','2023-06-08 18:40:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1882,'cedrick','Voucher','','2023-06-08 18:40:19','','0','3','2023-06-08 18:40:19','','0','300','1','retail','0','300','1','0','300','0','0','0','0','new',' ','','','0','31686238818','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1883,'dad','Voucher','','2023-06-08 18:41:32','','0','3','2023-06-08 18:41:32','','0','600','1','retail','0','600','1','0','600','0','0','0','0','printed','dad\r\neve\r\nuncle kamande','','','0','31686238883','Cleared','3','2023-06-08 18:42:56','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1884,'purity','Voucher','','2023-06-08 18:43:11','','0','3','2023-06-08 18:43:11','','0','280','1','retail','0','280','1','0','280','0','0','0','0','new',' ','','','0','31686238990','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1885,'','Cash','','2023-06-08 18:45:13','','0','4','2023-06-08 18:45:13','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41686239111','Cleared','4','2023-06-08 18:46:11','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1886,'rlj2','Mpesa','','2023-06-08 18:45:25','','0','4','2023-06-08 18:45:25','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41686239124','Cleared','4','2023-06-08 19:19:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1887,'f12k','Mpesa','','2023-06-08 19:36:07','','0','4','2023-06-08 19:36:07','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41686242165','Cleared','4','2023-06-08 20:27:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1888,'','Voucher','','2023-06-08 20:26:33','','0','4','2023-06-08 20:26:33','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','manager','','','0','41686245191','Cleared','4','2023-06-08 20:29:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1889,'','Voucher','','2023-06-08 21:09:14','','0','4','2023-06-08 21:09:14','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','purity','','','0','41686247753','Cleared','4','2023-06-08 22:04:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1890,'','Cash','','2023-06-08 21:09:30','','0','4','2023-06-08 21:09:30','','280','280','1','retail','0','280','1','0','0','0','0','0','0','printed','','','','0','41686247768','Cleared','4','2023-06-08 21:31:33','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1891,'','Cash','','2023-06-08 21:10:03','','0','3','2023-06-08 21:10:03','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed','','','','0','31686247798','Cleared','3','2023-06-08 21:11:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1892,'','Voucher','','2023-06-08 22:03:52','','0','4','2023-06-08 22:03:52','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','martin','','','0','41686251030','Cleared','4','2023-06-08 22:04:27','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1893,'','Voucher','','2023-06-08 22:05:45','','0','4','2023-06-08 22:05:45','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','cedrick','','','0','41686251143','Cleared','4','2023-06-08 22:06:16','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1894,'kpow','Mpesa','','2023-06-09 10:04:31','','0','4','2023-06-09 10:04:31','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41686294269','Cleared','4','2023-06-09 14:19:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1895,'yuwj','Mpesa','','2023-06-09 18:40:42','','0','4','2023-06-09 18:40:42','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41686325240','Cleared','3','2023-06-09 21:52:45','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1896,'u89k','Mpesa','','2023-06-09 18:42:02','','0','4','2023-06-09 18:42:02','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','u89k','','','0','41686325321','Cleared','3','2023-06-09 21:53:56','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1897,'5q3q','Mpesa','','2023-06-09 20:52:11','','0','3','2023-06-09 18:42:51','','0','700','1','retail','0','700','1','0','0','0','0','700','0','printed','','','','0','31686325369','Cleared','3','2023-06-09 20:59:39','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1898,'','Cash','','2023-06-09 20:12:37','','0','3','2023-06-09 20:12:37','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed','','','','0','31686330748','Cleared','3','2023-06-09 22:42:48','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1899,'','Cash','','2023-06-09 20:13:20','','0','3','2023-06-09 20:13:20','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31686330799','Cleared','3','2023-06-09 21:54:43','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1900,'uy6i','Cash','','2023-06-09 21:30:27','','0','3','2023-06-09 21:26:55','','350','700','1','retail','0','700','1','0','0','0','0','350','0','printed','','','','0','31686335214','Cleared','3','2023-06-09 21:55:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1901,'nbju','Mpesa','','2023-06-09 22:14:51','','0','3','2023-06-09 22:14:51','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31686338090','Cleared','3','2023-06-09 23:00:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1902,'9r3b','Mpesa','','2023-06-10 18:44:46','','0','4','2023-06-10 18:44:46','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','9r3b','','','0','41686411885','Cleared','3','2023-06-10 21:53:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1903,'4sfs','Mpesa','','2023-06-10 21:03:19','','0','4','2023-06-10 21:03:19','','0','400','1','retail','0','400','1','0','0','0','0','400','0','new','4sfs','','','0','41686420193','No','3','2023-06-10 22:28:43','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1904,'bcpv','Mpesa','','2023-06-10 21:05:38','','0','4','2023-06-10 21:05:38','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41686420337','Cleared','3','2023-06-10 21:53:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1905,'jh3e','Mpesa','','2023-06-10 21:06:57','','0','3','2023-06-10 21:06:57','','0','450','1','retail','0','450','1','0','0','0','0','450','0','printed','','','','0','31686420376','Cleared','3','2023-06-10 22:52:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1906,'wonm','Mpesa','','2023-06-10 21:16:56','','0','3','2023-06-10 21:16:56','','0','530','1','retail','0','530','1','0','0','0','0','530','0','printed','','','','0','31686421011','Cleared','3','2023-06-10 21:36:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1907,'ks2g','Mpesa','','2023-06-10 21:17:40','','0','3','2023-06-10 21:17:40','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','31686421059','Cleared','3','2023-06-10 23:30:12','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1908,'ks2g','Mpesa','','2023-06-10 21:18:19','','0','3','2023-06-10 21:18:19','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','31686421097','Cleared','3','2023-06-10 23:31:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1909,'','Cash','','2023-06-10 21:18:52','','0','3','2023-06-10 21:18:52','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31686421130','Cleared','3','2023-06-10 23:09:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1910,'2myt','Mpesa','','2023-06-10 21:33:20','','0','3','2023-06-10 21:33:20','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31686421998','Cleared','3','2023-06-10 21:37:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1911,'mqsp','Mpesa','','2023-06-10 22:32:06','','0','3','2023-06-10 22:32:06','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31686425524','Cleared','3','2023-06-10 22:51:08','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1912,'purity','Voucher','','2023-06-10 23:10:02','','0','3','2023-06-10 23:10:02','','0','280','1','retail','0','280','1','0','280','0','0','0','0','new',' ','','','0','31686427800','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1913,'martin','Voucher','','2023-06-10 23:10:35','','0','3','2023-06-10 23:10:35','','0','560','1','retail','0','560','1','0','560','0','0','0','0','new',' ','','','0','31686427825','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1914,'manager','Voucher','','2023-06-10 23:12:11','','0','3','2023-06-10 23:12:11','','0','280','1','retail','0','280','1','0','280','0','0','0','0','new',' ','','','0','31686427929','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1915,'cedrick','Voucher','','2023-06-10 23:12:29','','0','3','2023-06-10 23:12:29','','0','200','1','retail','0','200','1','0','200','0','0','0','0','new',' ','','','0','31686427947','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1916,'gkab','Mpesa','','2023-06-11 11:52:17','','0','3','2023-06-11 11:52:17','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','s8ln','','','0','31686473535','Cleared','3','2023-06-11 12:18:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1917,'s8ln','Mpesa','','2023-06-11 12:05:58','','0','3','2023-06-11 12:05:58','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','s8ln','','','0','31686474356','Cleared','3','2023-06-11 12:07:21','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1918,'george','Voucher','','2023-06-11 12:06:15','','0','3','2023-06-11 12:06:15','','0','200','1','retail','0','200','1','0','200','0','0','0','0','new',' ','','','0','31686474373','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1919,'lydp','Mpesa','','2023-06-11 12:07:40','','0','3','2023-06-11 12:07:40','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31686474459','Cleared','3','2023-06-11 12:08:08','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1920,'','Cash','','2023-06-11 12:08:43','','0','3','2023-06-11 12:08:43','','150','150','1','retail','0','150','1','0','0','0','0','0','0','new',' ','','','0','31686474522','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1921,'','Cash','','2023-06-11 13:35:07','','0','3','2023-06-11 13:35:07','','150','150','1','retail','0','150','1','0','0','0','0','0','0','new',' ','','','0','31686479706','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1922,'iej6','Mpesa','','2023-06-11 14:13:32','','0','3','2023-06-11 14:13:32','','0','600','1','retail','0','600','1','0','0','0','0','600','0','printed','','','','0','31686482006','Cleared','3','2023-06-11 14:46:24','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1923,'','Cash','','2023-06-11 14:14:14','','0','3','2023-06-11 14:14:14','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31686482053','Cleared','3','2023-06-11 18:37:47','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1924,'4b2b','Mpesa','','2023-06-11 16:18:56','','0','4','2023-06-11 16:18:56','','0','100','1','retail','0','100','1','0','0','0','0','100','0','printed','','','','0','41686489535','Cleared','4','2023-06-11 16:28:48','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1925,'manager','Voucher','','2023-06-11 17:15:14','','0','3','2023-06-11 17:15:14','','0','280','1','retail','0','280','1','0','280','0','0','0','0','new',' ','','','0','31686492912','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1926,'','Voucher','','2023-06-11 17:22:28','','0','4','2023-06-11 17:22:28','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','mzae','','','0','41686493347','Cleared','4','2023-06-11 17:22:57','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1927,'','Voucher','','2023-06-11 17:23:06','','0','4','2023-06-11 17:23:06','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','cedric','','','0','41686493385','Cleared','4','2023-06-11 19:36:05','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1928,'','Cash','','2023-06-11 17:57:38','','0','3','2023-06-11 17:57:38','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed','','','','0','31686495451','Cleared','3','2023-06-11 18:40:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1929,'','Cash','','2023-06-11 18:25:46','','0','3','2023-06-11 18:25:46','','400','400','1','retail','0','400','1','0','0','0','0','0','0','new',' ','','','0','31686497142','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1930,'','Cash','','2023-06-11 19:05:00','','0','4','2023-06-11 19:05:00','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed','','','','0','41686499499','Cleared','4','2023-06-11 19:52:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1931,'yual','Mpesa','','2023-06-11 19:33:19','','0','4','2023-06-11 19:33:19','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','41686501198','Cleared','4','2023-06-11 19:34:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1932,'','Voucher','','2023-06-11 19:35:29','','0','4','2023-06-11 19:35:29','','0','600','1','retail','0','600','1','0','600','0','0','0','0','printed','martin','','','0','41686501312','Cleared','4','2023-06-11 19:36:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1933,'6nh9','Mpesa','','2023-06-11 21:20:10','','0','4','2023-06-11 21:20:10','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41686507609','Cleared','4','2023-06-11 21:20:39','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1934,'8fzt','Mpesa','','2023-06-11 22:18:46','','0','4','2023-06-11 22:18:46','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41686511125','Cleared','4','2023-06-11 22:48:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1935,'osgm','Mpesa','','2023-06-11 22:44:33','','0','4','2023-06-11 22:44:33','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41686512671','Cleared','4','2023-06-11 22:45:49','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1936,'rosk','Mpesa','','2023-06-12 10:26:53','','0','4','2023-06-12 10:26:53','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41686554811','Cleared','4','2023-06-12 11:36:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1937,'rosk','Mpesa','','2023-06-12 10:33:00','','0','4','2023-06-12 10:33:00','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41686555178','Cleared','4','2023-06-12 11:37:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1938,'08re','Mpesa','','2023-06-12 10:42:59','','0','4','2023-06-12 10:42:59','','0','480','1','retail','0','480','1','0','0','0','0','480','0','printed','','','','0','41686555769','Cleared','4','2023-06-12 10:43:35','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1939,'','Cash','','2023-06-12 11:15:29','','0','4','2023-06-12 11:15:29','','430','430','1','retail','0','430','1','0','0','0','0','0','0','printed','','','','0','41686557719','Cleared','4','2023-06-12 13:07:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1940,'agty','Mpesa','','2023-06-12 12:09:18','','0','4','2023-06-12 12:09:18','','0','750','1','retail','0','750','1','0','0','0','0','750','0','printed','','','','0','41686560941','Cleared','4','2023-06-12 13:03:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1941,'rjmx','Mpesa','','2023-06-12 14:09:59','','0','4','2023-06-12 14:10:00','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','41686568198','Cleared','4','2023-06-12 15:01:07','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1942,'','Voucher','','2023-06-12 14:21:49','','0','4','2023-06-12 14:21:49','','0','150','1','retail','0','150','1','0','150','0','0','0','0','printed','george','','','0','41686568907','Cleared','4','2023-06-12 15:49:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1943,'','Cash','','2023-06-12 14:31:02','','0','4','2023-06-12 14:31:02','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41686569461','Cleared','4','2023-06-12 14:51:32','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1944,'','Cash','','2023-06-12 15:50:01','','0','4','2023-06-12 15:50:01','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41686574199','Cleared','4','2023-06-12 20:08:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1945,'mowr','Mpesa','','2023-06-12 16:16:36','','0','4','2023-06-12 16:16:36','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41686575794','Cleared','4','2023-06-12 16:17:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1946,'','Cash','','2023-06-12 17:15:22','','0','4','2023-06-12 17:15:22','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41686579320','Cleared','4','2023-06-12 20:08:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1947,'','Cash','','2023-06-12 18:38:33','','0','4','2023-06-12 18:38:33','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed','','','','0','41686584305','Cleared','4','2023-06-12 19:48:43','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1948,'9vly','Mpesa','','2023-06-12 18:38:49','','0','4','2023-06-12 18:38:49','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41686584328','Cleared','4','2023-06-12 19:02:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1949,'9vly','Mpesa','','2023-06-12 18:39:36','','0','4','2023-06-12 18:39:36','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','41686584375','Cleared','4','2023-06-12 19:03:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1950,'','Voucher','','2023-06-12 19:15:13','','0','4','2023-06-12 19:15:13','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','purity','','','0','41686586512','Cleared','4','2023-06-12 20:09:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1951,'oszs','Mpesa','','2023-06-12 20:09:28','','0','4','2023-06-12 20:09:28','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41686589766','Cleared','4','2023-06-12 20:25:43','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1952,'81eb','Mpesa','','2023-06-12 21:07:27','','0','4','2023-06-12 21:07:27','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41686593246','Cleared','4','2023-06-12 21:46:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1953,'npad','Mpesa','','2023-06-13 11:26:24','','0','4','2023-06-13 11:26:24','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41686644783','Cleared','4','2023-06-13 12:21:45','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1954,'iqj5','Mpesa','','2023-06-13 11:33:32','','0','4','2023-06-13 11:33:32','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41686645211','Cleared','4','2023-06-13 11:37:59','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1955,'cuav','Mpesa','','2023-06-13 11:52:47','','0','4','2023-06-13 11:52:47','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41686646366','Cleared','4','2023-06-13 12:18:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1956,'cuav','Mpesa','','2023-06-13 11:53:00','','0','4','2023-06-13 11:53:00','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41686646378','Cleared','4','2023-06-13 12:18:59','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1957,'','Voucher','','2023-06-13 12:48:13','','0','4','2023-06-13 12:48:13','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','mzae','','','0','41686649691','Cleared','4','2023-06-13 12:48:36','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1958,'','Voucher','','2023-06-13 13:29:09','','0','4','2023-06-13 13:29:09','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','mzae','','','0','41686652147','Cleared','4','2023-06-13 13:29:48','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1959,'832x','Mpesa','','2023-06-13 14:29:24','','0','4','2023-06-13 14:29:24','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41686655762','Cleared','4','2023-06-13 14:51:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1960,'','Cash','','2023-06-13 15:37:16','','0','4','2023-06-13 15:37:16','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41686659835','Cleared','4','2023-06-13 15:37:39','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1961,'','Cash','','2023-06-13 15:59:59','','0','4','2023-06-13 15:59:59','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed','','','','0','41686661198','Cleared','4','2023-06-13 16:06:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1962,'vo1a','Mpesa','','2023-06-13 17:23:17','','0','4','2023-06-13 17:23:17','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41686666195','Cleared','4','2023-06-13 17:35:33','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1963,'','Cash','','2023-06-13 17:27:34','','0','3','2023-06-13 17:26:28','','450','450','1','retail','0','450','1','0','0','0','0','0','0','printed','','','','0','31686666386','Cleared','3','2023-06-13 18:19:38','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1964,'wm4g','Mpesa','','2023-06-13 18:10:49','','0','4','2023-06-13 18:10:49','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41686669047','Cleared','3','2023-06-13 22:58:02','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1965,'','Cash','','2023-06-13 18:20:05','','0','3','2023-06-13 18:20:05','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31686669604','Cleared','3','2023-06-13 19:03:49','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1966,'','Voucher','','2023-06-13 18:27:38','','0','3','2023-06-13 18:27:38','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','purity','','','0','31686670057','Cleared','3','2023-06-13 19:32:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1967,'qjwj','Mpesa','','2023-06-13 18:53:44','','0','3','2023-06-13 18:52:32','','0','730','1','retail','0','730','1','0','0','0','0','730','0','printed','','','','0','31686671550','Cleared','3','2023-06-13 19:48:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1968,'fatn','Mpesa','','2023-06-13 18:56:11','','0','4','2023-06-13 18:56:11','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41686671769','Cleared','3','2023-06-13 19:31:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1969,'','Cash','','2023-06-13 18:56:27','','0','4','2023-06-13 18:56:27','','280','280','1','retail','0','280','1','0','0','0','0','0','0','printed','','','','0','41686671786','Cleared','3','2023-06-13 19:30:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1970,'','Cash','','2023-06-13 22:43:04','','0','3','2023-06-13 22:43:04','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed','','','','0','31686685378','Cleared','3','2023-06-13 22:56:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1971,'','Cash','','2023-06-14 11:12:53','','0','3','2023-06-14 11:12:53','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','31686730371','Cleared','3','2023-06-14 16:23:02','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1972,'3e9p','Mpesa','','2023-06-14 11:13:06','','0','3','2023-06-14 11:13:06','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31686730385','Cleared','3','2023-06-14 16:25:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1973,'','Cash','','2023-06-14 11:13:25','','0','3','2023-06-14 11:13:25','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31686730403','Cleared','3','2023-06-14 18:28:29','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1974,'manager','Voucher','','2023-06-14 11:13:40','','0','3','2023-06-14 11:13:40','','0','200','1','retail','0','200','1','0','200','0','0','0','0','new',' ','','','0','31686730418','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1975,'george','Voucher','','2023-06-14 11:13:57','','0','3','2023-06-14 11:13:57','','0','200','1','retail','0','200','1','0','200','0','0','0','0','new',' ','','','0','31686730436','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1976,'4wrw','Mpesa','','2023-06-14 12:32:09','','0','3','2023-06-14 12:32:09','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','31686735127','Cleared','3','2023-06-14 16:27:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1977,'bbav','Mpesa','','2023-06-14 12:46:35','','0','3','2023-06-14 12:46:35','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','31686735987','Cleared','3','2023-06-14 21:28:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1978,'y9z3','Mpesa','','2023-06-14 14:06:18','','0','3','2023-06-14 14:06:18','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','31686740776','Cleared','3','2023-06-14 22:29:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1979,'y9z3','Mpesa','','2023-06-14 14:06:56','','0','3','2023-06-14 14:06:56','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','31686740814','Cleared','3','2023-06-14 22:30:32','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1980,'e79s','Mpesa','','2023-06-14 16:28:29','','0','3','2023-06-14 16:28:29','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','31686749308','Cleared','3','2023-06-14 21:57:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1981,'17jy','Mpesa','','2023-06-14 16:32:08','','0','3','2023-06-14 16:32:08','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','31686749526','Cleared','3','2023-06-14 18:55:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1982,'p09e','Mpesa','','2023-06-14 17:26:49','','0','3','2023-06-14 17:15:23','','0','560','1','retail','0','560','1','0','0','0','0','560','0','printed','','','','0','31686752122','Cleared','3','2023-06-14 18:56:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1983,'17jy','Mpesa','','2023-06-14 17:15:45','','0','3','2023-06-14 17:15:45','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31686752143','Cleared','3','2023-06-14 18:54:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1984,'bcb1','Mpesa','','2023-06-14 17:46:53','','0','3','2023-06-14 17:46:53','','0','760','1','retail','0','760','1','0','0','0','0','760','0','printed','','','','0','31686754001','Cleared','3','2023-06-14 18:56:07','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1985,'17jy','Mpesa','','2023-06-14 18:22:57','','0','3','2023-06-14 18:22:57','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31686756176','Cleared','3','2023-06-14 18:54:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1986,'','Cash','','2023-06-14 18:29:06','','0','3','2023-06-14 18:29:06','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31686756544','Cleared','3','2023-06-14 18:29:34','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1987,'d1if','Mpesa','','2023-06-14 19:23:26','','0','3','2023-06-14 19:23:26','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','d1if','','','0','31686759805','Cleared','3','2023-06-14 22:31:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1988,'so94','Mpesa','','2023-06-14 20:13:00','','0','3','2023-06-14 20:13:00','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31686762779','Cleared','3','2023-06-14 21:34:59','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1989,'uyul','Mpesa','','2023-06-14 21:16:34','','0','3','2023-06-14 21:16:34','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','31686766576','Cleared','3','2023-06-14 21:24:37','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1990,'oksb','Mpesa','','2023-06-14 21:18:50','','0','3','2023-06-14 21:18:50','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','31686766729','Cleared','3','2023-06-14 21:19:27','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1991,'','Cash','','2023-06-14 21:30:12','','0','3','2023-06-14 21:30:12','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed','','','','0','31686767398','Cleared','3','2023-06-14 21:56:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1992,'cedrick','Voucher','','2023-06-14 22:06:41','','0','3','2023-06-14 22:06:41','','0','300','1','retail','0','300','1','0','300','0','0','0','0','new',' ','','','0','31686769599','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1993,'martin','Voucher','','2023-06-14 22:07:19','','0','3','2023-06-14 22:07:19','','0','280','1','retail','0','280','1','0','280','0','0','0','0','new',' ','','','0','31686769638','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1994,'atly','Mpesa','','2023-06-15 14:45:23','','0','3','2023-06-15 14:45:23','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','31686829521','Cleared','3','2023-06-15 14:52:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1995,'7f05','Mpesa','','2023-06-15 14:45:47','','0','3','2023-06-15 14:45:47','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','7f05','','','0','31686829545','Cleared','3','2023-06-15 22:34:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1996,'','Cash','','2023-06-15 14:45:58','','0','3','2023-06-15 14:45:58','','150','150','1','retail','0','150','1','0','0','0','0','0','0','new',' ','','','0','31686829556','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1997,'53md','Mpesa','','2023-06-15 14:47:36','','0','3','2023-06-15 14:47:36','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','31686829655','Cleared','3','2023-06-15 17:09:12','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1998,'','Voucher','','2023-06-15 14:49:01','','0','3','2023-06-15 14:49:01','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','mzae','','','0','31686829739','Cleared','3','2023-06-15 17:18:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(1999,'','Cash','','2023-06-15 14:49:14','','0','3','2023-06-15 14:49:14','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed','','','','0','31686829750','Cleared','3','2023-06-15 16:46:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2000,'qy8g','Mpesa','','2023-06-15 14:49:29','','0','3','2023-06-15 14:49:29','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','qy8g','','','0','31686829767','Cleared','3','2023-06-15 22:34:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2001,'d2bx','Mpesa','','2023-06-15 14:52:54','','0','3','2023-06-15 14:52:54','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','d2bx','','','0','31686829972','Cleared','3','2023-06-15 22:35:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2002,'pdu3','Mpesa','','2023-06-15 15:13:36','','0','4','2023-06-15 15:13:36','','0','700','1','retail','0','700','1','0','0','0','0','700','0','printed','','','','0','41686831210','Cleared','4','2023-06-15 15:57:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2003,'wrik','Mpesa','','2023-06-15 15:29:48','','0','4','2023-06-15 15:29:48','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','',NULL,'0','41686832187','Cleared','4','2023-06-15 15:58:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2004,'','Cash','','2023-06-15 15:30:01','','0','4','2023-06-15 15:30:01','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41686832199','Cleared','4','2023-06-15 15:30:56','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2005,'axb6','Mpesa','','2023-06-15 17:01:29','','0','4','2023-06-15 17:01:29','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','41686837680','Cleared','4','2023-06-15 17:33:40','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2006,'d6vw','Mpesa','','2023-06-15 17:06:33','','0','3','2023-06-15 17:06:33','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','31686837991','Cleared','3','2023-06-15 17:07:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2007,'','Cash','','2023-06-15 19:28:53','','0','4','2023-06-15 17:30:17','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed','','','','0','41686839416','Cleared','4','2023-06-15 19:41:59','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2008,'mxyv','Mpesa','','2023-06-15 17:30:48','','0','4','2023-06-15 17:30:48','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41686839447','Cleared','4','2023-06-15 18:07:10','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2009,'pg70','Mpesa','','2023-06-15 17:40:55','','0','3','2023-06-15 17:40:55','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31686840053','Cleared','4','2023-06-15 21:23:43','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2010,'dad','Voucher','','2023-06-15 17:42:47','','0','3','2023-06-15 17:42:47','','0','300','1','retail','0','300','1','0','300','0','0','0','0','new',' ','','','0','31686840166','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2011,'uncle kamande','Voucher','','2023-06-15 17:43:10','','0','3','2023-06-15 17:43:10','','0','280','1','retail','0','280','1','0','280','0','0','0','0','new',' ','','','0','31686840189','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2012,'george','Voucher','','2023-06-15 17:43:43','','0','3','2023-06-15 17:43:43','','0','200','1','retail','0','200','1','0','200','0','0','0','0','new',' ','','','0','31686840221','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2013,'','Voucher','','2023-06-15 17:44:31','','0','3','2023-06-15 17:44:31','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','cedrick','','','0','31686840269','Cleared','3','2023-06-15 17:45:07','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2014,'pg70','Mpesa','','2023-06-15 19:11:32','','0','4','2023-06-15 19:11:32','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41686845491','Cleared','4','2023-06-15 21:23:08','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2015,'y3io','Mpesa','','2023-06-15 19:37:15','','0','4','2023-06-15 19:37:15','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41686847033','Cleared','4','2023-06-15 19:38:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2016,'','Voucher','','2023-06-15 21:09:10','','0','4','2023-06-15 21:09:10','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','cedrick','','','0','41686852548','Cleared','4','2023-06-15 22:12:45','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2017,'5mlt','Mpesa','','2023-06-15 21:10:22','','0','4','2023-06-15 21:10:22','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41686852620','Cleared','4','2023-06-15 22:14:34','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2018,'','Voucher','','2023-06-15 22:09:03','','0','4','2023-06-15 22:09:03','','0','350','1','retail','0','350','1','0','350','0','0','0','0','printed','dad','','','0','41686856142','Cleared','4','2023-06-15 22:14:56','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2019,'','Voucher','','2023-06-15 22:09:29','','0','4','2023-06-15 22:09:29','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','martin','','','0','41686856164','Cleared','4','2023-06-15 22:15:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2020,'','Voucher','','2023-06-16 11:45:33','','0','4','2023-06-16 11:45:33','','0','560','1','retail','0','560','1','0','560','0','0','0','0','printed','dad','','','0','41686905120','Cleared','4','2023-06-16 13:01:47','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2021,'l6qp','Mpesa','','2023-06-16 11:48:08','','0','4','2023-06-16 11:48:08','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41686905287','Cleared','3','2023-06-16 23:04:23','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2022,'','Cash','','2023-06-16 12:01:13','','0','4','2023-06-16 12:01:13','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41686906071','Cleared','4','2023-06-16 17:35:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2023,'bcja','Mpesa','','2023-06-16 12:22:52','','0','4','2023-06-16 12:22:52','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41686907371','Cleared','4','2023-06-16 12:23:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2024,'','Cash','','2023-06-16 13:00:47','','0','4','2023-06-16 13:00:47','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed','','','','0','41686909641','Cleared','4','2023-06-16 17:20:29','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2025,'w6et','Mpesa','','2023-06-16 13:01:14','','0','4','2023-06-16 13:01:14','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41686909672','Cleared','4','2023-06-16 14:09:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2026,'cs2q','Mpesa','','2023-06-16 13:39:20','','0','4','2023-06-16 13:39:20','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41686911958','Cleared','4','2023-06-16 14:14:43','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2027,'k8lx','Mpesa','','2023-06-16 15:50:22','','0','4','2023-06-16 15:50:22','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','41686919820','Cleared','4','2023-06-16 17:21:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2028,'','Delivery','','2023-06-16 17:09:11','','0','3','2023-06-16 17:09:11','','0','200','1','retail','0','200','1','0','0','200','0','0','0','printed','uber eats','','','0','31686924549','Cleared','3','2023-06-16 17:14:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2029,'lcw1','Mpesa','','2023-06-16 17:18:11','','0','3','2023-06-16 17:18:11','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','lcw1','','','0','31686925090','Cleared','3','2023-06-16 18:43:59','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2030,'l6qp','Mpesa','','2023-06-16 17:19:53','','0','4','2023-06-16 17:19:53','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41686925192','Cleared','3','2023-06-16 23:04:59','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2031,'yjki','Mpesa','','2023-06-16 17:57:44','','0','3','2023-06-16 17:57:44','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31686927463','Cleared','3','2023-06-16 19:08:38','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2032,'osw7','Mpesa','','2023-06-16 18:44:28','','0','3','2023-06-16 18:44:28','','150','300','1','retail','0','300','1','0','0','0','0','150','0','printed','','','','0','31686930264','Cleared','3','2023-06-16 22:20:45','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2033,'o6ac','Mpesa','','2023-06-16 19:13:11','','0','3','2023-06-16 19:13:11','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31686931989','Cleared','3','2023-06-16 19:21:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2034,'n8cg','Mpesa','','2023-06-16 20:09:20','','0','3','2023-06-16 20:09:20','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31686935358','Cleared','3','2023-06-16 21:21:24','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2035,'osna','Mpesa','','2023-06-16 20:29:18','','0','3','2023-06-16 20:29:18','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31686936556','Cleared','3','2023-06-16 21:22:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2036,'','Cash','','2023-06-16 21:15:34','','0','3','2023-06-16 21:15:34','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed','','','','0','31686939329','Cleared','3','2023-06-16 22:54:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2037,'vwk9','Mpesa','','2023-06-16 21:16:51','','0','3','2023-06-16 21:16:51','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','vwk9','','','0','31686939410','Cleared','3','2023-06-16 23:07:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2038,'','Cash','','2023-06-16 21:34:54','','0','3','2023-06-16 21:34:54','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31686940492','Cleared','3','2023-06-16 23:03:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2039,'1tbd','Mpesa','','2023-06-16 23:05:23','','0','3','2023-06-16 23:05:23','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','1tbd','','','0','31686945921','Cleared','3','2023-06-16 23:05:56','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2040,'','Cash','','2023-06-17 12:06:23','','0','4','2023-06-17 12:06:23','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41686992782','Cleared','3','2023-06-17 22:31:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2041,'','Cash','','2023-06-17 12:13:20','','0','4','2023-06-17 12:13:20','','150','150','1','retail','0','150','1','0','0','0','0','0','0','new',' ','','','0','41686993199','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2042,'','Cash','','2023-06-17 12:44:16','','0','4','2023-06-17 12:44:16','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed','','','','0','41686995055','Cleared','4','2023-06-17 18:54:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2043,'vo2u','Mpesa','','2023-06-17 14:00:51','','0','4','2023-06-17 14:00:51','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41686999650','Cleared','4','2023-06-17 15:16:42','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2044,'6gh6','Mpesa','','2023-06-17 14:01:11','','0','4','2023-06-17 14:01:11','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41686999670','Cleared','4','2023-06-17 18:53:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2045,'','Cash','','2023-06-17 14:51:21','','0','4','2023-06-17 14:51:21','','1050','1050','1','retail','0','1050','1','0','0','0','0','0','0','printed','','','','0','41687002674','Cleared','4','2023-06-17 15:06:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2046,'kn5n','Mpesa','','2023-06-17 15:24:00','','0','3','2023-06-17 15:24:00','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','31687004639','Cleared','3','2023-06-17 18:04:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2047,'vdg4','Mpesa','','2023-06-17 17:40:41','','0','3','2023-06-17 17:28:46','','0','560','1','retail','0','560','1','0','0','0','0','560','0','printed','','','','0','31687012125','Cleared','3','2023-06-17 18:04:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2048,'6xx6','Mpesa','','2023-06-17 17:29:22','','0','4','2023-06-17 17:29:22','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41687012160','Cleared','4','2023-06-17 18:44:07','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2049,'lvh6','Mpesa','','2023-06-17 17:36:19','','0','4','2023-06-17 17:36:19','','0','400','1','retail','0','400','1','0','200','0','0','200','0','printed','lvh6','','','0','41687012575','Cleared','4','2023-06-17 18:56:08','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2050,'1tfl','Mpesa','','2023-06-17 17:37:34','','0','4','2023-06-17 17:37:34','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41687012653','Cleared','4','2023-06-17 17:38:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2051,'','Delivery','','2023-06-17 18:05:39','','0','3','2023-06-17 18:05:39','','0','400','1','retail','0','400','1','0','0','400','0','0','0','printed','uber eats','','','0','31687014331','Cleared','3','2023-06-17 18:06:15','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2052,'6sff','Mpesa','','2023-06-17 18:44:22','','0','4','2023-06-17 18:44:22','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41687016660','Cleared','3','2023-06-17 20:57:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2053,'6sff','Mpesa','','2023-06-17 18:44:35','','0','4','2023-06-17 18:44:35','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41687016673','Cleared','4','2023-06-17 21:02:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2054,'6sff','Mpesa','','2023-06-17 18:44:48','','0','4','2023-06-17 18:44:48','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','41687016687','Cleared','3','2023-06-17 20:59:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2055,'','Cash','','2023-06-17 18:49:55','','0','4','2023-06-17 18:49:55','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41687016993','Cleared','4','2023-06-17 21:02:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2056,'jvef','Mpesa','','2023-06-17 18:52:18','','0','3','2023-06-17 18:52:18','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31687017128','Cleared','3','2023-06-17 19:55:16','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2057,'gtwi','Mpesa','','2023-06-17 19:48:27','','0','3','2023-06-17 19:48:27','','0','700','1','retail','0','700','1','0','0','0','0','700','0','printed','','','','0','31687020502','Cleared','3','2023-06-17 21:13:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2058,'','Cash','','2023-06-17 20:56:22','','0','3','2023-06-17 20:56:22','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed','','','','0','31687024577','Cleared','3','2023-06-17 22:32:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2059,'4d3r','Mpesa','','2023-06-17 21:03:52','','0','3','2023-06-17 21:03:52','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31687025030','Cleared','3','2023-06-17 22:18:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2060,'cedrick','Voucher','','2023-06-17 22:35:51','','0','3','2023-06-17 22:35:51','','0','200','1','retail','0','200','1','0','200','0','0','0','0','new',' ','','','0','31687030550','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2061,'purity','Voucher','','2023-06-17 22:37:49','','0','3','2023-06-17 22:37:49','','0','280','1','retail','0','280','1','0','280','0','0','0','0','new',' ','','','0','31687030667','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2062,'martin','Voucher','','2023-06-17 22:38:13','','0','3','2023-06-17 22:38:13','','0','200','1','retail','0','200','1','0','200','0','0','0','0','new',' ','','','0','31687030692','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2063,'george','Voucher','','2023-06-17 22:39:11','','0','3','2023-06-17 22:39:11','','0','200','1','retail','0','200','1','0','200','0','0','0','0','new',' ','','','0','31687030750','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2064,'','Delivery','','2023-06-18 11:25:22','','0','3','2023-06-18 11:25:22','','0','350','1','retail','0','350','1','0','0','350','0','0','0','printed','uber eats','','','0','31687076720','Cleared','3','2023-06-18 13:33:48','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2065,'','Cash','','2023-06-18 13:30:51','','0','3','2023-06-18 13:30:51','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','31687084240','Cleared','3','2023-06-18 14:29:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2066,'','Cash','','2023-06-18 14:09:22','','0','3','2023-06-18 14:09:22','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','31687086560','Cleared','3','2023-06-18 14:30:12','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2067,'jnjy','Mpesa','','2023-06-18 14:20:28','','0','3','2023-06-18 14:20:28','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','31687087222','Cleared','3','2023-06-18 16:35:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2068,'ujae','Mpesa','','2023-06-18 14:21:29','','0','3','2023-06-18 14:21:29','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','31687087275','Cleared','3','2023-06-18 21:49:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2069,'','Cash','','2023-06-18 14:29:33','','0','3','2023-06-18 14:29:33','','350','350','1','retail','0','350','1','0','0','0','0','0','0','new',' ','','','0','31687087771','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2070,'vojg','Mpesa','','2023-06-18 14:31:36','','0','3','2023-06-18 14:31:36','','0','500','1','retail','0','500','1','0','0','0','0','500','0','printed','','','','0','31687087890','Cleared','3','2023-06-18 16:32:40','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2071,'o5fc','Mpesa','','2023-06-18 14:57:21','','0','3','2023-06-18 14:57:21','','0','700','1','retail','0','700','1','0','0','0','0','700','0','printed','o5fc','','','0','31687089434','Cleared','3','2023-06-18 16:34:39','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2072,'hd23','Mpesa','','2023-06-18 15:58:10','','0','3','2023-06-18 15:58:10','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','31687093088','Cleared','3','2023-06-18 16:53:38','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2073,'zdgr','Mpesa','','2023-06-18 16:50:23','','0','4','2023-06-18 16:50:23','','0','450','1','retail','0','450','1','0','0','0','0','450','0','printed','','','','0','41687096193','Cleared','4','2023-06-18 22:08:59','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2074,'','Cash','','2023-06-18 17:32:03','','0','4','2023-06-18 17:32:03','','630','630','1','retail','0','630','1','0','0','0','0','0','0','printed','','','','0','41687098714','Cleared','4','2023-06-18 18:45:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2075,'rthx','Mpesa','','2023-06-18 17:33:00','','0','4','2023-06-18 17:33:00','','0','560','1','retail','0','560','1','0','0','0','0','560','0','printed','','','','0','41687098775','Cleared','4','2023-06-18 17:49:27','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2076,'','Cash','','2023-06-18 17:59:24','','0','4','2023-06-18 17:59:24','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41687100362','Cleared','4','2023-06-18 18:06:11','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2077,'zdgr','Mpesa','','2023-06-18 18:39:53','','0','4','2023-06-18 18:39:53','','0','500','1','retail','0','500','1','0','0','0','0','500','0','printed','','','','0','41687102752','Cleared','4','2023-06-18 22:09:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2078,'','Voucher','','2023-06-18 18:45:16','','0','4','2023-06-18 18:45:16','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','mzae','','','0','41687103114','Cleared','4','2023-06-18 21:47:59','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2079,'ujae','Mpesa','','2023-06-18 18:45:32','','0','4','2023-06-18 18:45:32','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41687103131','Cleared','4','2023-06-18 21:47:39','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2080,'gcry','Mpesa','','2023-06-18 19:23:19','','0','4','2023-06-18 19:23:19','','0','1000','1','retail','0','1000','1','0','0','0','0','1000','0','printed','','','','0','41687105389','Cleared','4','2023-06-18 21:54:38','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2081,'gcry','Mpesa','','2023-06-18 20:16:38','','0','4','2023-06-18 20:16:38','','0','1000','1','retail','0','1000','1','0','0','0','0','1000','0','printed','','','','0','41687108584','Cleared','4','2023-06-18 21:55:05','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2082,'gcry','Mpesa','','2023-06-18 20:36:43','','0','4','2023-06-18 20:36:43','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41687109801','Cleared','4','2023-06-18 21:55:24','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2083,'cmso','Mpesa','','2023-06-18 21:16:25','','0','4','2023-06-18 21:16:25','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41687112183','Cleared','4','2023-06-18 21:17:34','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2084,'onql','Mpesa','','2023-06-18 21:16:50','','0','4','2023-06-18 21:16:50','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41687112209','Cleared','4','2023-06-18 21:32:08','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2085,'','Cash','','2023-06-19 13:35:02','','0','4','2023-06-19 13:35:02','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','41687170900','Cleared','4','2023-06-19 18:15:49','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2086,'679s','Mpesa','','2023-06-19 18:01:38','','0','4','2023-06-19 18:01:38','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','41687186897','Cleared','4','2023-06-19 18:33:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2087,'f3it','Mpesa','','2023-06-19 18:15:03','','0','4','2023-06-19 18:15:03','','0','480','1','retail','0','480','1','0','0','0','0','480','0','printed','','','','0','41687187695','Cleared','4','2023-06-19 19:18:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2088,'9etu','Mpesa','','2023-06-19 18:15:32','','0','4','2023-06-19 18:15:32','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','41687187717','Cleared','4','2023-06-19 19:24:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2089,'34zu','Mpesa','','2023-06-19 19:15:24','','0','4','2023-06-19 19:15:24','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41687191322','Cleared','4','2023-06-19 19:18:49','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2090,'','Cash','','2023-06-19 19:19:08','','0','4','2023-06-19 19:19:08','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','41687191542','Cleared','4','2023-06-19 19:41:36','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2091,'','Cash','','2023-06-19 19:52:04','','0','4','2023-06-19 19:52:04','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed','','','','0','41687193518','Cleared','4','2023-06-19 20:36:39','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2092,'','Cash','','2023-06-19 20:16:03','','0','4','2023-06-19 20:16:03','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41687194961','Cleared','4','2023-06-19 20:36:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2093,'','Delivery','','2023-06-20 10:38:06','','0','4','2023-06-20 10:38:06','','0','900','1','retail','0','900','1','0','0','900','0','0','0','printed','','','','0','41687246652','Cleared','4','2023-06-20 10:38:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2094,'xbm6','Mpesa','','2023-06-20 11:51:59','','0','4','2023-06-20 11:51:59','','0','500','1','retail','0','500','1','0','0','0','0','500','0','printed','','','','0','41687251105','Cleared','4','2023-06-20 12:34:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2095,'svrr','Mpesa','','2023-06-20 12:30:19','','0','4','2023-06-20 12:30:19','','0','1000','1','retail','0','1000','1','0','250','0','0','750','0','printed','svrr','','','0','41687253412','Cleared','4','2023-06-20 12:33:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2096,'xbm6','Mpesa','','2023-06-20 12:30:44','','0','4','2023-06-20 12:30:44','','0','100','1','retail','0','100','1','0','0','0','0','100','0','printed','','','','0','41687253442','Cleared','4','2023-06-20 12:35:05','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2097,'','Cash','','2023-06-20 12:47:04','','0','4','2023-06-20 12:47:04','','200','200','1','retail','0','200','1','0','0','0','0','0','0','new',' ','','','0','41687254422','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2098,'6ojh','Mpesa','','2023-06-20 13:03:23','','0','4','2023-06-20 13:03:23','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41687255401','Cleared','4','2023-06-20 14:28:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2099,'eqiq','Mpesa','','2023-06-20 13:23:20','','0','4','2023-06-20 13:23:20','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','41687256594','Cleared','4','2023-06-20 14:28:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2100,'','Voucher','','2023-06-20 13:33:09','','0','4','2023-06-20 13:33:09','','0','500','1','retail','0','500','1','0','500','0','0','0','0','printed','dad','','','0','41687257180','Cleared','4','2023-06-20 13:33:36','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2101,'eqiq','Mpesa','','2023-06-20 14:14:41','','0','4','2023-06-20 14:14:41','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','41687259676','Cleared','4','2023-06-20 14:29:16','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2102,'4dic','Mpesa','','2023-06-20 14:29:39','','0','4','2023-06-20 14:29:39','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41687260577','Cleared','4','2023-06-20 14:55:34','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2103,'anev','Mpesa','','2023-06-20 15:24:12','','0','3','2023-06-20 15:24:12','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31687263851','Cleared','3','2023-06-20 21:07:59','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2104,'q9ld','Mpesa','','2023-06-20 15:24:51','','0','3','2023-06-20 15:24:51','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','q9ld','','','0','31687263890','Cleared','3','2023-06-20 15:25:38','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2105,'','Cash','','2023-06-20 15:43:42','','0','3','2023-06-20 15:43:42','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed','','','','0','31687264982','Cleared','3','2023-06-20 15:44:27','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2106,'anev','Mpesa','','2023-06-20 16:30:48','','0','3','2023-06-20 16:30:48','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31687267846','Cleared','3','2023-06-20 21:08:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2107,'f7gs','Mpesa','','2023-06-20 16:31:17','','0','4','2023-06-20 16:31:17','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41687267875','Cleared','4','2023-06-20 16:32:33','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2108,'ima7','Mpesa','','2023-06-20 17:17:54','','0','3','2023-06-20 17:17:54','','0','700','1','retail','0','700','1','0','0','0','0','700','0','printed','','','','0','31687270669','Cleared','3','2023-06-20 19:57:07','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2109,'af6n','Mpesa','','2023-06-20 19:45:02','','0','3','2023-06-20 19:45:02','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31687279489','Cleared','3','2023-06-20 21:31:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2110,'htx0','Mpesa','','2023-06-20 20:40:55','','0','3','2023-06-20 20:40:55','','0','700','1','retail','0','700','1','0','0','0','0','700','0','printed','','','','0','31687282850','Cleared','3','2023-06-20 22:31:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2111,'w6jl','Mpesa','','2023-06-20 22:13:40','','0','3','2023-06-20 22:13:40','','0','700','1','retail','0','700','1','0','0','0','0','700','0','printed','','','','0','31687288412','Cleared','3','2023-06-20 22:30:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2112,'cedrick','Voucher','','2023-06-20 22:42:47','','0','3','2023-06-20 22:42:47','','0','350','1','retail','0','350','1','0','350','0','0','0','0','new',' ','','','0','31687290151','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2113,'george','Voucher','','2023-06-20 22:43:14','','0','3','2023-06-20 22:43:14','','0','200','1','retail','0','200','1','0','200','0','0','0','0','new',' ','','','0','31687290193','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2114,'purity','Voucher','','2023-06-20 22:43:40','','0','3','2023-06-20 22:43:40','','0','250','1','retail','0','250','1','0','250','0','0','0','0','new',' ','','','0','31687290218','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2115,'ug4r','Mpesa','','2023-06-21 13:15:08','','0','3','2023-06-21 13:15:08','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31687342506','Cleared','3','2023-06-21 20:03:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2116,'','Cash','','2023-06-21 14:58:01','','0','3','2023-06-21 14:58:01','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed','','','','0','31687348676','Cleared','3','2023-06-21 15:04:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2117,'','Cash','','2023-06-21 16:22:02','','0','3','2023-06-21 16:22:02','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed','','','','0','31687353721','Cleared','3','2023-06-21 21:58:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2118,'kd03','Mpesa','','2023-06-21 17:49:29','','0','3','2023-06-21 17:49:29','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','31687358968','Cleared','3','2023-06-21 20:02:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2119,'953e','Mpesa','','2023-06-21 20:01:26','','0','3','2023-06-21 18:59:39','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','31687363177','Cleared','3','2023-06-21 20:41:42','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2120,'kt9z','Mpesa','','2023-06-21 19:59:13','','0','3','2023-06-21 19:59:13','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31687366751','Cleared','3','2023-06-21 20:00:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2121,'wqew','Mpesa','','2023-06-21 21:39:07','','0','3','2023-06-21 21:39:07','','0','580','1','retail','0','580','1','0','0','0','0','580','0','printed','','','','0','31687372736','Cleared','3','2023-06-21 21:58:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2122,'','Delivery','','2023-06-22 13:51:39','','0','3','2023-06-22 13:51:39','','0','1600','1','retail','0','1600','1','0','0','1600','0','0','0','printed','uber eats','','','0','31687431017','Cleared','3','2023-06-22 13:52:21','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2123,'','Cash','','2023-06-22 13:52:47','','0','3','2023-06-22 13:52:47','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','31687431165','Cleared','3','2023-06-22 18:27:05','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2124,'','Voucher','','2023-06-22 16:55:36','','0','4','2023-06-22 16:55:37','','0','600','1','retail','0','600','1','0','600','0','0','0','0','printed','mzae','','','0','41687442123','Cleared','4','2023-06-22 17:24:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2125,'1val','Mpesa','','2023-06-22 17:12:25','','0','3','2023-06-22 17:12:25','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31687443143','Cleared','3','2023-06-22 18:27:47','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2126,'50k6','Mpesa','','2023-06-22 17:12:47','','0','3','2023-06-22 17:12:47','','0','200','1','retail','0','200','1','0','0','0','0','200','0','new','','','','0','31687443166','No','3','2023-06-22 18:51:33','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2127,'george','Voucher','','2023-06-22 17:13:10','','0','3','2023-06-22 17:13:10','','0','200','1','retail','0','200','1','0','200','0','0','0','0','new',' ','','','0','31687443188','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2128,'','Cash','','2023-06-22 17:17:26','','0','4','2023-06-22 17:17:26','','280','280','1','retail','0','280','1','0','0','0','0','0','0','printed','','','','0','41687443444','Cleared','4','2023-06-22 17:46:33','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2129,'','Cash','','2023-06-22 17:24:10','','0','4','2023-06-22 17:24:10','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41687443848','Cleared','4','2023-06-22 17:46:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2130,'50k6','Mpesa','','2023-06-22 17:52:53','','0','4','2023-06-22 17:28:21','','0','600','1','retail','0','600','1','0','0','0','0','600','0','printed','','','','0','41687444100','Cleared','4','2023-06-22 18:52:11','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2131,'','Cash','','2023-06-22 17:39:25','','0','4','2023-06-22 17:39:25','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41687444763','Cleared','4','2023-06-22 17:42:35','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2132,'an8h','Mpesa','','2023-06-22 20:19:03','','0','4','2023-06-22 20:19:03','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41687454341','Cleared','4','2023-06-22 22:03:47','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2133,'an8h','Mpesa','','2023-06-22 20:46:33','','0','4','2023-06-22 20:46:33','','0','700','1','retail','0','700','1','0','0','0','0','700','0','printed','','','','0','41687455987','Cleared','4','2023-06-22 22:04:17','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2134,'w3kp','Mpesa','','2023-06-22 21:32:45','','0','4','2023-06-22 21:32:45','','0','380','1','retail','0','380','1','0','0','0','0','380','0','printed','','','','0','41687458755','Cleared','4','2023-06-22 22:04:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2135,'an8h','Mpesa','','2023-06-22 21:44:53','','0','4','2023-06-22 21:44:53','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41687459492','Cleared','4','2023-06-22 22:05:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2136,'ftwo','Mpesa','','2023-06-23 10:57:51','','0','4','2023-06-23 10:57:51','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41687507070','Cleared','4','2023-06-23 10:58:29','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2137,'hdvb','Mpesa','','2023-06-23 11:43:36','','0','4','2023-06-23 11:43:36','','0','480','1','retail','0','480','1','0','0','0','0','480','0','printed','','','','0','41687509811','Cleared','4','2023-06-23 12:16:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2138,'94ts','Mpesa','','2023-06-23 11:46:39','','0','4','2023-06-23 11:46:39','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41687509998','Cleared','4','2023-06-23 11:47:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2139,'9nc2','Mpesa','','2023-06-23 11:46:58','','0','4','2023-06-23 11:46:58','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41687510016','Cleared','4','2023-06-23 11:48:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2140,'uj95','Mpesa','','2023-06-23 11:47:17','','0','4','2023-06-23 11:47:17','','0','380','1','retail','0','380','1','0','0','0','0','380','0','printed','','','','0','41687510028','Cleared','4','2023-06-23 11:48:57','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2141,'nhak','Mpesa','','2023-06-23 12:06:39','','0','4','2023-06-23 12:06:39','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41687511197','Cleared','3','2023-06-23 22:51:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2142,'zdlp','Mpesa','','2023-06-23 12:16:12','','0','4','2023-06-23 12:16:12','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41687511770','Cleared','4','2023-06-23 15:53:32','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2143,'z89b','Mpesa','','2023-06-23 13:06:41','','0','4','2023-06-23 13:06:41','','0','580','1','retail','0','580','1','0','0','0','0','580','0','printed','','','','0','41687514797','Cleared','4','2023-06-23 13:36:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2144,'zdlp','Mpesa','','2023-06-23 13:13:55','','0','4','2023-06-23 13:13:55','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41687515234','Cleared','4','2023-06-23 15:54:00','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2145,'uya6','Mpesa','','2023-06-23 13:46:28','','0','4','2023-06-23 13:46:28','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','41687517187','Cleared','4','2023-06-23 13:47:37','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2146,'','Voucher','','2023-06-23 14:19:39','','0','4','2023-06-23 14:19:39','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','mzae','','','0','41687519177','Cleared','4','2023-06-23 15:54:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2147,'','Cash','','2023-06-23 14:24:47','','0','4','2023-06-23 14:24:47','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','41687519485','Cleared','4','2023-06-23 15:15:32','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2148,'aa98','Mpesa','','2023-06-23 16:14:52','','0','3','2023-06-23 16:14:52','','0','500','1','retail','0','500','1','0','0','0','0','500','0','printed','aa98','','','0','31687526081','Cleared','3','2023-06-23 17:47:02','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2149,'3kjm','Mpesa','','2023-06-23 17:15:19','','0','3','2023-06-23 17:15:19','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','31687529718','Cleared','3','2023-06-23 18:13:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2150,'','Cash','','2023-06-23 17:16:13','','0','3','2023-06-23 17:16:13','','280','280','1','retail','0','280','1','0','0','0','0','0','0','printed','','','','0','31687529772','Cleared','3','2023-06-23 17:46:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2151,'j0un','Mpesa','','2023-06-23 18:06:55','','0','3','2023-06-23 18:06:55','','0','530','1','retail','0','530','1','0','0','0','0','530','0','printed','','','','0','31687532804','Cleared','3','2023-06-23 18:13:07','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2152,'','Cash','','2023-06-23 18:12:29','','0','3','2023-06-23 18:12:29','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','31687533148','Cleared','3','2023-06-23 18:13:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2153,'ockg','Mpesa','','2023-06-23 19:06:18','','0','3','2023-06-23 19:06:18','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','31687536376','Cleared','3','2023-06-23 19:07:07','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2154,'5kpk','Mpesa','','2023-06-23 19:59:29','','0','3','2023-06-23 19:59:29','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31687539568','Cleared','3','2023-06-23 20:08:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2155,'','Cash','','2023-06-23 20:08:09','','0','3','2023-06-23 20:08:09','','280','280','1','retail','0','280','1','0','0','0','0','0','0','printed','','','','0','31687540087','Cleared','3','2023-06-23 21:53:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2156,'xgad','Mpesa','','2023-06-23 20:09:19','','0','3','2023-06-23 20:09:19','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31687540157','Cleared','3','2023-06-23 22:43:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2157,'mzae','Voucher','','2023-06-23 23:02:11','','0','3','2023-06-23 23:02:11','','0','200','1','retail','0','200','1','0','200','0','0','0','0','new',' ','','','0','31687550529','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2158,'martin','Voucher','','2023-06-23 23:02:45','','0','3','2023-06-23 23:02:45','','0','280','1','retail','0','280','1','0','280','0','0','0','0','new',' ','','','0','31687550563','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2159,'cedrick','Voucher','','2023-06-23 23:03:00','','0','3','2023-06-23 23:03:00','','0','300','1','retail','0','300','1','0','300','0','0','0','0','new',' ','','','0','31687550578','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2160,'purity','Voucher','','2023-06-23 23:03:20','','0','3','2023-06-23 23:03:20','','0','200','1','retail','0','200','1','0','200','0','0','0','0','new',' ','','','0','31687550599','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2161,'h1ag','Mpesa','','2023-06-24 10:49:18','','0','3','2023-06-24 10:49:18','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','31687592956','Cleared','3','2023-06-24 18:37:57','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2162,'rxb3','Mpesa','','2023-06-24 13:55:26','','0','3','2023-06-24 13:55:26','','0','600','1','retail','0','600','1','0','0','0','0','600','0','printed','','','','0','31687604119','Cleared','3','2023-06-24 14:43:40','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2163,'kjiz','Mpesa','','2023-06-24 14:49:08','','0','3','2023-06-24 14:49:08','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','31687607346','Cleared','3','2023-06-24 18:38:35','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2164,'d769','Mpesa','','2023-06-24 17:28:29','','0','4','2023-06-24 17:28:29','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41687616907','Cleared','4','2023-06-24 17:29:11','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2165,'','Cash','','2023-06-24 19:58:37','','0','4','2023-06-24 19:58:37','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41687625915','Cleared','4','2023-06-24 20:15:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2166,'','Cash','','2023-06-24 21:17:27','','0','4','2023-06-24 21:17:27','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41687630646','Cleared','4','2023-06-24 21:17:45','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2167,'','Cash','','2023-06-24 21:46:55','','0','4','2023-06-24 21:46:55','','280','280','1','retail','0','280','1','0','0','0','0','0','0','printed','','','','0','41687632413','Cleared','4','2023-06-24 21:48:10','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2168,'','Voucher','','2023-06-24 22:15:57','','0','4','2023-06-24 22:15:57','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','martin','','','0','41687634155','Cleared','4','2023-06-24 22:17:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2169,'','Voucher','','2023-06-24 22:16:23','','0','4','2023-06-24 22:16:23','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','purity','','','0','41687634182','Cleared','4','2023-06-24 22:17:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2170,'','Voucher','','2023-06-24 22:17:51','','0','4','2023-06-24 22:17:51','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','cedric','','','0','41687634270','Cleared','4','2023-06-24 22:18:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2171,'','Voucher','','2023-06-25 11:43:22','','0','3','2023-06-25 11:43:22','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','cedrick','','','0','31687682600','Cleared','4','2023-06-25 21:48:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2172,'pdev','Mpesa','','2023-06-25 17:05:49','','0','4','2023-06-25 17:05:49','','0','600','1','retail','0','600','1','0','0','0','0','600','0','printed','','','','0','41687701943','Cleared','4','2023-06-25 17:42:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2173,'y7ru','Mpesa','','2023-06-25 17:42:07','','0','4','2023-06-25 17:42:07','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41687704125','Cleared','4','2023-06-25 17:43:16','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2174,'t5wh','Mpesa','','2023-06-25 17:47:10','','0','3','2023-06-25 17:46:36','','0','700','1','retail','0','700','1','0','0','0','0','700','0','printed','','','','0','31687704394','Cleared','4','2023-06-25 18:50:49','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2175,'k41d','Mpesa','','2023-06-25 17:58:56','','0','3','2023-06-25 17:58:56','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','31687705134','Cleared','4','2023-06-25 18:51:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2176,'yoji','Mpesa','','2023-06-25 18:31:45','','0','4','2023-06-25 18:31:45','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41687707103','Cleared','4','2023-06-25 21:06:37','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2177,'lu98','Mpesa','','2023-06-25 19:44:23','','0','4','2023-06-25 19:44:23','','0','500','1','retail','0','500','1','0','0','0','0','500','0','printed','','','','0','41687711458','Cleared','4','2023-06-25 21:07:11','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2178,'zg5b','Mpesa','','2023-06-25 21:05:46','','0','4','2023-06-25 21:05:46','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41687716345','Cleared','4','2023-06-25 22:14:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2179,'ls8d','Mpesa','','2023-06-25 21:25:50','','0','4','2023-06-25 21:25:50','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41687717549','Cleared','4','2023-06-25 21:48:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2180,'','Voucher','','2023-06-25 21:49:02','','0','4','2023-06-25 21:49:02','','0','480','1','retail','0','480','1','0','480','0','0','0','0','printed','martin','','','0','41687718934','Cleared','4','2023-06-25 21:49:29','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2181,'','Voucher','','2023-06-25 21:50:03','','0','4','2023-06-25 21:50:03','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','purity','','','0','41687719001','Cleared','4','2023-06-25 21:50:29','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2182,'','Voucher','','2023-06-26 11:08:07','','0','4','2023-06-26 11:08:07','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','dad','','','0','41687766886','Cleared','4','2023-06-26 11:09:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2183,'','Cash','','2023-06-26 11:31:21','','0','4','2023-06-26 11:31:21','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41687768280','Cleared','4','2023-06-26 12:13:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2184,'86b1','Mpesa','','2023-06-26 13:20:07','','0','4','2023-06-26 13:20:07','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41687774805','Cleared','4','2023-06-26 13:55:24','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2185,'1vwa','Mpesa','','2023-06-26 15:05:11','','0','4','2023-06-26 15:05:11','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41687781109','Cleared','4','2023-06-26 16:08:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2186,'kqod','Mpesa','','2023-06-26 17:22:46','','0','4','2023-06-26 17:22:46','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','41687789360','Cleared','4','2023-06-26 17:23:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2187,'wg9u','Mpesa','','2023-06-26 17:35:17','','0','4','2023-06-26 17:35:17','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41687790115','Cleared','4','2023-06-26 17:35:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2188,'','Cash','','2023-06-26 18:13:47','','0','4','2023-06-26 18:13:47','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed','','','','0','41687792426','Cleared','4','2023-06-26 18:56:57','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2189,'gr5d','Mpesa','','2023-06-26 19:10:22','','0','4','2023-06-26 19:10:22','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41687795821','Cleared','4','2023-06-26 19:39:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2190,'gr5d','Mpesa','','2023-06-26 19:35:52','','0','4','2023-06-26 19:35:52','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41687797350','Cleared','4','2023-06-26 19:39:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2191,'','Cash','','2023-06-26 20:33:14','','0','4','2023-06-26 20:33:14','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41687800792','Cleared','4','2023-06-26 20:57:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2192,'','Voucher','','2023-06-26 20:35:42','','0','4','2023-06-26 20:35:42','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','purity','','','0','41687800941','Cleared','4','2023-06-26 21:57:10','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2193,'','Voucher','','2023-06-26 21:56:26','','0','4','2023-06-26 21:56:26','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','martin','','','0','41687805785','Cleared','4','2023-06-26 21:57:43','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2194,'','Voucher','','2023-06-26 21:56:42','','0','4','2023-06-26 21:56:42','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','martin','','','0','41687805801','Cleared','4','2023-06-26 21:58:02','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2195,'1nxo','Mpesa','','2023-06-27 09:12:48','','0','4','2023-06-27 09:12:48','','0','380','1','retail','0','380','1','0','0','0','0','380','0','printed','','','','0','41687846360','Cleared','4','2023-06-27 10:11:11','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2196,'','Cash','','2023-06-27 09:47:28','','0','4','2023-06-27 09:47:28','','280','280','1','retail','0','280','1','0','0','0','0','0','0','printed','','','','0','41687848446','Cleared','4','2023-06-27 10:29:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2197,'','Cash','','2023-06-27 12:17:14','','0','4','2023-06-27 12:17:14','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41687857433','Cleared','4','2023-06-27 17:06:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2198,'vov5','Mpesa','','2023-06-27 13:51:39','','0','4','2023-06-27 13:51:39','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41687863097','Cleared','4','2023-06-27 17:07:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2199,'vov5','Mpesa','','2023-06-27 15:09:54','','0','4','2023-06-27 15:09:54','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41687867792','Cleared','4','2023-06-27 17:07:33','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2200,'','Cash','','2023-06-27 15:29:19','','0','4','2023-06-27 15:29:19','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed','','','','0','41687868958','Cleared','3','2023-06-27 22:51:47','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2201,'','Voucher','','2023-06-27 17:07:55','','0','4','2023-06-27 17:07:55','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','mzae ','','','0','41687874873','Cleared','4','2023-06-27 17:08:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2202,'jkph','Mpesa','','2023-06-27 18:34:28','','0','3','2023-06-27 18:34:28','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','31687880067','Cleared','3','2023-06-27 21:08:34','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2203,'1863','Mpesa','','2023-06-27 20:09:24','','0','3','2023-06-27 18:57:57','','0','1400','1','retail','0','1400','1','0','0','0','0','1400','0','printed','','','','0','31687881472','Cleared','3','2023-06-27 21:59:08','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2204,'fcy3','Mpesa','','2023-06-27 19:28:19','','0','3','2023-06-27 19:28:19','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31687883298','Cleared','3','2023-06-27 21:11:17','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2205,'','Cash','','2023-06-27 20:47:23','','0','3','2023-06-27 20:47:23','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','31687888041','Cleared','3','2023-06-27 21:14:48','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2206,'pbyo','Mpesa','','2023-06-27 20:47:34','','0','3','2023-06-27 20:47:34','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','pbyo','','','0','31687888053','Cleared','3','2023-06-27 22:34:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2207,'','Cash','','2023-06-27 22:01:50','','0','3','2023-06-27 21:13:28','','840','840','1','retail','0','840','1','0','0','0','0','0','0','printed','','','','0','31687889603','Cleared','3','2023-06-27 22:19:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2208,'olm0','Mpesa','','2023-06-27 21:59:41','','0','3','2023-06-27 21:59:41','','0','450','1','retail','0','450','1','0','0','0','0','450','0','printed','','','','0','31687892369','Cleared','3','2023-06-27 22:33:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2209,'8jsg','Mpesa','','2023-06-27 22:00:00','','0','3','2023-06-27 22:00:00','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31687892398','Cleared','3','2023-06-27 22:30:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2210,'','Cash','','2023-06-28 15:24:55','','0','3','2023-06-28 15:24:56','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','31687955094','Cleared','3','2023-06-28 16:08:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2211,'','Delivery','','2023-06-28 15:25:19','','0','3','2023-06-28 15:25:19','','0','400','1','retail','0','400','1','0','0','400','0','0','0','printed','uber eats','','','0','31687955115','Cleared','3','2023-06-28 16:08:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2212,'yitd','Mpesa','','2023-06-28 15:26:17','','0','3','2023-06-28 15:26:17','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','31687955144','Cleared','3','2023-06-28 16:45:36','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2213,'vr9w','Mpesa','','2023-06-28 16:01:09','','0','3','2023-06-28 16:01:09','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','31687957263','Cleared','3','2023-06-28 17:49:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2214,'u63q','Mpesa','','2023-06-28 17:50:26','','0','3','2023-06-28 17:50:26','','0','750','1','retail','0','750','1','0','0','0','0','750','0','printed','','','','0','31687963818','Cleared','3','2023-06-28 21:40:43','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2215,'lt2z','Mpesa','','2023-06-28 17:50:52','','0','3','2023-06-28 17:50:52','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31687963851','Cleared','3','2023-06-28 21:41:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2216,'1q0k','Mpesa','','2023-06-28 20:22:13','','0','3','2023-06-28 20:22:13','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','1q0k','','','0','31687972931','Cleared','3','2023-06-28 21:41:45','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2217,'dad','Voucher','','2023-06-28 21:54:07','','0','3','2023-06-28 21:54:07','','0','350','1','retail','0','350','1','0','350','0','0','0','0','new',' ','','','0','31687978445','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2218,'george','Voucher','','2023-06-28 21:54:37','','0','3','2023-06-28 21:54:37','','0','200','1','retail','0','200','1','0','200','0','0','0','0','new',' ','','','0','31687978475','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2219,'mzae','Voucher','','2023-06-28 21:54:59','','0','3','2023-06-28 21:54:59','','0','200','1','retail','0','200','1','0','200','0','0','0','0','new',' ','','','0','31687978498','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2220,'martin','Voucher','','2023-06-28 21:55:29','','0','3','2023-06-28 21:55:29','','0','200','1','retail','0','200','1','0','200','0','0','0','0','new',' ','','','0','31687978527','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2221,'cedrick','Voucher','','2023-06-28 21:55:53','','0','3','2023-06-28 21:55:53','','0','250','1','retail','0','250','1','0','250','0','0','0','0','new',' ','','','0','31687978551','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2222,'','Voucher','','2023-06-29 13:03:03','','0','3','2023-06-29 13:03:03','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','mzae','','','0','31688032981','Cleared','4','2023-06-29 20:42:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2223,'','Delivery','','2023-06-29 13:57:05','','0','3','2023-06-29 13:57:05','','0','700','1','retail','0','700','1','0','0','700','0','0','0','printed','uber eats','','','0','31688036219','Cleared','3','2023-06-29 13:57:43','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2224,'mzae','Voucher','','2023-06-29 13:58:07','','0','3','2023-06-29 13:58:07','','0','200','1','retail','0','200','1','0','200','0','0','0','0','new',' ','','','0','31688036285','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2225,'george','Voucher','','2023-06-29 14:46:52','','0','3','2023-06-29 14:46:52','','0','200','1','retail','0','200','1','0','200','0','0','0','0','new',' ','','','0','31688039210','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2226,'','Cash','','2023-06-29 14:47:42','','0','3','2023-06-29 14:47:42','','300','300','1','retail','0','300','1','0','0','0','0','0','0','new',' ','','','0','31688039261','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2227,'','Mpesa','','2023-06-29 15:54:45','','0','4','2023-06-29 15:54:45','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','vbrx','','','0','41688043283','Cleared','4','2023-06-29 19:56:17','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2228,'','Cash','','2023-06-29 16:50:04','','0','4','2023-06-29 16:50:04','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41688046603','Cleared','4','2023-06-29 18:42:16','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2229,'vbrx','Mpesa','','2023-06-29 17:10:55','','0','4','2023-06-29 17:10:55','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41688047853','Cleared','4','2023-06-29 19:55:23','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2230,'url4','Mpesa','','2023-06-29 18:41:50','','0','4','2023-06-29 18:41:50','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41688053308','Cleared','4','2023-06-29 19:00:34','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2231,'iq0k','Mpesa','','2023-06-29 19:39:08','','0','4','2023-06-29 19:39:08','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41688056743','Cleared','4','2023-06-29 19:57:00','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2232,'','Cash','','2023-06-29 19:47:14','','0','4','2023-06-29 19:47:14','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed','','','','0','41688057233','Cleared','4','2023-06-29 19:59:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2233,'owqw','Mpesa','','2023-06-29 19:53:52','','0','4','2023-06-29 19:53:52','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41688057630','Cleared','4','2023-06-29 20:37:34','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2234,'k1j5','Mpesa','','2023-06-29 21:00:08','','0','4','2023-06-29 21:00:08','','0','700','1','retail','0','700','1','0','0','0','0','700','0','printed','','','','0','41688061594','Cleared','4','2023-06-29 21:19:11','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2235,'','Voucher','','2023-06-29 21:00:48','','0','4','2023-06-29 21:00:48','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','rodgers','','','0','41688061646','Cleared','4','2023-06-29 21:01:24','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2236,'d6pu','Mpesa','','2023-06-29 21:31:15','','0','4','2023-06-29 21:31:15','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41688063473','Cleared','4','2023-06-29 21:38:04','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2237,'ph38','Mpesa','','2023-06-30 12:17:41','','0','4','2023-06-30 12:17:41','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41688116660','Cleared','4','2023-06-30 13:06:23','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2238,'h6t9','Mpesa','','2023-06-30 12:18:17','','0','4','2023-06-30 12:18:17','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41688116695','Cleared','4','2023-06-30 14:29:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2239,'602k','Mpesa','','2023-06-30 12:53:21','','0','4','2023-06-30 12:53:21','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41688118800','Cleared','4','2023-06-30 12:54:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2240,'rgyq','Mpesa','','2023-06-30 13:16:27','','0','4','2023-06-30 13:16:27','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41688120186','Cleared','4','2023-06-30 13:45:27','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2241,'','Voucher','','2023-06-30 14:34:37','','0','4','2023-06-30 14:34:37','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','mzae','','','0','41688124875','Cleared','4','2023-06-30 14:35:17','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2242,'','Delivery','','2023-06-30 14:52:29','','0','4','2023-06-30 14:52:29','','0','200','1','retail','0','200','1','0','0','200','0','0','0','printed','ubereats','','','0','41688125948','Cleared','4','2023-06-30 14:53:42','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2243,'','Cash','','2023-06-30 14:52:53','','0','4','2023-06-30 14:52:53','','200','200','1','retail','0','200','1','0','0','0','0','0','0','new',' ','','','0','41688125972','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2244,'68co','Mpesa','','2023-06-30 15:25:39','','0','4','2023-06-30 15:25:39','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41688127938','Cleared','4','2023-06-30 15:40:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2245,'pi3m','Mpesa','','2023-06-30 16:02:42','','0','4','2023-06-30 16:02:42','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','41688130141','Cleared','4','2023-06-30 17:23:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2246,'ut19','Mpesa','','2023-06-30 16:03:15','','0','4','2023-06-30 16:03:15','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41688130194','Cleared','4','2023-06-30 16:27:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2247,'','Voucher','','2023-06-30 16:07:46','','0','4','2023-06-30 16:07:46','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','manager','','','0','41688130465','Cleared','4','2023-06-30 16:08:15','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2248,'gamg','Mpesa','','2023-06-30 17:26:46','','0','3','2023-06-30 17:26:46','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31688135205','Cleared','3','2023-06-30 17:40:37','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2249,'b3tp','Mpesa','','2023-06-30 17:55:33','','0','3','2023-06-30 17:55:33','','0','380','1','retail','0','380','1','0','0','0','0','380','0','printed','','','','0','31688136924','Cleared','3','2023-06-30 17:56:07','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2250,'gr99','Mpesa','','2023-06-30 18:50:21','','0','3','2023-06-30 18:50:21','','0','380','1','retail','0','380','1','0','0','0','0','380','0','printed','','','','0','31688140209','Cleared','3','2023-06-30 19:07:43','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2251,'bonx','Mpesa','','2023-06-30 19:53:27','','0','3','2023-06-30 19:53:27','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31688144006','Cleared','3','2023-06-30 20:20:59','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2252,'','Cash','','2023-06-30 19:54:17','','0','3','2023-06-30 19:54:17','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','31688144055','Cleared','3','2023-06-30 21:16:16','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2253,'qh52','Mpesa','','2023-06-30 21:06:58','','0','3','2023-06-30 21:06:05','','100','380','1','retail','0','380','1','0','0','0','0','280','0','printed','','','','0','31688148363','Cleared','3','2023-06-30 21:26:36','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2254,'','Cash','','2023-06-30 21:27:51','','0','3','2023-06-30 21:27:51','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','31688149670','Cleared','3','2023-06-30 21:28:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2255,'','Cash','','2023-06-30 22:17:51','','0','3','2023-06-30 22:17:51','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','31688152669','Cleared','3','2023-06-30 22:59:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2256,'221d','Mpesa','','2023-06-30 23:25:25','','0','3','2023-06-30 23:25:25','','0','580','1','retail','0','580','1','0','0','0','0','580','0','printed','','','','0','31688156720','Cleared','3','2023-06-30 23:26:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2257,'udfg','Mpesa','','2023-07-01 09:58:25','','0','4','2023-07-01 09:58:25','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41688194704','Cleared','4','2023-07-01 10:14:47','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2258,'7gv1','Mpesa','','2023-07-01 10:05:38','','0','4','2023-07-01 10:05:38','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41688195137','Cleared','4','2023-07-01 10:18:08','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2259,'4w9w','Mpesa','','2023-07-01 12:05:48','','0','4','2023-07-01 12:05:48','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41688202347','Cleared','4','2023-07-01 13:59:27','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2260,'ewc9','Mpesa','','2023-07-01 13:41:02','','0','4','2023-07-01 13:41:02','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41688208061','Cleared','4','2023-07-01 14:40:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2261,'pv1l','Mpesa','','2023-07-01 13:57:43','','0','4','2023-07-01 13:57:43','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41688209062','Cleared','4','2023-07-01 13:58:27','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2262,'aor7','Mpesa','','2023-07-01 13:59:46','','0','4','2023-07-01 13:59:46','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41688209184','Cleared','4','2023-07-01 14:40:16','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2263,'3k6x','Mpesa','','2023-07-01 15:06:18','','0','4','2023-07-01 15:06:18','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41688213176','Cleared','4','2023-07-01 15:08:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2264,'tfw3','Mpesa','','2023-07-01 15:33:05','','0','4','2023-07-01 15:33:05','','0','480','1','retail','0','480','1','0','0','0','0','480','0','printed','','','','0','41688214780','Cleared','3','2023-07-01 18:54:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2265,'','Cash','','2023-07-01 16:23:27','','0','3','2023-07-01 16:23:27','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','31688217805','Cleared','3','2023-07-01 17:54:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2266,'s7dm','Mpesa','','2023-07-01 17:18:34','','0','3','2023-07-01 17:18:34','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31688221112','Cleared','3','2023-07-01 18:47:56','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2267,'hr55','Mpesa','','2023-07-01 17:45:50','','0','3','2023-07-01 17:45:50','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','31688222749','Cleared','3','2023-07-01 21:59:34','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2268,'','Cash','','2023-07-01 18:22:34','','0','3','2023-07-01 17:54:17','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed','','','','0','31688223255','Cleared','3','2023-07-01 19:18:49','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2269,'cu1h','Mpesa','','2023-07-01 18:48:13','','0','3','2023-07-01 18:48:13','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','31688226491','Cleared','3','2023-07-01 18:49:34','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2270,'yflq','Mpesa','','2023-07-01 19:19:01','','0','3','2023-07-01 19:19:01','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31688228339','Cleared','3','2023-07-01 19:19:45','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2271,'p385','Mpesa','','2023-07-01 19:34:18','','0','3','2023-07-01 19:34:18','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31688229256','Cleared','3','2023-07-01 21:50:15','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2272,'','Delivery','','2023-07-01 21:32:47','','0','3','2023-07-01 20:54:49','','0','700','1','retail','0','700','1','0','0','700','0','0','0','printed','uber eats','','','0','31688234087','Cleared','3','2023-07-01 21:53:04','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2273,'','Cash','','2023-07-01 21:51:08','','0','3','2023-07-01 21:51:08','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed','','','','0','31688237466','Cleared','3','2023-07-01 21:51:57','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2274,'hr55','Mpesa','','2023-07-01 22:00:07','','0','3','2023-07-01 22:00:07','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31688238005','Cleared','3','2023-07-01 22:00:48','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2275,'cedrick','Voucher','','2023-07-01 23:03:31','','0','3','2023-07-01 23:03:31','','0','480','1','retail','0','480','1','0','480','0','0','0','0','new',' ','','','0','31688241798','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2276,'manager','Voucher','','2023-07-01 23:03:58','','0','3','2023-07-01 23:03:58','','0','200','1','retail','0','200','1','0','200','0','0','0','0','new',' ','','','0','31688241836','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2277,'martin','Voucher','','2023-07-01 23:04:43','','0','3','2023-07-01 23:04:43','','0','560','1','retail','0','560','1','0','560','0','0','0','0','new',' ','','','0','31688241878','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2278,'purity','Voucher','','2023-07-01 23:05:41','','0','3','2023-07-01 23:05:41','','0','280','1','retail','0','280','1','0','280','0','0','0','0','new',' ','','','0','31688241939','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2279,'george','Voucher','','2023-07-01 23:06:37','','0','3','2023-07-01 23:06:37','','0','200','1','retail','0','200','1','0','200','0','0','0','0','new',' ','','','0','31688241995','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2280,'','Cash','','2023-07-02 13:39:40','','0','3','2023-07-02 13:39:40','','200','200','1','retail','0','200','1','0','0','0','0','0','0','new',' ','','','0','31688294379','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2281,'sox6','Mpesa','','2023-07-02 13:40:01','','0','3','2023-07-02 13:40:01','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31688294399','Cleared','3','2023-07-02 16:04:29','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2282,'','Cash','','2023-07-02 13:40:13','','0','3','2023-07-02 13:40:13','','200','200','1','retail','0','200','1','0','0','0','0','0','0','new',' ','','','0','31688294411','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2283,'hxk6','Mpesa','','2023-07-02 14:18:19','','0','3','2023-07-02 14:18:19','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31688296697','Cleared','3','2023-07-02 16:03:37','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2284,'u8xm','Mpesa','','2023-07-02 15:24:10','','0','4','2023-07-02 15:24:10','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41688300648','Cleared','4','2023-07-02 19:50:35','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2285,'kzug','Mpesa','','2023-07-02 17:26:32','','0','4','2023-07-02 17:26:32','','350','700','1','retail','0','700','1','0','0','0','0','350','0','printed','','','','0','41688307987','Cleared','4','2023-07-02 20:06:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2286,'wnd7','Mpesa','','2023-07-02 18:19:55','','0','4','2023-07-02 18:18:31','','0','600','1','retail','0','600','1','0','0','0','0','600','0','printed','','','','0','41688311110','Cleared','4','2023-07-02 20:05:24','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2287,'nhyn','Mpesa','','2023-07-02 18:35:04','','0','4','2023-07-02 18:35:04','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41688312103','Cleared','4','2023-07-02 20:03:04','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2288,'kzug','Mpesa','','2023-07-02 18:47:46','','0','4','2023-07-02 18:47:46','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41688312865','Cleared','4','2023-07-02 20:04:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2289,'','Voucher','','2023-07-02 19:30:39','','0','4','2023-07-02 19:30:39','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','manager','','','0','41688315437','Cleared','4','2023-07-02 19:32:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2290,'nfd9','Mpesa','','2023-07-02 19:31:00','','0','4','2023-07-02 19:31:00','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41688315459','Cleared','4','2023-07-02 20:04:45','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2291,'zm6r','Mpesa','','2023-07-02 21:26:25','','0','4','2023-07-02 21:26:25','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41688322383','Cleared','4','2023-07-02 21:53:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2292,'yo72','Mpesa','','2023-07-03 09:47:36','','0','4','2023-07-03 09:47:36','','0','600','1','retail','0','600','1','0','0','0','0','600','0','printed','','','','0','41688366841','Cleared','4','2023-07-03 09:56:37','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2293,'','Voucher','','2023-07-03 11:21:43','','0','4','2023-07-03 11:21:43','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','manager','','','0','41688372502','Cleared','4','2023-07-03 11:22:27','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2294,'mgy5','Mpesa','','2023-07-03 13:24:05','','0','4','2023-07-03 13:24:05','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41688379843','Cleared','4','2023-07-03 15:15:37','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2295,'sygb','Mpesa','','2023-07-03 14:11:46','','0','4','2023-07-03 14:11:46','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41688382704','Cleared','4','2023-07-03 14:12:23','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2296,'hofv','Mpesa','','2023-07-03 14:51:58','','0','4','2023-07-03 14:51:58','','0','600','1','retail','0','600','1','0','0','0','0','600','0','printed','','','','0','41688385114','Cleared','4','2023-07-03 16:26:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2297,'hofv','Mpesa','','2023-07-03 14:58:18','','0','4','2023-07-03 14:58:18','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','41688385497','Cleared','4','2023-07-03 16:27:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2298,'','Delivery','','2023-07-03 15:12:35','','0','4','2023-07-03 15:12:35','','0','280','1','retail','0','280','1','0','0','280','0','0','0','printed','ubereats','','','0','41688386354','Cleared','4','2023-07-03 15:14:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2299,'','Voucher','','2023-07-03 15:27:01','','0','4','2023-07-03 15:27:01','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','mzae','','','0','41688387219','Cleared','4','2023-07-03 15:29:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2300,'q643','Mpesa','','2023-07-03 18:00:26','','0','4','2023-07-03 18:00:26','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41688396425','Cleared','4','2023-07-03 18:01:15','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2301,'','Cash','','2023-07-03 18:52:22','','0','4','2023-07-03 18:52:22','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41688399541','Cleared','4','2023-07-03 20:21:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2302,'ilhx','Mpesa','','2023-07-03 19:12:46','','0','4','2023-07-03 19:12:46','','0','700','1','retail','0','700','1','0','0','0','0','700','0','printed','','','','0','41688400759','Cleared','4','2023-07-03 20:22:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2303,'89nt','Mpesa','','2023-07-03 19:13:07','','0','4','2023-07-03 19:13:07','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41688400786','Cleared','4','2023-07-03 20:26:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2304,'p2ou','Mpesa','','2023-07-03 21:21:42','','0','4','2023-07-03 21:21:42','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41688408500','Cleared','4','2023-07-03 21:51:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2305,'','Cash','','2023-07-03 21:40:31','','0','4','2023-07-03 21:40:31','','630','630','1','retail','0','630','1','0','0','0','0','0','0','printed','','','','0','41688409507','Cleared','4','2023-07-03 21:54:16','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2306,'q51w','Mpesa','','2023-07-04 12:26:37','','0','4','2023-07-04 12:26:37','','0','500','1','retail','0','500','1','0','0','0','0','500','0','printed','','','','0','41688462789','Cleared','4','2023-07-04 13:38:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2307,'xe9z','Mpesa','','2023-07-04 14:04:20','','0','4','2023-07-04 14:04:20','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41688468658','Cleared','4','2023-07-04 16:46:23','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2308,'1wzt','Mpesa','','2023-07-04 16:13:25','','0','4','2023-07-04 16:13:25','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41688476403','Cleared','3','2023-07-04 17:00:57','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2309,'','Cash','','2023-07-04 16:51:00','','0','3','2023-07-04 16:51:00','','280','280','1','retail','0','280','1','0','0','0','0','0','0','printed','','','','0','31688478659','Cleared','3','2023-07-04 17:46:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2310,'486n','Mpesa','','2023-07-04 17:51:45','','0','4','2023-07-04 17:51:45','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41688482303','Cleared','4','2023-07-04 18:05:00','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2311,'','Voucher','','2023-07-04 17:52:10','','0','4','2023-07-04 17:52:10','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','purity','','','0','41688482329','Cleared','4','2023-07-04 18:05:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2312,'hzwq','Mpesa','','2023-07-04 18:18:19','','0','3','2023-07-04 18:18:19','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31688483898','Cleared','3','2023-07-04 20:31:39','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2313,'kmjm','Mpesa','','2023-07-04 21:02:19','','0','3','2023-07-04 21:02:19','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31688493737','Cleared','3','2023-07-04 23:11:04','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2314,'','Cash','','2023-07-04 21:03:34','','0','3','2023-07-04 21:03:34','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed','','','','0','31688493812','Cleared','3','2023-07-04 21:47:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2315,'','Cash','','2023-07-04 23:12:55','','0','3','2023-07-04 23:12:55','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','31688501574','Cleared','3','2023-07-04 23:17:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2316,'t12ml','Mpesa','','2023-07-05 13:35:02','','0','3','2023-07-05 13:35:02','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31688553300','Cleared','3','2023-07-05 13:36:02','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2317,'','Cash','','2023-07-05 13:35:18','','0','3','2023-07-05 13:35:18','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','31688553316','Cleared','3','2023-07-05 21:34:10','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2318,'k8kx','Mpesa','','2023-07-05 13:49:29','','0','3','2023-07-05 13:49:29','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31688554167','Cleared','3','2023-07-05 18:09:47','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2319,'tpob','Mpesa','','2023-07-05 14:34:01','','0','3','2023-07-05 14:34:01','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31688556839','Cleared','3','2023-07-05 16:38:29','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2320,'','Cash','','2023-07-05 14:50:39','','0','3','2023-07-05 14:50:39','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed','','','','0','31688557838','Cleared','3','2023-07-05 14:51:04','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2321,'everlyn','Voucher','','2023-07-05 15:36:16','','0','3','2023-07-05 15:36:16','','0','280','1','retail','0','280','1','0','280','0','0','0','0','new',' ','','','0','31688560575','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2322,'','Cash','','2023-07-05 16:25:01','','0','3','2023-07-05 16:25:01','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed','','','','0','31688563500','Cleared','3','2023-07-05 18:10:16','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2323,'brayo','Voucher','','2023-07-05 16:36:41','','0','3','2023-07-05 16:36:41','','0','350','1','retail','0','350','1','0','350','0','0','0','0','new',' ','','','0','31688564200','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2324,'k8kx','Mpesa','','2023-07-05 16:39:16','','0','3','2023-07-05 16:39:16','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','k8kx','','','0','31688564354','Cleared','3','2023-07-05 18:10:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2325,'765y','Mpesa','','2023-07-05 17:41:48','','0','3','2023-07-05 17:41:48','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','31688568106','Cleared','3','2023-07-05 18:33:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2326,'765y','Mpesa','','2023-07-05 17:42:02','','0','3','2023-07-05 17:42:02','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','31688568120','Cleared','3','2023-07-05 18:34:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2327,'765y','Mpesa','','2023-07-05 17:42:16','','0','3','2023-07-05 17:42:16','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31688568135','Cleared','3','2023-07-05 18:35:24','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2328,'m','Voucher','','2023-07-05 18:35:57','','0','3','2023-07-05 17:53:43','','0','400','1','retail','0','400','1','0','400','0','0','0','0','printed','mzae','','','0','31688568821','Cleared','3','2023-07-05 18:36:49','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2329,'54m4','Mpesa','','2023-07-05 18:00:54','','0','3','2023-07-05 18:00:54','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','31688569253','Cleared','3','2023-07-05 18:34:07','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2330,'manager','Voucher','','2023-07-05 18:37:31','','0','3','2023-07-05 18:37:31','','0','280','1','retail','0','280','1','0','280','0','0','0','0','new',' ','','','0','31688571449','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2331,'driver','Voucher','','2023-07-05 18:37:59','','0','3','2023-07-05 18:37:59','','0','200','1','retail','0','200','1','0','200','0','0','0','0','new',' ','','','0','31688571477','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2332,'brayo','Voucher','','2023-07-05 18:38:55','','0','3','2023-07-05 18:38:55','','0','200','1','retail','0','200','1','0','200','0','0','0','0','new',' ','','','0','31688571534','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2333,'cedrick','Voucher','','2023-07-05 18:40:40','','0','3','2023-07-05 18:40:40','','0','200','1','retail','0','200','1','0','200','0','0','0','0','new',' ','','','0','31688571639','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2334,'s8f8','Mpesa','','2023-07-05 18:41:08','','0','3','2023-07-05 18:41:08','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','31688571664','Cleared','3','2023-07-05 21:02:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2335,'uncle kamande','Voucher','','2023-07-05 18:42:14','','0','3','2023-07-05 18:42:14','','0','350','1','retail','0','350','1','0','350','0','0','0','0','new',' ','','','0','31688571732','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2336,'ijog','Cash','','2023-07-05 19:11:36','','0','3','2023-07-05 19:11:36','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','31688573494','Cleared','3','2023-07-05 21:03:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2337,'bric','Mpesa','','2023-07-05 19:11:54','','0','3','2023-07-05 19:11:54','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31688573512','Cleared','3','2023-07-05 21:01:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2338,'bric','Mpesa','','2023-07-05 19:12:09','','0','3','2023-07-05 19:12:09','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','bric','','','0','31688573527','Cleared','3','2023-07-05 21:00:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2339,'cxpo','Mpesa','','2023-07-05 19:12:23','','0','3','2023-07-05 19:12:23','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31688573541','Cleared','3','2023-07-05 21:37:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2340,'nnn8','Mpesa','','2023-07-05 20:42:39','','0','3','2023-07-05 20:42:39','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','31688578957','Cleared','3','2023-07-05 21:00:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2341,'np8j','Mpesa','','2023-07-05 20:45:43','','0','3','2023-07-05 20:45:43','','0','600','1','retail','0','600','1','0','0','0','0','600','0','printed','','','','0','31688579141','Cleared','3','2023-07-05 20:48:23','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2342,'','Voucher','','2023-07-05 21:03:54','','0','3','2023-07-05 21:03:54','','0','660','1','retail','0','660','1','0','660','0','0','0','0','printed','brayos wife','','','0','31688580209','Cleared','3','2023-07-05 21:04:35','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2343,'brayo','Voucher','','2023-07-05 21:08:31','','0','3','2023-07-05 21:08:31','','0','200','1','retail','0','200','1','0','200','0','0','0','0','new',' ','','','0','31688580510','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2344,'ruth','Voucher','','2023-07-05 21:09:32','','0','3','2023-07-05 21:09:32','','0','250','1','retail','0','250','1','0','250','0','0','0','0','new',' ','','','0','31688580571','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2345,'everlyn','Voucher','','2023-07-06 12:26:58','','0','3','2023-07-06 12:26:58','','0','840','1','retail','0','840','1','0','840','0','0','0','0','new',' ','','','0','31688635610','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2346,'mixologist','Voucher','','2023-07-06 12:27:34','','0','3','2023-07-06 12:27:34','','0','200','1','retail','0','200','1','0','200','0','0','0','0','new',' ','','','0','31688635652','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2347,'','Voucher','','2023-07-06 12:27:59','','0','3','2023-07-06 12:27:59','','0','350','1','retail','0','350','1','0','350','0','0','0','0','printed','everlyn','','','0','31688635678','Cleared','3','2023-07-06 12:29:33','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2348,'unex','Mpesa','','2023-07-06 12:28:15','','0','3','2023-07-06 12:28:15','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','31688635693','Cleared','4','2023-07-06 21:56:34','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2349,'fa9o','Mpesa','','2023-07-06 12:28:41','','0','3','2023-07-06 12:28:41','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31688635719','Cleared','3','2023-07-06 15:38:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2350,'zgrb','Mpesa','','2023-07-06 12:41:46','','0','3','2023-07-06 12:41:46','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31688636505','Cleared','3','2023-07-06 15:41:15','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2351,'','Voucher','','2023-07-06 12:42:22','','0','3','2023-07-06 12:42:22','','0','150','1','retail','0','150','1','0','150','0','0','0','0','printed','cedrick','','','0','31688636540','Cleared','3','2023-07-06 15:39:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2352,'9eiw','Mpesa','','2023-07-06 15:23:03','','0','4','2023-07-06 15:23:03','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41688646181','Cleared','4','2023-07-06 15:49:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2353,'','Voucher','','2023-07-06 16:49:47','','0','4','2023-07-06 16:49:47','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','mzae','','','0','41688651386','Cleared','4','2023-07-06 16:50:24','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2354,'tz7t','Mpesa','','2023-07-06 17:14:28','','0','4','2023-07-06 17:14:28','','0','100','1','retail','0','100','1','0','0','0','0','100','0','printed','xlir','','','0','41688652867','Cleared','4','2023-07-06 21:51:00','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2355,'e8c7','Mpesa','','2023-07-06 18:03:21','','0','4','2023-07-06 18:03:21','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41688655799','Cleared','4','2023-07-06 18:13:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2356,'ublf','Mpesa','','2023-07-06 18:48:11','','0','4','2023-07-06 18:48:11','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41688658489','Cleared','4','2023-07-06 21:13:27','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2357,'aajm','Mpesa','','2023-07-06 20:23:16','','0','4','2023-07-06 20:23:16','','0','550','1','retail','0','550','1','0','0','0','0','550','0','printed','','','','0','41688664188','Cleared','4','2023-07-06 20:57:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2358,'xlir','Mpesa','','2023-07-06 20:40:24','','0','4','2023-07-06 20:40:24','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41688665223','Cleared','4','2023-07-06 21:51:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2359,'2hpd','Mpesa','','2023-07-06 20:54:22','','0','4','2023-07-06 20:54:22','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','41688666057','Cleared','4','2023-07-06 20:58:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2360,'2kno','Mpesa','','2023-07-06 20:55:41','','0','4','2023-07-06 20:55:41','','0','480','1','retail','0','480','1','0','0','0','0','480','0','printed','','','','0','41688666119','Cleared','4','2023-07-06 20:59:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2361,'','Voucher','','2023-07-06 21:24:21','','0','4','2023-07-06 21:24:21','','0','350','1','retail','0','350','1','0','350','0','0','0','0','printed','manager','','','0','41688667860','Cleared','4','2023-07-06 21:24:57','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2362,'xfno','Mpesa','','2023-07-06 21:46:38','','0','4','2023-07-06 21:46:38','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41688669196','Cleared','4','2023-07-06 21:52:12','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2363,'u6ma','Mpesa','','2023-07-07 10:56:18','','0','4','2023-07-07 10:56:18','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','41688716573','Cleared','4','2023-07-07 22:01:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2364,'6lxd','Mpesa','','2023-07-07 11:18:11','','0','4','2023-07-07 11:18:12','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41688717890','Cleared','4','2023-07-07 11:21:37','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2365,'s5zj','Mpesa','','2023-07-07 13:14:06','','0','4','2023-07-07 13:14:06','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41688724844','Cleared','4','2023-07-07 17:44:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2366,'onj1','Mpesa','','2023-07-07 13:18:04','','0','4','2023-07-07 13:18:04','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41688725082','Cleared','4','2023-07-07 17:54:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2367,'','Cash','','2023-07-07 13:18:38','','0','4','2023-07-07 13:18:38','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed','','','','0','41688725116','Cleared','4','2023-07-07 17:02:43','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2368,'vjbq','Mpesa','','2023-07-07 15:16:45','','0','4','2023-07-07 15:16:45','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41688732204','Cleared','4','2023-07-07 17:27:27','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2369,'','Cash','','2023-07-07 17:02:20','','0','4','2023-07-07 17:02:20','','200','200','1','retail','0','200','1','0','0','0','0','0','0','new',' ','','','0','41688738538','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2370,'8um1','Mpesa','','2023-07-07 18:26:32','','0','4','2023-07-07 18:26:32','','0','1010','1','retail','0','1010','1','0','0','0','0','1010','0','printed','','','','0','41688743523','Cleared','4','2023-07-07 19:27:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2371,'xxep','Mpesa','','2023-07-07 19:06:21','','0','4','2023-07-07 19:06:21','','0','560','1','retail','0','560','1','0','0','0','0','560','0','printed','','','','0','41688745974','Cleared','4','2023-07-07 19:06:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2372,'m','Voucher','','2023-07-07 19:39:29','','0','4','2023-07-07 19:39:29','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','mzae','','','0','41688747967','Cleared','4','2023-07-07 20:42:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2373,'','Voucher','','2023-07-07 19:39:56','','0','4','2023-07-07 19:39:56','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','purity','','','0','41688747995','Cleared','4','2023-07-07 21:24:23','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2374,'kbo8','Mpesa','','2023-07-07 19:40:15','','0','4','2023-07-07 19:40:15','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41688748014','Cleared','4','2023-07-07 20:43:45','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2375,'zxzi','Mpesa','','2023-07-07 20:42:00','','0','4','2023-07-07 20:42:00','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','41688751715','Cleared','4','2023-07-07 21:11:38','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2376,'','Delivery','','2023-07-07 21:23:22','','0','4','2023-07-07 21:23:22','','0','250','1','retail','0','250','1','0','0','250','0','0','0','printed','ubereats','','','0','41688754200','Cleared','4','2023-07-07 21:23:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2377,'','Voucher','','2023-07-07 21:24:34','','0','4','2023-07-07 21:24:34','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','purity','','','0','41688754273','Cleared','4','2023-07-07 21:25:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2378,'+-','Mpesa','','2023-07-08 11:53:41','','0','3','2023-07-08 11:38:02','','0','600','1','retail','0','600','1','0','0','0','0','600','0','printed','','','','0','31688805477','Cleared','3','2023-07-08 16:46:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2379,'','Mpesa','','2023-07-08 15:45:41','','0','3','2023-07-08 15:45:41','','0','1300','1','retail','0','1300','1','0','0','0','0','1300','0','printed','q9q6','','','0','31688820086','Cleared','3','2023-07-08 16:36:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2380,'','Cash','','2023-07-08 16:54:52','','0','3','2023-07-08 16:54:52','','300','300','1','retail','0','300','1','0','0','0','0','0','0','new',' ','','','0','31688824491','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2381,'','Cash','','2023-07-08 16:55:36','','0','4','2023-07-08 16:55:36','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41688824534','Cleared','4','2023-07-08 17:51:07','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2382,'','Voucher','','2023-07-08 17:07:46','','0','4','2023-07-08 17:07:46','','0','150','1','retail','0','150','1','0','150','0','0','0','0','printed','purity','','','0','41688825265','Cleared','4','2023-07-08 21:59:24','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2383,'9r04','Mpesa','','2023-07-08 17:22:06','','0','4','2023-07-08 17:22:06','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41688826124','Cleared','4','2023-07-08 17:22:37','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2384,'iv4k','Mpesa','','2023-07-08 17:50:33','','0','4','2023-07-08 17:50:33','','0','1380','1','retail','0','1380','1','0','0','0','0','1380','0','printed','','','','0','41688827778','Cleared','4','2023-07-08 18:11:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2385,'','Cash','','2023-07-08 17:55:45','','0','4','2023-07-08 17:55:45','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41688828143','Cleared','4','2023-07-08 18:36:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2386,'','Cash','','2023-07-08 19:00:06','','0','4','2023-07-08 19:00:06','','480','480','1','retail','0','480','1','0','0','0','0','0','0','printed','','','','0','41688832001','Cleared','4','2023-07-08 20:31:42','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2387,'phze','Mpesa','','2023-07-08 19:29:19','','0','4','2023-07-08 19:29:19','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','41688833757','Cleared','4','2023-07-08 19:41:40','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2388,'15dd','Mpesa','','2023-07-08 20:13:03','','0','4','2023-07-08 20:13:03','','50','350','1','retail','0','350','1','0','0','0','0','300','0','printed','','','','0','41688836381','Cleared','4','2023-07-08 20:31:12','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2389,'lioc','Mpesa','','2023-07-08 20:26:01','','0','4','2023-07-08 20:26:01','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41688837160','Cleared','4','2023-07-08 21:58:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2390,'lioc','Mpesa','','2023-07-08 20:45:49','','0','4','2023-07-08 20:45:49','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41688838347','Cleared','4','2023-07-08 21:58:34','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2391,'lioc','Mpesa','','2023-07-08 21:19:30','','0','4','2023-07-08 21:19:30','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41688840368','Cleared','4','2023-07-08 21:58:12','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2392,'2nos','Mpesa','','2023-07-08 21:35:40','','0','4','2023-07-08 21:35:40','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','41688841339','Cleared','4','2023-07-08 21:36:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2393,'iw9g','Mpesa','','2023-07-09 10:02:14','','0','4','2023-07-09 10:02:14','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','iw9g','','','0','41688886133','Cleared','4','2023-07-09 15:42:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2394,'','Voucher','','2023-07-09 10:02:29','','0','4','2023-07-09 10:02:29','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','purity','','','0','41688886148','Cleared','3','2023-07-09 22:24:37','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2395,'','Cash','','2023-07-09 10:02:50','','0','4','2023-07-09 10:02:50','','280','280','1','retail','0','280','1','0','0','0','0','0','0','printed','','','','0','41688886168','Cleared','3','2023-07-09 18:28:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2396,'','Voucher','','2023-07-09 10:03:25','','0','4','2023-07-09 10:03:25','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','purity\r\n','','','0','41688886203','Cleared','3','2023-07-09 19:37:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2397,'93i5','Mpesa','','2023-07-09 15:43:01','','0','4','2023-07-09 15:43:01','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41688906579','Cleared','4','2023-07-09 15:43:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2398,'lj4g','Mpesa','','2023-07-09 16:32:04','','0','3','2023-07-09 16:32:04','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','31688909523','Cleared','3','2023-07-09 18:06:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2399,'','Cash','','2023-07-09 17:39:28','','0','4','2023-07-09 17:39:28','','280','280','1','retail','0','280','1','0','0','0','0','0','0','printed','','','','0','41688913567','Cleared','3','2023-07-09 18:29:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2400,'','Cash','','2023-07-09 18:04:37','','0','3','2023-07-09 18:04:37','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed','','','','0','31688915076','Cleared','3','2023-07-09 18:06:12','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2401,'5ctk','Mpesa','','2023-07-09 18:43:24','','0','3','2023-07-09 18:43:24','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31688917395','Cleared','3','2023-07-09 18:52:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2402,'','Mpesa','','2023-07-09 19:38:15','','0','3','2023-07-09 19:38:15','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','noga\r\n','','','0','31688920693','Cleared','3','2023-07-09 19:39:24','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2403,'','Cash','','2023-07-09 20:34:08','','0','3','2023-07-09 20:34:08','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed','','','','0','31688924032','Cleared','3','2023-07-09 21:20:15','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2404,'4w4w','Mpesa','','2023-07-09 21:19:45','','0','3','2023-07-09 21:19:45','','0','480','1','retail','0','480','1','0','0','0','0','480','0','printed','','','','0','31688926774','Cleared','3','2023-07-09 22:25:11','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2405,'','Delivery','','2023-07-09 22:25:37','','0','3','2023-07-09 22:25:37','','0','250','1','retail','0','250','1','0','0','250','0','0','0','printed','','','','0','31688930735','Cleared','3','2023-07-09 22:25:57','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2406,'cedrick','Voucher','','2023-07-09 22:31:05','','0','3','2023-07-09 22:31:05','','0','200','1','retail','0','200','1','0','200','0','0','0','0','new',' ','','','0','31688931063','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2407,'manager','Voucher','','2023-07-09 22:31:28','','0','3','2023-07-09 22:31:28','','0','300','1','retail','0','300','1','0','300','0','0','0','0','new',' ','','','0','31688931086','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2408,'mzae','Voucher','','2023-07-09 22:31:53','','0','3','2023-07-09 22:31:53','','0','200','1','retail','0','200','1','0','200','0','0','0','0','new',' ','','','0','31688931111','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2409,'george','Voucher','','2023-07-09 22:32:17','','0','3','2023-07-09 22:32:17','','0','200','1','retail','0','200','1','0','200','0','0','0','0','new',' ','','','0','31688931136','Cleared','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2410,'1ktv','Mpesa','','2023-07-10 10:10:15','','0','4','2023-07-10 10:10:15','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41688973014','Cleared','4','2023-07-10 10:10:48','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2411,'','Cash','','2023-07-10 12:00:08','','0','4','2023-07-10 12:00:08','','250','250','1','retail','0','250','1','0','0','0','0','0','0','new',' ','','','0','41688979606','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2412,'','Cash','','2023-07-10 17:32:48','','0','4','2023-07-10 17:32:48','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41688999566','Cleared','4','2023-07-10 18:03:38','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2413,'','Voucher','','2023-07-10 17:59:37','','0','4','2023-07-10 17:59:37','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','mzae','','','0','41689001176','Cleared','4','2023-07-10 18:05:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2414,'4yh5','Mpesa','','2023-07-10 18:18:25','','0','4','2023-07-10 18:18:25','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41689002304','Cleared','4','2023-07-10 18:50:27','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2415,'','Cash','','2023-07-10 20:33:56','','0','4','2023-07-10 20:33:56','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed','','','','0','41689010428','Cleared','4','2023-07-10 20:43:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2416,'1el2','Mpesa','','2023-07-14 21:59:21','','0','3','2023-07-14 21:59:21','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31689361160','Cleared','3','2023-07-14 23:05:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2417,'','Cash','','2023-07-14 22:14:06','','0','3','2023-07-14 22:14:06','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','31689362045','Cleared','3','2023-07-14 23:05:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2418,'eror','Mpesa','','2023-07-14 22:14:25','','0','3','2023-07-14 22:14:25','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31689362064','Cleared','3','2023-07-14 23:04:57','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2419,'error','Mpesa','','2023-07-14 22:14:55','','0','3','2023-07-14 22:14:55','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','31689362094','Cleared','3','2023-07-14 23:04:29','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2420,'','Cash','','2023-07-14 22:15:47','','0','3','2023-07-14 22:15:47','','280','280','1','retail','0','280','1','0','0','0','0','0','0','printed','','','','0','31689362146','Cleared','3','2023-07-14 23:03:59','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2421,'uber eats','Delivery','','2023-07-14 22:16:45','','0','3','2023-07-14 22:16:45','','0','1300','1','retail','0','1300','1','0','0','1300','0','0','0','printed','','','','0','31689362180','Cleared','3','2023-07-14 22:59:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2422,'','Delivery','','2023-07-14 22:17:26','','0','3','2023-07-14 22:17:26','','0','200','1','retail','0','200','1','0','0','200','0','0','0','printed','uber eats','','','0','31689362245','Cleared','3','2023-07-14 22:58:05','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2423,'','Cash','','2023-07-14 22:17:38','','0','3','2023-07-14 22:17:38','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','31689362257','Cleared','3','2023-07-14 22:56:21','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2424,'error','Mpesa','','2023-07-14 22:18:11','','0','3','2023-07-14 22:18:11','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31689362290','Cleared','3','2023-07-14 22:56:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2425,'','Delivery','','2023-07-14 22:18:44','','0','3','2023-07-14 22:18:44','','0','700','1','retail','0','700','1','0','0','700','0','0','0','printed','uber eats','','','0','31689362321','Cleared','3','2023-07-14 22:54:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2426,'eror','Mpesa','','2023-07-14 22:19:07','','0','3','2023-07-14 22:19:07','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','31689362346','Cleared','3','2023-07-14 22:53:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2427,'eror','Mpesa','','2023-07-14 22:19:30','','0','3','2023-07-14 22:19:30','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31689362368','Cleared','3','2023-07-14 22:51:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2428,'eror','Mpesa','','2023-07-14 22:19:51','','0','3','2023-07-14 22:19:51','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31689362390','Cleared','3','2023-07-14 22:51:11','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2429,'weror','Mpesa','','2023-07-14 22:20:07','','0','3','2023-07-14 22:20:07','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31689362405','Cleared','3','2023-07-14 22:50:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2430,'error','Mpesa','','2023-07-14 22:20:25','','0','3','2023-07-14 22:20:25','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31689362424','Cleared','3','2023-07-14 22:50:10','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2431,'','Cash','','2023-07-14 22:20:41','','0','3','2023-07-14 22:20:41','','280','280','1','retail','0','280','1','0','0','0','0','0','0','printed','','','','0','31689362440','Cleared','3','2023-07-14 22:48:17','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2432,'error','Mpesa','','2023-07-14 22:21:01','','0','3','2023-07-14 22:21:01','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31689362460','Cleared','3','2023-07-14 22:47:59','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2433,'eror','Mpesa','','2023-07-14 22:22:14','','0','3','2023-07-14 22:22:14','','0','550','1','retail','0','550','1','0','0','0','0','550','0','printed','','','','0','31689362509','Cleared','3','2023-07-14 22:46:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2434,'error','Mpesa','','2023-07-14 22:22:31','','0','3','2023-07-14 22:22:31','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31689362550','Cleared','3','2023-07-14 22:44:12','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2435,'','Cash','','2023-07-14 22:22:55','','0','3','2023-07-14 22:22:55','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','31689362574','Cleared','3','2023-07-14 22:42:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2436,'error','Mpesa','','2023-07-14 22:23:42','','0','3','2023-07-14 22:23:42','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31689362621','Cleared','3','2023-07-14 22:42:21','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2437,'','Voucher','','2023-07-14 22:25:04','','0','3','2023-07-14 22:25:04','','0','100','1','retail','0','100','1','0','100','0','0','0','0','printed','purity','','','0','31689362703','Cleared','3','2023-07-14 22:41:56','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2438,'','Voucher','','2023-07-14 22:25:16','','0','3','2023-07-14 22:25:16','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','purity','','','0','31689362715','Cleared','3','2023-07-14 22:40:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2439,'error','Mpesa','','2023-07-14 22:26:45','','0','3','2023-07-14 22:26:45','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','31689362803','Cleared','3','2023-07-14 22:38:12','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2440,'error','Mpesa','','2023-07-14 22:27:21','','0','3','2023-07-14 22:27:21','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','31689362840','Cleared','3','2023-07-14 22:37:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2441,'eror','Mpesa','','2023-07-14 22:27:41','','0','3','2023-07-14 22:27:41','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31689362859','Cleared','3','2023-07-14 22:35:56','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2442,'','Cash','','2023-07-14 22:27:58','','0','3','2023-07-14 22:27:58','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed','','','','0','31689362877','Cleared','3','2023-07-14 22:35:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2443,'','Cash','','2023-07-14 22:28:32','','0','3','2023-07-14 22:28:32','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed','','','','0','31689362911','Cleared','3','2023-07-14 22:34:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2444,'','Cash','','2023-07-14 22:28:42','','0','3','2023-07-14 22:28:42','','280','280','1','retail','0','280','1','0','0','0','0','0','0','printed','','','','0','31689362920','Cleared','3','2023-07-14 22:34:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2445,'','Cash','','2023-07-14 22:29:48','','0','3','2023-07-14 22:29:48','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','31689362987','Cleared','3','2023-07-14 22:34:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2446,'','Cash','','2023-07-14 22:30:03','','0','3','2023-07-14 22:30:03','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','31689363002','Cleared','3','2023-07-14 22:34:10','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2447,'','Delivery','','2023-07-14 22:31:56','','0','3','2023-07-14 22:31:56','','0','350','1','retail','0','350','1','0','0','350','0','0','0','printed','uber eats','','','0','31689363115','Cleared','3','2023-07-14 22:33:57','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2448,'eror','Mpesa','','2023-07-14 22:32:30','','0','3','2023-07-14 22:32:30','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','31689363149','Cleared','3','2023-07-14 22:33:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2449,'97v7','Mpesa','','2023-07-15 12:48:36','','0','3','2023-07-15 12:29:13','','0','560','1','retail','0','560','1','0','0','0','0','560','0','printed','','','','0','31689413352','Cleared','4','2023-07-15 15:48:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2450,'uber eats','Delivery','','2023-07-15 15:46:23','','0','3','2023-07-15 15:46:23','','0','950','1','retail','0','950','1','0','0','950','0','0','0','printed','','','','0','31689425160','Cleared','3','2023-07-15 15:47:15','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2451,'wsc1','Mpesa','','2023-07-15 15:47:36','','0','4','2023-07-15 15:47:36','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41689425255','Cleared','4','2023-07-15 15:48:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2452,'yvla','Mpesa','','2023-07-15 16:00:52','','0','4','2023-07-15 16:00:52','','0','480','1','retail','0','480','1','0','0','0','0','480','0','printed','','','','0','41689426047','Cleared','4','2023-07-15 16:03:11','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2453,'eddk','Mpesa','','2023-07-15 18:37:52','','0','4','2023-07-15 18:37:52','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41689435471','Cleared','4','2023-07-15 18:43:29','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2454,'','Cash','','2023-07-15 19:02:45','','0','4','2023-07-15 19:02:45','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','41689436964','Cleared','4','2023-07-15 21:36:36','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2455,'','Voucher','','2023-07-15 19:21:49','','0','4','2023-07-15 19:21:49','','0','400','1','retail','0','400','1','0','400','0','0','0','0','printed','evelyne','','','0','41689438104','Cleared','4','2023-07-15 21:19:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2456,'','Voucher','','2023-07-15 19:21:59','','0','4','2023-07-15 19:21:59','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','manager','','','0','41689438117','Cleared','4','2023-07-15 21:23:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2457,'vi1h','Mpesa','','2023-07-15 20:48:53','','0','4','2023-07-15 20:48:53','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41689443332','Cleared','4','2023-07-15 21:36:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2458,'','Voucher','','2023-07-15 21:37:06','','0','4','2023-07-15 21:37:06','','0','380','1','retail','0','380','1','0','380','0','0','0','0','printed','martin','','','0','41689446212','Cleared','4','2023-07-15 21:38:07','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2459,'','Voucher','','2023-07-15 21:37:18','','0','4','2023-07-15 21:37:18','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','purity','','','0','41689446237','Cleared','4','2023-07-15 21:38:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2460,'','Voucher','','2023-07-15 21:37:29','','0','4','2023-07-15 21:37:29','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','uncle','','','0','41689446247','Cleared','4','2023-07-15 21:38:57','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2461,'74du','Mpesa','','2023-07-16 09:03:33','','0','4','2023-07-16 09:03:33','','0','380','1','retail','0','380','1','0','0','0','0','380','0','printed','','','','0','41689487404','Cleared','4','2023-07-16 10:39:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2462,'','Voucher','','2023-07-16 10:31:26','','0','4','2023-07-16 10:31:26','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','sofi','','','0','41689492685','Cleared','4','2023-07-16 10:33:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2463,'','Voucher','','2023-07-16 10:51:46','','0','4','2023-07-16 10:51:46','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','purity','','','0','41689493905','Cleared','4','2023-07-16 11:57:16','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2464,'OAIV','Mpesa','','2023-07-16 11:45:17','','0','4','2023-07-16 11:45:18','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','41689497116','Cleared','4','2023-07-16 21:48:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2465,'','Delivery','','2023-07-16 14:10:32','','0','4','2023-07-16 14:10:32','','0','280','1','retail','0','280','1','0','0','280','0','0','0','printed','ubereats','','','0','41689505830','Cleared','4','2023-07-16 19:05:33','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2466,'','Delivery','','2023-07-16 14:12:57','','0','4','2023-07-16 14:12:57','','0','200','1','retail','0','200','1','0','0','200','0','0','0','printed','ubereats','','','0','41689505976','Cleared','4','2023-07-16 19:06:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2467,'','Voucher','','2023-07-16 16:43:17','','0','4','2023-07-16 16:43:17','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','CLAUDIA','','','0','41689514996','Cleared','4','2023-07-16 22:01:04','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2468,'','Cash','','2023-07-16 18:42:15','','0','4','2023-07-16 18:42:15','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','41689522134','Cleared','4','2023-07-16 19:06:16','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2469,'JYEV','Mpesa','','2023-07-16 19:08:16','','0','4','2023-07-16 19:08:16','','0','500','1','retail','0','500','1','0','0','0','0','500','0','printed','','','','0','41689523684','Cleared','4','2023-07-16 20:27:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2470,'XIJJ','Mpesa','','2023-07-16 20:46:10','','0','4','2023-07-16 20:46:10','','0','500','1','retail','0','500','1','0','0','0','0','500','0','printed','','','','0','41689529549','Cleared','4','2023-07-16 21:47:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2471,'Y741','Cash','','2023-07-16 21:36:50','','0','4','2023-07-16 21:36:50','','1000','1050','1','retail','0','1050','1','0','0','0','0','50','0','printed','','','','0','41689532603','Cleared','4','2023-07-16 22:02:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2472,'thk0','Mpesa','','2023-07-17 12:03:53','','0','4','2023-07-17 12:03:53','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41689584632','Cleared','4','2023-07-17 15:44:11','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2473,'','Cash','','2023-07-17 13:21:24','','0','4','2023-07-17 13:21:24','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed','','','','0','41689589283','Cleared','4','2023-07-17 15:05:40','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2474,'','Voucher','','2023-07-17 14:20:05','','0','4','2023-07-17 14:20:05','','0','560','1','retail','0','560','1','0','560','0','0','0','0','printed','mzae uncle','','','0','41689592801','Cleared','4','2023-07-17 15:43:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2475,'','Cash','','2023-07-17 14:52:26','','0','4','2023-07-17 14:52:26','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed','','','','0','41689594745','Cleared','4','2023-07-17 15:42:40','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2476,'','Cash','','2023-07-17 15:27:49','','0','4','2023-07-17 15:27:49','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41689596868','Cleared','4','2023-07-17 15:42:56','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2477,'','Voucher','','2023-07-17 17:05:33','','0','4','2023-07-17 17:05:33','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','manager','','','0','41689602732','Cleared','4','2023-07-17 17:35:05','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2478,'','Voucher','','2023-07-17 17:27:28','','0','4','2023-07-17 17:27:28','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','mzae','','','0','41689604046','Cleared','4','2023-07-17 17:36:17','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2479,'','Delivery','','2023-07-17 17:36:54','','0','4','2023-07-17 17:36:54','','0','350','1','retail','0','350','1','0','0','350','0','0','0','printed','ubereats','','','0','41689604613','Cleared','4','2023-07-17 17:37:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2480,'HUQA','Mpesa','','2023-07-17 17:55:18','','0','4','2023-07-17 17:55:18','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41689605717','Cleared','4','2023-07-17 18:17:15','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2481,'N3OJ','Mpesa','','2023-07-17 18:02:46','','0','4','2023-07-17 18:02:46','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','41689606149','Cleared','4','2023-07-17 19:05:04','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2482,'','Voucher','','2023-07-17 20:48:48','','0','4','2023-07-17 20:48:48','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','PURITY','','','0','41689616127','Cleared','4','2023-07-17 20:49:45','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2483,'','Voucher','','2023-07-17 20:49:12','','0','4','2023-07-17 20:49:12','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','CLAUDIA','','','0','41689616151','Cleared','4','2023-07-17 20:50:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2484,'','Voucher','','2023-07-17 21:12:05','','0','4','2023-07-17 21:12:05','','0','380','1','retail','0','380','1','0','380','0','0','0','0','printed','MZAE','','','0','41689617514','Cleared','4','2023-07-17 21:12:35','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2485,'','Cash','','2023-07-17 21:30:13','','0','4','2023-07-17 21:30:13','','280','280','1','retail','0','280','1','0','0','0','0','0','0','printed','','','','0','41689618612','Cleared','4','2023-07-17 21:51:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2486,'','Cash','','2023-07-18 08:57:45','','0','4','2023-07-18 08:57:45','','200','200','1','retail','0','200','1','0','0','0','0','0','0','new',' ','','','0','41689659863','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2487,'E1H9','Mpesa','','2023-07-18 11:47:30','','0','4','2023-07-18 11:47:30','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41689670049','Cleared','4','2023-07-18 12:53:42','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2488,'6NWP','Mpesa','','2023-07-18 14:27:33','','0','4','2023-07-18 14:27:33','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41689679652','Cleared','4','2023-07-18 15:41:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2489,'','Voucher','','2023-07-18 14:35:46','','0','4','2023-07-18 14:35:46','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','Uncle','','','0','41689680145','Cleared','4','2023-07-18 18:20:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2490,'','Voucher','','2023-07-18 16:37:26','','0','4','2023-07-18 16:37:26','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','Manager','','','0','41689687445','Cleared','4','2023-07-18 18:19:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2491,'','Voucher','','2023-07-18 18:14:55','','0','4','2023-07-18 18:14:55','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','George','','','0','41689693294','Cleared','4','2023-07-18 18:18:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2492,'83GU','Mpesa','','2023-07-18 18:15:05','','0','4','2023-07-18 18:15:05','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41689693303','Cleared','4','2023-07-18 19:13:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2493,'','Delivery','','2023-07-18 18:31:13','','0','4','2023-07-18 18:31:13','','0','400','1','retail','0','400','1','0','0','400','0','0','0','printed','ubereats','','','0','41689694265','Cleared','4','2023-07-18 18:31:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2494,'','Voucher','','2023-07-18 19:00:00','','0','4','2023-07-18 19:00:00','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','Sofi','','','0','41689695999','Cleared','4','2023-07-18 19:01:23','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2495,'','Cash','','2023-07-18 19:02:33','','0','4','2023-07-18 19:02:33','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41689696152','Cleared','4','2023-07-18 19:25:34','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2496,'N1I4','Mpesa','','2023-07-18 19:17:10','','0','4','2023-07-18 19:17:10','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41689697028','Cleared','4','2023-07-18 19:18:43','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2497,'659R','Mpesa','','2023-07-18 19:50:09','','0','4','2023-07-18 19:50:09','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41689699008','Cleared','4','2023-07-18 19:59:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2498,'C8UM','Mpesa','','2023-07-18 20:11:44','','0','4','2023-07-18 20:11:44','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41689700303','Cleared','4','2023-07-18 21:37:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2499,'','Cash','','2023-07-18 20:26:49','','0','4','2023-07-18 20:26:49','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed','','','','0','41689701196','Cleared','4','2023-07-18 20:38:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2500,'8APQ','Mpesa','','2023-07-20 09:55:06','','0','4','2023-07-20 09:55:06','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41689836105','Cleared','4','2023-07-20 09:56:07','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2501,'','Voucher','','2023-07-20 10:44:41','','0','4','2023-07-20 10:44:41','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','Sofi','','','0','41689839080','Cleared','4','2023-07-20 10:46:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2502,'vu9d','Mpesa','','2023-07-20 11:00:56','','0','4','2023-07-20 11:00:56','','100','280','1','retail','0','280','1','0','0','0','0','180','0','printed','','','','0','41689840055','Cleared','4','2023-07-20 12:19:04','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2503,'vu9d','Mpesa','','2023-07-20 11:12:06','','0','4','2023-07-20 11:12:06','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41689840725','Cleared','4','2023-07-20 12:19:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2504,'vu9d','Mpesa','','2023-07-20 11:14:41','','0','4','2023-07-20 11:14:41','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41689840879','Cleared','4','2023-07-20 12:20:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2505,'N8JH','Mpesa','','2023-07-20 11:21:53','','0','4','2023-07-20 11:21:53','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41689841312','Cleared','4','2023-07-20 21:20:21','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2506,'GM43','Mpesa','','2023-07-20 11:39:42','','0','4','2023-07-20 11:39:42','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41689842381','Cleared','4','2023-07-20 12:23:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2507,'CQ4Z','Mpesa','','2023-07-20 16:48:11','','0','4','2023-07-20 16:48:11','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41689860881','Cleared','4','2023-07-20 18:24:07','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2508,'PPWC','Mpesa','','2023-07-20 16:56:59','','0','4','2023-07-20 16:56:59','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41689861418','Cleared','4','2023-07-20 18:19:29','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2509,'12AM','Mpesa','','2023-07-20 17:06:05','','0','4','2023-07-20 17:06:05','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41689861964','Cleared','4','2023-07-20 18:20:07','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2510,'12AM','Mpesa','','2023-07-20 17:10:59','','0','4','2023-07-20 17:10:59','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41689862258','Cleared','4','2023-07-20 18:20:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2511,'X94R','Mpesa','','2023-07-20 18:25:34','','0','4','2023-07-20 18:25:34','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41689866733','Cleared','4','2023-07-20 19:09:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2512,'GCFT','Mpesa','','2023-07-20 20:23:12','','0','4','2023-07-20 20:23:12','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41689873791','Cleared','4','2023-07-20 20:29:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2513,'','Voucher','','2023-07-20 20:35:02','','0','4','2023-07-20 20:35:02','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','MANAGER','','','0','41689874501','Cleared','4','2023-07-20 20:35:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2514,'','Voucher','','2023-07-20 20:54:28','','0','4','2023-07-20 20:54:28','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','GEORGE','','','0','41689875666','Cleared','4','2023-07-20 20:55:08','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2515,'','Cash','','2023-07-20 21:19:20','','0','4','2023-07-20 21:19:20','','550','550','1','retail','0','550','1','0','0','0','0','0','0','printed','','','','0','41689877147','Cleared','4','2023-07-20 21:52:43','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2516,'FK9G','Mpesa','','2023-07-20 21:45:29','','0','4','2023-07-20 21:45:29','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41689878728','Cleared','4','2023-07-20 22:01:47','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2517,'','Voucher','','2023-07-20 21:55:04','','0','4','2023-07-20 21:55:04','','0','500','1','retail','0','500','1','0','500','0','0','0','0','printed','CLAUDIA PURITY','','','0','41689879300','Cleared','4','2023-07-20 21:55:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2518,'NI32','Mpesa','','2023-07-21 08:42:53','','0','4','2023-07-21 08:42:53','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41689918172','Cleared','4','2023-07-21 10:21:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2519,'','Cash','','2023-07-21 10:44:15','','0','4','2023-07-21 10:44:15','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41689925454','Cleared','4','2023-07-21 19:55:32','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2520,'GP33','Mpesa','','2023-07-21 12:01:52','','0','4','2023-07-21 12:01:52','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','41689930103','Cleared','4','2023-07-21 12:29:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2521,'GP33','Mpesa','','2023-07-21 12:19:39','','0','4','2023-07-21 12:19:39','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41689931178','Cleared','4','2023-07-21 12:31:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2522,'LGGT','Mpesa','','2023-07-21 15:29:27','','0','4','2023-07-21 15:29:27','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41689942565','Cleared','4','2023-07-21 16:04:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2523,'','Voucher','','2023-07-21 15:49:36','','0','4','2023-07-21 15:49:36','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','sofi','','','0','41689943775','Cleared','4','2023-07-21 15:50:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2524,'','Voucher','','2023-07-21 20:34:52','','0','4','2023-07-21 20:34:52','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','Manager','','','0','41689960891','Cleared','4','2023-07-21 20:35:37','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2525,'CUYN','Mpesa','','2023-07-21 20:50:21','','0','4','2023-07-21 20:50:21','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41689961819','Cleared','4','2023-07-21 20:51:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2526,'','Voucher','','2023-07-21 21:33:08','','0','4','2023-07-21 21:33:08','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','claudia','','','0','41689964387','Cleared','4','2023-07-21 21:34:11','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2527,'','Voucher','','2023-07-21 21:33:26','','0','4','2023-07-21 21:33:26','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','purity','','','0','41689964405','Cleared','4','2023-07-21 21:35:12','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2528,'','Voucher','','2023-07-21 21:36:37','','0','4','2023-07-21 21:36:37','','0','150','1','retail','0','150','1','0','150','0','0','0','0','printed','Purity','','','0','41689964595','Cleared','4','2023-07-21 21:44:00','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2529,'','Cash','','2023-07-22 09:54:59','','0','4','2023-07-22 09:54:59','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41690008898','Cleared','4','2023-07-22 14:43:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2530,'','Voucher','','2023-07-22 10:23:32','','0','4','2023-07-22 10:23:32','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','sofi','','','0','41690010611','Cleared','4','2023-07-22 10:24:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2531,'','Voucher','','2023-07-22 10:24:36','','0','4','2023-07-22 10:24:36','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','purity','','','0','41690010674','Cleared','4','2023-07-22 10:25:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2532,'VBP6','Mpesa','','2023-07-22 13:33:52','','0','4','2023-07-22 13:33:52','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41690022031','Cleared','4','2023-07-22 13:36:56','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2533,'','Cash','','2023-07-22 14:53:59','','0','4','2023-07-22 14:53:59','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41690026838','Cleared','4','2023-07-22 17:07:59','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2534,'','Cash','','2023-07-22 15:39:15','','0','4','2023-07-22 15:39:15','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41690029554','Cleared','4','2023-07-22 22:02:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2535,'QMSF','Mpesa','','2023-07-22 17:03:45','','0','4','2023-07-22 17:03:45','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','41690034607','Cleared','4','2023-07-22 17:05:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2536,'M39Q','Mpesa','','2023-07-22 17:05:48','','0','4','2023-07-22 17:05:48','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41690034747','Cleared','4','2023-07-22 19:39:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2537,'','Voucher','','2023-07-22 19:40:21','','0','4','2023-07-22 19:40:21','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','Martin','','','0','41690044020','Cleared','4','2023-07-22 19:41:05','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2538,'','Cash','','2023-07-22 20:04:42','','0','4','2023-07-22 20:04:42','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41690045481','Cleared','4','2023-07-22 21:59:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2539,'W8AT','Mpesa','','2023-07-22 20:38:58','','0','4','2023-07-22 20:38:58','','0','900','1','retail','0','900','1','0','0','0','0','900','0','printed','','','','0','41690047521','Cleared','4','2023-07-22 22:00:16','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2540,'','Cash','','2023-07-22 20:51:47','','0','4','2023-07-22 20:51:47','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed','','','','0','41690048306','Cleared','4','2023-07-22 22:01:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2541,'','Voucher','','2023-07-22 20:52:08','','0','4','2023-07-22 20:52:08','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','Manager','','','0','41690048326','Cleared','4','2023-07-22 20:53:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2542,'','Voucher','','2023-07-22 21:00:55','','0','4','2023-07-22 21:00:55','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','Martin','','','0','41690048854','Cleared','4','2023-07-22 21:01:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2543,'','Voucher','','2023-07-22 21:04:33','','0','4','2023-07-22 21:04:33','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','George','','','0','41690049072','Cleared','4','2023-07-22 21:52:16','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2544,'V9RF','Mpesa','','2023-07-22 21:13:27','','0','4','2023-07-22 21:13:27','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41690049606','Cleared','4','2023-07-22 21:26:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2545,'X4JS','Mpesa','','2023-07-22 21:13:54','','0','4','2023-07-22 21:13:54','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41690049633','Cleared','4','2023-07-22 21:48:15','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2546,'','Voucher','','2023-07-22 22:07:11','','0','4','2023-07-22 22:07:11','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','claudia','','','0','41690052829','Cleared','4','2023-07-22 22:07:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2547,'2BHR','Mpesa','','2023-07-22 22:25:39','','0','4','2023-07-22 22:25:39','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41690053938','Cleared','4','2023-07-22 22:33:15','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2548,'F6PC','Mpesa','','2023-07-22 22:40:08','','0','4','2023-07-22 22:40:08','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41690054807','Cleared','4','2023-07-22 22:55:04','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2549,'','Voucher','','2023-07-23 09:16:34','','0','4','2023-07-23 09:16:34','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','george','','','0','41690092992','Cleared','4','2023-07-23 09:17:05','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2550,'JGUA','Mpesa','','2023-07-23 09:40:55','','0','4','2023-07-23 09:40:55','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41690094454','Cleared','4','2023-07-23 10:08:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2551,'','Voucher','','2023-07-23 09:44:42','','0','4','2023-07-23 09:44:42','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','claudia','','','0','41690094681','Cleared','4','2023-07-23 09:45:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2552,'','Voucher','','2023-07-23 09:45:29','','0','4','2023-07-23 09:45:29','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','purity','','','0','41690094728','Cleared','4','2023-07-23 09:45:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2553,'','Voucher','','2023-07-23 10:48:23','','0','4','2023-07-23 10:48:23','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','SOFI','','','0','41690098501','Cleared','4','2023-07-23 10:48:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2554,'IAK6','Mpesa','','2023-07-23 11:54:55','','0','4','2023-07-23 11:54:55','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41690102494','Cleared','4','2023-07-23 13:05:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2555,'ESC3','Mpesa','','2023-07-23 13:11:25','','0','4','2023-07-23 13:11:25','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41690107084','Cleared','4','2023-07-23 13:49:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2556,'','Delivery','','2023-07-23 13:46:01','','0','4','2023-07-23 13:46:01','','0','300','1','retail','0','300','1','0','0','300','0','0','0','printed','','','','0','41690109160','Cleared','4','2023-07-23 21:58:37','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2557,'HP7H','Mpesa','','2023-07-23 14:20:50','','0','4','2023-07-23 14:20:50','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41690111249','Cleared','4','2023-07-23 15:06:45','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2558,'FI1H','Mpesa','','2023-07-23 14:30:58','','0','4','2023-07-23 14:30:58','','0','600','1','retail','0','600','1','0','0','0','0','600','0','printed','','','','0','41690111851','Cleared','4','2023-07-23 14:44:32','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2559,'NDY0','Mpesa','','2023-07-23 14:31:33','','0','4','2023-07-23 14:31:33','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41690111892','Cleared','4','2023-07-23 14:36:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2560,'','Delivery','','2023-07-23 14:41:24','','0','4','2023-07-23 14:41:24','','0','350','1','retail','0','350','1','0','0','350','0','0','0','printed','UBEREATS','','','0','41690112483','Cleared','4','2023-07-23 14:41:57','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2561,'','Cash','','2023-07-23 15:38:52','','0','4','2023-07-23 15:38:52','','300','300','1','retail','0','300','1','0','0','0','0','0','0','new',' ','','','0','41690115930','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2562,'V075','Mpesa','','2023-07-23 17:15:56','','0','4','2023-07-23 17:15:56','','0','500','1','retail','0','500','1','0','0','0','0','500','0','printed','','','','0','41690121752','Cleared','4','2023-07-23 18:07:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2563,'V075 ','Mpesa','','2023-07-23 17:29:33','','0','4','2023-07-23 17:29:33','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41690122572','Cleared','4','2023-07-23 18:07:59','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2564,'F0NI','Mpesa','','2023-07-23 17:29:55','','0','4','2023-07-23 17:29:55','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41690122571','Cleared','4','2023-07-23 17:52:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2565,'DBNA','Mpesa','','2023-07-23 17:35:17','','0','4','2023-07-23 17:35:17','','0','480','1','retail','0','480','1','0','0','0','0','480','0','printed','','','','0','41690122908','Cleared','4','2023-07-23 19:11:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2566,'','Cash','','2023-07-23 17:42:56','','0','4','2023-07-23 17:42:56','','280','280','1','retail','0','280','1','0','0','0','0','0','0','printed','','','','0','41690123375','Cleared','4','2023-07-23 19:31:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2567,'','Cash','','2023-07-23 18:15:28','','0','4','2023-07-23 18:15:28','','500','500','1','retail','0','500','1','0','0','0','0','0','0','new',' ','','','0','41690125325','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2568,'VQ4Y','Mpesa','','2023-07-23 18:30:13','','0','4','2023-07-23 18:30:14','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41690126212','Cleared','4','2023-07-23 18:46:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2569,'JH20','Mpesa','','2023-07-23 18:47:27','','0','4','2023-07-23 18:47:27','','0','500','1','retail','0','500','1','0','0','0','0','500','0','printed','','','','0','41690127242','Cleared','4','2023-07-23 18:55:57','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2570,'DW6F','Mpesa','','2023-07-23 20:09:17','','0','4','2023-07-23 20:03:15','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','41690131793','Cleared','4','2023-07-23 20:41:57','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2571,'','Voucher','','2023-07-23 21:18:15','','0','4','2023-07-23 21:18:15','','0','580','1','retail','0','580','1','0','580','0','0','0','0','printed','martin','','','0','41690136203','Cleared','4','2023-07-23 21:21:07','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2572,'256I','Mpesa','','2023-07-23 21:53:55','','0','4','2023-07-23 21:53:55','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41690138433','Cleared','4','2023-07-23 21:55:27','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2573,'','Voucher','','2023-07-24 10:15:47','','0','4','2023-07-24 10:15:47','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','claudia','','','0','41690182946','Cleared','4','2023-07-24 10:17:08','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2574,'','Voucher','','2023-07-24 10:16:14','','0','4','2023-07-24 10:16:14','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','purity','','','0','41690182973','Cleared','4','2023-07-24 10:17:34','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2575,'pftt','Mpesa','','2023-07-24 14:29:10','','0','4','2023-07-24 14:29:10','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41690198149','Cleared','4','2023-07-24 14:53:37','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2576,'','Cash','','2023-07-24 15:29:32','','0','4','2023-07-24 15:29:32','','400','400','1','retail','0','400','1','0','0','0','0','0','0','new',' ','','','0','41690201767','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2577,'D8M0','Mpesa','','2023-07-24 15:53:32','','0','4','2023-07-24 15:53:32','','0','480','1','retail','0','480','1','0','0','0','0','480','0','printed','','','','0','41690203204','Cleared','4','2023-07-24 16:25:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2578,'NO8X','Mpesa','','2023-07-24 16:07:15','','0','4','2023-07-24 16:07:15','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41690204034','Cleared','4','2023-07-24 18:42:43','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2579,'X5KU','Mpesa','','2023-07-24 16:51:36','','0','4','2023-07-24 16:51:36','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41690206695','Cleared','4','2023-07-24 18:42:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2580,'','Cash','','2023-07-24 17:27:21','','0','4','2023-07-24 17:27:21','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed','','','','0','41690208840','Cleared','4','2023-07-24 18:42:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2581,'','Voucher','','2023-07-24 19:58:35','','0','4','2023-07-24 19:58:35','','0','350','1','retail','0','350','1','0','350','0','0','0','0','printed','DAD','','','0','41690217914','Cleared','4','2023-07-24 19:59:11','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2582,'','Cash','','2023-07-24 21:07:23','','0','4','2023-07-24 21:07:23','','700','700','1','retail','0','700','1','0','0','0','0','0','0','new',' ','','','0','41690222038','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2583,'','Voucher','','2023-07-24 21:55:39','','0','4','2023-07-24 21:55:39','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','martin','','','0','41690224938','Cleared','4','2023-07-24 21:56:15','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2584,'','Cash','','2023-07-25 11:06:15','','0','4','2023-07-25 11:06:15','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed','','','','0','41690272321','Cleared','4','2023-07-25 11:23:15','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2585,'xw16','Mpesa','','2023-07-25 11:46:04','','0','4','2023-07-25 11:46:04','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41690274763','Cleared','4','2023-07-25 11:53:16','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2586,'','Cash','','2023-07-25 12:42:13','','0','4','2023-07-25 12:42:13','','200','200','1','retail','0','200','1','0','0','0','0','0','0','new',' ','','','0','41690278132','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2587,'','Cash','','2023-07-25 13:36:45','','0','4','2023-07-25 13:36:45','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed','','','','0','41690281404','Cleared','4','2023-07-25 13:37:56','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2588,'1PI3','Mpesa','','2023-07-25 14:38:17','','0','4','2023-07-25 14:38:17','','0','880','1','retail','0','880','1','0','0','0','0','880','0','printed','','','','0','41690283192','Cleared','4','2023-07-25 14:49:33','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2589,'WR9C','Mpesa','','2023-07-25 17:42:35','','0','4','2023-07-25 16:16:28','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','41690290987','Cleared','4','2023-07-25 18:05:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2590,'','Voucher','','2023-07-25 17:11:00','','0','4','2023-07-25 17:11:00','','0','350','1','retail','0','350','1','0','350','0','0','0','0','printed','Manager','','','0','41690294258','Cleared','4','2023-07-25 21:20:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2591,'R46K','Mpesa','','2023-07-25 18:14:41','','0','4','2023-07-25 18:14:41','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41690298080','Cleared','4','2023-07-25 19:05:02','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2592,'J696','Mpesa','','2023-07-25 18:34:04','','0','4','2023-07-25 18:34:04','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41690299242','Cleared','4','2023-07-25 19:55:08','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2593,'4L49','Mpesa','','2023-07-25 19:59:55','','0','4','2023-07-25 19:59:55','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41690304394','Cleared','4','2023-07-25 21:07:05','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2594,'','Voucher','','2023-07-25 21:21:36','','0','4','2023-07-25 21:21:36','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','Martin','','','0','41690309294','Cleared','4','2023-07-25 21:23:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2595,'','Voucher','','2023-07-25 21:22:08','','0','4','2023-07-25 21:22:08','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','Purity','','','0','41690309327','Cleared','4','2023-07-25 21:24:27','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2596,'','Voucher','','2023-07-25 21:22:24','','0','4','2023-07-25 21:22:24','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','Claudia','','','0','41690309343','Cleared','4','2023-07-25 21:24:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2597,'','Voucher','','2023-07-25 21:26:27','','0','4','2023-07-25 21:26:27','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','Sofi','','','0','41690309586','Cleared','4','2023-07-25 21:27:00','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2598,'','Voucher','','2023-07-25 21:53:45','','0','4','2023-07-25 21:53:45','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','Claudia','','','0','41690311224','Cleared','4','2023-07-25 21:54:16','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2599,'','Delivery','','2023-07-26 09:10:51','','0','4','2023-07-26 09:10:51','','0','350','1','retail','0','350','1','0','0','350','0','0','0','printed','ubereats','','','0','41690351850','Cleared','4','2023-07-26 09:11:21','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2600,'','Delivery','','2023-07-26 12:55:42','','0','4','2023-07-26 12:55:42','','0','350','1','retail','0','350','1','0','0','350','0','0','0','printed','Uber eats','','','0','41690365340','Cleared','4','2023-07-26 12:56:27','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2601,'YN7M','Mpesa','','2023-07-26 14:41:10','','0','4','2023-07-26 14:41:10','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41690371669','Cleared','4','2023-07-26 16:07:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2602,'','Cash','','2023-07-26 15:49:18','','0','4','2023-07-26 15:49:18','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41690375757','Cleared','4','2023-07-26 21:26:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2603,'','Cash','','2023-07-26 18:14:52','','0','4','2023-07-26 18:14:52','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41690384491','Cleared','4','2023-07-26 21:25:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2604,'','Cash','','2023-07-26 19:16:05','','0','4','2023-07-26 19:16:05','','560','560','1','retail','0','560','1','0','0','0','0','0','0','printed','','','','0','41690388161','Cleared','4','2023-07-26 21:25:04','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2605,'','Voucher','','2023-07-26 19:35:04','','0','4','2023-07-26 19:35:04','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','Director','','','0','41690389303','Cleared','4','2023-07-26 19:37:39','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2606,'','Voucher','','2023-07-26 19:35:29','','0','4','2023-07-26 19:35:29','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','Uncle','','','0','41690389328','Cleared','4','2023-07-26 19:38:40','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2607,'','Voucher','','2023-07-26 19:39:15','','0','4','2023-07-26 19:39:15','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','Sofi','','','0','41690389553','Cleared','4','2023-07-26 19:40:10','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2608,'','Voucher','','2023-07-26 19:39:34','','0','4','2023-07-26 19:39:34','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','Claudia','','','0','41690389573','Cleared','4','2023-07-26 19:40:33','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2609,'','Voucher','','2023-07-26 19:39:45','','0','4','2023-07-26 19:39:45','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','Purity','','','0','41690389584','Cleared','4','2023-07-26 19:40:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2610,'1ku1','Mpesa','','2023-07-27 09:21:35','','0','4','2023-07-27 09:21:35','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41690438894','Cleared','4','2023-07-27 09:22:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2611,'','Voucher','','2023-07-27 21:43:15','','0','4','2023-07-27 21:43:15','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','Manager','','','0','41690483394','Cleared','4','2023-07-27 21:43:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2612,'','Voucher','','2023-07-27 21:44:01','','0','4','2023-07-27 21:44:01','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','Martin','','','0','41690483440','Cleared','4','2023-07-27 21:44:49','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2613,'','Voucher','','2023-07-27 21:44:17','','0','4','2023-07-27 21:44:17','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','Claudia','','','0','41690483456','Cleared','4','2023-07-27 21:45:10','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2614,'MIO0','Mpesa','','2023-07-28 10:00:33','','0','4','2023-07-28 10:00:33','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41690527631','Cleared','4','2023-07-28 10:01:17','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2615,'B1CZ','Mpesa','','2023-07-28 12:35:06','','0','4','2023-07-28 12:35:06','','0','1160','1','retail','0','1160','1','0','0','0','0','1160','0','printed','','','','0','41690535576','Cleared','4','2023-07-28 12:44:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2616,'5ALC','Mpesa','','2023-07-28 12:37:24','','0','4','2023-07-28 12:37:24','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41690537043','Cleared','4','2023-07-28 12:58:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2617,'','Cash','','2023-07-28 14:10:42','','0','4','2023-07-28 14:10:42','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','41690542641','Cleared','4','2023-07-28 21:51:39','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2618,'m85u','Mpesa','','2023-07-28 14:34:43','','0','4','2023-07-28 14:34:43','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41690544082','Cleared','4','2023-07-28 14:50:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2619,'HR73','Mpesa','','2023-07-28 15:59:24','','0','4','2023-07-28 15:59:24','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','41690549163','Cleared','4','2023-07-28 17:04:36','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2620,'H248','Mpesa','','2023-07-28 16:46:54','','0','4','2023-07-28 16:46:54','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41690552013','Cleared','4','2023-07-28 17:05:33','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2621,'7q44','Mpesa','','2023-07-28 17:22:19','','0','4','2023-07-28 17:22:19','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41690554137','Cleared','4','2023-07-28 22:01:00','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2622,'1FLW','Mpesa','','2023-07-28 17:54:49','','0','4','2023-07-28 17:54:49','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','41690556087','Cleared','4','2023-07-28 17:56:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2623,'','Voucher','','2023-07-28 18:01:51','','0','4','2023-07-28 18:01:51','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','sofi','','','0','41690556510','Cleared','4','2023-07-28 18:02:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2624,'','Cash','','2023-07-28 18:23:29','','0','4','2023-07-28 18:23:29','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed','','','','0','41690557808','Cleared','4','2023-07-28 21:50:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2625,'','Voucher','','2023-07-28 18:53:09','','0','4','2023-07-28 18:53:09','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','claudia','','','0','41690559588','Cleared','4','2023-07-28 18:55:35','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2626,'','Voucher','','2023-07-28 18:54:38','','0','4','2023-07-28 18:54:38','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','purity','','','0','41690559677','Cleared','4','2023-07-28 18:55:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2627,'','Voucher','','2023-07-28 21:22:08','','0','4','2023-07-28 21:22:08','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','director','','','0','41690568527','Cleared','4','2023-07-28 21:24:23','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2628,'','Voucher','','2023-07-28 21:22:33','','0','4','2023-07-28 21:22:33','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','martin','','','0','41690568552','Cleared','4','2023-07-28 21:23:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2629,'8xx7\\bsrf','Mpesa','','2023-07-28 21:48:35','','0','4','2023-07-28 21:48:35','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41690570114','Cleared','4','2023-07-28 21:50:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2630,'q14b','Mpesa','','2023-07-29 10:45:23','','0','4','2023-07-29 10:45:23','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41690616717','Cleared','4','2023-07-29 10:45:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2631,'','Voucher','','2023-07-29 13:28:00','','0','4','2023-07-29 13:28:00','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','sofi','','','0','41690626479','Cleared','4','2023-07-29 13:28:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2632,'','Voucher','','2023-07-29 13:28:40','','0','4','2023-07-29 13:28:40','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','uncle','','','0','41690626519','Cleared','4','2023-07-29 13:29:21','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2633,'','Cash','','2023-07-29 13:45:33','','0','4','2023-07-29 13:45:33','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41690627532','Cleared','4','2023-07-29 21:12:49','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2634,'','Voucher','','2023-07-29 14:20:26','','0','4','2023-07-29 14:20:26','','0','350','1','retail','0','350','1','0','350','0','0','0','0','printed','kim','','','0','41690629625','Cleared','4','2023-07-29 16:59:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2635,'','Voucher','','2023-07-29 14:59:40','','0','4','2023-07-29 14:59:40','','0','350','1','retail','0','350','1','0','350','0','0','0','0','printed','uncle','','','0','41690631979','Cleared','4','2023-07-29 15:00:43','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2636,'','Voucher','','2023-07-29 16:39:03','','0','4','2023-07-29 16:39:03','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','manager','','','0','41690637942','Cleared','4','2023-07-29 16:59:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2637,'','Voucher','','2023-07-29 16:39:39','','0','4','2023-07-29 16:39:39','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','kim','','','0','41690637978','Cleared','4','2023-07-29 16:58:47','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2638,'4rnt','Mpesa','','2023-07-29 16:45:00','','0','4','2023-07-29 16:45:00','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41690638299','Cleared','4','2023-07-29 16:58:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2639,'3075','Mpesa','','2023-07-29 16:57:25','','0','4','2023-07-29 16:57:25','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41690639039','Cleared','4','2023-07-29 19:14:33','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2640,'uaqh','Mpesa','','2023-07-29 17:13:54','','0','4','2023-07-29 17:13:54','','0','500','1','retail','0','500','1','0','0','0','0','500','0','printed','','','','0','41690640030','Cleared','4','2023-07-29 19:15:10','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2641,'d3x7','Mpesa','','2023-07-29 17:25:02','','0','4','2023-07-29 17:25:02','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41690640701','Cleared','4','2023-07-29 19:15:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2642,'','Voucher','','2023-07-29 17:52:57','','0','4','2023-07-29 17:52:57','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','kim','','','0','41690642375','Cleared','4','2023-07-29 17:53:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2643,'oa2x','Mpesa','','2023-07-29 21:05:30','','0','4','2023-07-29 21:05:30','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41690653929','Cleared','4','2023-07-29 21:20:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2644,'ab6d','Mpesa','','2023-07-29 21:47:23','','0','4','2023-07-29 21:47:23','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41690656441','Cleared','4','2023-07-29 22:02:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2645,'597w','Mpesa','','2023-07-29 21:58:00','','0','4','2023-07-29 21:58:00','','0','710','1','retail','0','710','1','0','0','0','0','710','0','printed','','','','0','41690657071','Cleared','4','2023-07-29 22:02:32','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2646,'','Voucher','','2023-07-29 22:03:46','','0','4','2023-07-29 22:03:46','','0','710','1','retail','0','710','1','0','710','0','0','0','0','printed','martin','','','0','41690657416','Cleared','4','2023-07-29 22:04:15','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2647,'','Cash','','2023-07-30 09:32:38','','0','4','2023-07-30 09:32:38','','1560','1560','1','retail','0','1560','1','0','0','0','0','0','0','printed','','','','0','41690698705','Cleared','4','2023-07-30 11:20:10','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2648,'','Cash','','2023-07-30 10:05:12','','0','4','2023-07-30 10:05:12','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed','','','','0','41690700707','Cleared','4','2023-07-30 11:20:24','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2649,'','Cash','','2023-07-30 10:32:36','','0','4','2023-07-30 10:32:36','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41690702355','Cleared','4','2023-07-30 11:32:05','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2650,'CZ1J','Mpesa','','2023-07-30 17:45:33','','0','4','2023-07-30 17:45:33','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41690728332','Cleared','4','2023-07-30 18:36:38','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2651,'','Cash','','2023-07-30 17:49:12','','0','4','2023-07-30 17:49:12','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed','','','','0','41690728548','Cleared','4','2023-07-30 19:25:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2652,'IBDX','Mpesa','','2023-07-30 18:04:53','','0','4','2023-07-30 18:04:53','','0','700','1','retail','0','700','1','0','0','0','0','700','0','printed','','','','0','41690729409','Cleared','4','2023-07-30 18:17:10','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2653,'A3XY','Mpesa','','2023-07-30 18:17:20','','0','4','2023-07-30 18:17:20','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41690730239','Cleared','4','2023-07-30 19:24:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2654,'','Voucher','','2023-07-30 18:37:38','','0','4','2023-07-30 18:37:38','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','Manager','','','0','41690731457','Cleared','4','2023-07-30 18:38:42','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2655,'','Cash','','2023-07-30 19:17:18','','0','4','2023-07-30 19:17:18','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed','','','','0','41690733837','Cleared','4','2023-07-30 19:43:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2656,'','Voucher','','2023-07-30 19:43:51','','0','4','2023-07-30 19:43:51','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','claudia','','','0','41690735430','Cleared','4','2023-07-30 19:44:21','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2657,'','Cash','','2023-07-30 21:10:16','','0','4','2023-07-30 21:10:16','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41690740615','Cleared','4','2023-07-30 21:10:37','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2658,'2RLB','Mpesa','','2023-07-30 21:53:00','','0','4','2023-07-30 21:53:00','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41690743178','Cleared','4','2023-07-30 22:00:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2659,'ABZ1','Mpesa','','2023-07-30 21:58:45','','0','4','2023-07-30 21:58:45','','0','580','1','retail','0','580','1','0','0','0','0','580','0','printed','','','','0','41690743518','Cleared','4','2023-07-30 22:12:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2660,'','Voucher','','2023-07-30 22:07:34','','0','4','2023-07-30 22:07:34','','0','350','1','retail','0','350','1','0','350','0','0','0','0','printed','Martin','','','0','41690744053','Cleared','4','2023-07-30 22:08:34','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2661,'ebmc','Mpesa','','2023-07-31 12:58:49','','0','4','2023-07-31 12:58:49','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41690797528','Cleared','4','2023-07-31 14:05:15','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2662,'','Voucher','','2023-07-31 13:27:18','','0','4','2023-07-31 13:27:18','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','manager','','','0','41690799237','Cleared','4','2023-07-31 13:27:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2663,'khlf','Mpesa','','2023-07-31 16:00:01','','0','4','2023-07-31 16:00:01','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','fouk','','','0','41690808390','Cleared','4','2023-07-31 20:34:35','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2664,'wvfg','Mpesa','','2023-07-31 16:03:51','','0','4','2023-07-31 16:03:51','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41690808630','Cleared','4','2023-07-31 16:30:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2665,'','Cash','','2023-07-31 16:22:03','','0','4','2023-07-31 16:22:03','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41690809721','Cleared','4','2023-07-31 20:28:05','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2666,'hqfb','Mpesa','','2023-07-31 17:51:59','','0','4','2023-07-31 17:51:59','','0','700','1','retail','0','700','1','0','0','0','0','700','0','printed','','','','0','41690815115','Cleared','4','2023-07-31 18:46:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2667,'xt8a','Mpesa','','2023-07-31 17:56:58','','0','4','2023-07-31 17:56:58','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41690815416','Cleared','4','2023-07-31 20:33:04','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2668,'xt8a','Mpesa','','2023-07-31 18:21:50','','0','4','2023-07-31 18:21:50','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41690816908','Cleared','4','2023-07-31 20:33:39','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2669,'','Cash','','2023-07-31 18:29:30','','0','4','2023-07-31 18:29:30','','280','280','1','retail','0','280','1','0','0','0','0','0','0','printed','','','','0','41690817369','Cleared','4','2023-07-31 20:35:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2670,'3NWD','Mpesa','','2023-07-31 18:55:54','','0','4','2023-07-31 18:55:54','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','41690818933','Cleared','4','2023-07-31 20:03:45','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2671,'','Voucher','','2023-07-31 19:34:05','','0','4','2023-07-31 19:34:05','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','uncle','','','0','41690821244','Cleared','4','2023-07-31 19:34:45','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2672,'','Cash','','2023-07-31 20:02:27','','0','4','2023-07-31 20:02:27','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','41690822945','Cleared','4','2023-07-31 20:43:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2673,'XRHH','Mpesa','','2023-07-31 20:23:41','','0','4','2023-07-31 20:23:41','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41690824220','Cleared','4','2023-07-31 20:44:33','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2674,'','Voucher','','2023-07-31 20:25:50','','0','4','2023-07-31 20:25:50','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','George','','','0','41690824349','Cleared','4','2023-07-31 20:26:21','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2675,'','Cash','','2023-07-31 21:07:05','','0','4','2023-07-31 21:07:05','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41690826824','Cleared','4','2023-07-31 21:20:08','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2676,'','Voucher','','2023-07-31 21:14:45','','0','4','2023-07-31 21:14:45','','0','150','1','retail','0','150','1','0','150','0','0','0','0','printed','MZAE','','','0','41690827284','Cleared','4','2023-07-31 21:17:11','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2677,'','Voucher','','2023-08-01 14:44:03','','0','4','2023-08-01 14:44:03','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','sofi','','','0','41690890242','Cleared','4','2023-08-01 16:39:04','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2678,'','Cash','','2023-08-01 14:44:12','','0','4','2023-08-01 14:44:12','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41690890251','Cleared','4','2023-08-01 16:38:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2679,'','Cash','','2023-08-01 15:20:56','','0','4','2023-08-01 15:20:56','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41690892455','Cleared','4','2023-08-01 17:04:27','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2680,'2WJD','Mpesa','','2023-08-01 17:43:35','','0','4','2023-08-01 17:43:35','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41690901014','Cleared','4','2023-08-01 18:01:33','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2681,'KTHG','Mpesa','','2023-08-01 18:25:17','','0','4','2023-08-01 18:12:21','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41690902740','Cleared','4','2023-08-01 21:57:59','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2682,'KTHG','Mpesa','','2023-08-01 19:48:48','','0','4','2023-08-01 19:48:48','','0','650','1','retail','0','650','1','0','0','0','0','650','0','printed','','','','0','41690908521','Cleared','4','2023-08-01 20:21:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2683,'YKTZ','Mpesa','','2023-08-01 20:21:13','','0','4','2023-08-01 20:21:13','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41690910472','Cleared','4','2023-08-01 21:28:35','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2684,'','Voucher','','2023-08-01 21:31:40','','0','4','2023-08-01 21:31:40','','0','350','1','retail','0','350','1','0','350','0','0','0','0','printed','PURITY','','','0','41690914699','Cleared','4','2023-08-01 21:38:00','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2685,'','Voucher','','2023-08-01 21:38:55','','0','4','2023-08-01 21:38:55','','0','560','1','retail','0','560','1','0','560','0','0','0','0','printed','MARTIN','','','0','41690915130','Cleared','4','2023-08-01 21:39:47','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2686,'9kle','Mpesa','','2023-08-02 09:46:48','','0','4','2023-08-02 09:46:48','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41690958807','Cleared','4','2023-08-02 12:00:39','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2687,'t90y','Mpesa','','2023-08-02 11:19:21','','0','4','2023-08-02 11:19:21','','0','380','1','retail','0','380','1','0','0','0','0','380','0','printed','','','','0','41690964352','Cleared','4','2023-08-02 12:01:12','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2688,'','Cash','','2023-08-02 12:47:02','','0','4','2023-08-02 12:47:02','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed','','','','0','41690969612','Cleared','4','2023-08-02 13:31:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2689,'36RZ','Mpesa','','2023-08-02 17:10:31','','0','4','2023-08-02 17:10:31','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41690985430','Cleared','4','2023-08-02 17:36:29','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2690,'','Delivery','','2023-08-02 17:12:20','','0','4','2023-08-02 17:12:20','','0','350','1','retail','0','350','1','0','0','350','0','0','0','printed','ubereats','','','0','41690985539','Cleared','4','2023-08-02 17:14:29','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2691,'32SH','Mpesa','','2023-08-02 17:26:57','','0','4','2023-08-02 17:26:57','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41690986416','Cleared','4','2023-08-02 19:55:32','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2692,'','Voucher','','2023-08-02 17:30:59','','0','4','2023-08-02 17:30:59','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','Martin','','','0','41690986658','Cleared','4','2023-08-02 22:15:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2693,'','Voucher','','2023-08-02 17:31:10','','0','4','2023-08-02 17:31:10','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','uncle','','','0','41690986669','Cleared','4','2023-08-02 17:33:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2694,'','Cash','','2023-08-02 19:08:41','','0','4','2023-08-02 19:08:41','','280','280','1','retail','0','280','1','0','0','0','0','0','0','printed','','','','0','41690992520','Cleared','4','2023-08-02 19:55:45','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2695,'QX57','Mpesa','','2023-08-02 19:09:02','','0','4','2023-08-02 19:09:02','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41690992541','Cleared','4','2023-08-02 19:54:59','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2696,'','Cash','','2023-08-02 20:41:23','','0','4','2023-08-02 19:28:51','','900','900','1','retail','0','900','1','0','0','0','0','0','0','printed','','','','0','41690993724','Cleared','4','2023-08-02 23:18:38','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2697,'1YOO','Mpesa','','2023-08-02 19:36:26','','0','4','2023-08-02 19:36:26','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41690994184','Cleared','4','2023-08-02 21:50:07','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2698,'','Cash','','2023-08-02 20:15:30','','0','4','2023-08-02 20:15:30','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41690996529','Cleared','4','2023-08-02 21:49:35','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2699,'','Cash','','2023-08-02 21:47:22','','0','4','2023-08-02 21:47:22','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','41691002041','Cleared','4','2023-08-02 22:14:12','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2700,'','Voucher','','2023-08-02 21:47:47','','0','4','2023-08-02 21:47:47','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','Manager','','','0','41691002066','Cleared','4','2023-08-02 21:49:16','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2701,'','Cash','','2023-08-02 22:15:09','','0','4','2023-08-02 22:15:09','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','41691003708','Cleared','4','2023-08-02 22:49:59','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2702,'','Voucher','','2023-08-02 23:33:41','','0','4','2023-08-02 23:33:41','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','claudia','','','0','41691008420','Cleared','4','2023-08-02 23:34:29','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2703,'','Voucher','','2023-08-02 23:34:06','','0','4','2023-08-02 23:34:06','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','martin','','','0','41691008445','Cleared','4','2023-08-02 23:34:48','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2704,'','Voucher','','2023-08-03 15:09:38','','0','4','2023-08-03 15:09:38','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','claudia','','','0','41691064576','Cleared','4','2023-08-03 15:14:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2705,'','Cash','','2023-08-03 15:12:05','','0','4','2023-08-03 15:09:47','','400','400','1','retail','0','400','1','0','0','0','0','0','0','new',' ','','','0','41691064585','No','4','2023-08-03 15:12:05','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2706,'s8no','Mpesa','','2023-08-03 15:28:49','','0','4','2023-08-03 15:28:49','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41691065722','Cleared','4','2023-08-03 15:35:17','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2707,'','Voucher','','2023-08-03 15:39:45','','0','4','2023-08-03 15:39:45','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','manager','','','0','41691066384','Cleared','4','2023-08-03 15:40:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2708,'','Voucher','','2023-08-03 15:40:28','','0','4','2023-08-03 15:40:28','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','purity','','','0','41691066427','Cleared','4','2023-08-03 15:40:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2709,'VYBS','Mpesa','','2023-08-03 17:21:58','','0','4','2023-08-03 17:21:58','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41691072517','Cleared','4','2023-08-03 18:18:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2710,'ZIXS','Mpesa','','2023-08-03 17:22:07','','0','4','2023-08-03 17:22:07','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41691072526','Cleared','4','2023-08-03 22:02:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2711,'F95U','Mpesa','','2023-08-03 17:52:51','','0','4','2023-08-03 17:52:51','','0','910','1','retail','0','910','1','0','0','0','0','910','0','printed','','','','0','41691074360','Cleared','4','2023-08-03 18:17:56','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2712,'UYSI','Mpesa','','2023-08-03 17:53:11','','0','4','2023-08-03 17:53:11','','0','560','1','retail','0','560','1','0','0','0','0','560','0','printed','','','','0','41691074387','Cleared','4','2023-08-03 17:58:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2713,'','Cash','','2023-08-03 17:53:27','','0','4','2023-08-03 17:53:27','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed','','','','0','41691074403','Cleared','4','2023-08-03 17:59:38','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2714,'57TS','Mpesa','','2023-08-03 17:54:02','','0','4','2023-08-03 17:54:02','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41691074441','Cleared','4','2023-08-03 18:17:15','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2715,'','Cash','','2023-08-03 18:16:12','','0','4','2023-08-03 18:16:12','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41691075770','Cleared','4','2023-08-03 20:24:15','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2716,'','Voucher','','2023-08-03 18:19:36','','0','4','2023-08-03 18:19:36','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','Purity','','','0','41691075975','Cleared','4','2023-08-03 18:20:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2717,'','Cash','','2023-08-03 18:33:16','','0','4','2023-08-03 18:33:16','','30','30','1','retail','0','30','1','0','0','0','0','0','0','new',' ','','','0','41691076795','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2718,'','Delivery','','2023-08-03 20:23:23','','0','4','2023-08-03 20:23:23','','0','200','1','retail','0','200','1','0','0','200','0','0','0','printed','ubereats','','','0','41691083402','Cleared','4','2023-08-03 20:23:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2719,'','Voucher','','2023-08-03 20:38:21','','0','4','2023-08-03 20:38:21','','0','480','1','retail','0','480','1','0','480','0','0','0','0','printed','martin','','','0','41691084295','Cleared','4','2023-08-03 20:38:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2720,'LBP3','Mpesa','','2023-08-03 22:35:14','','0','4','2023-08-03 22:35:14','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41691091313','Cleared','4','2023-08-03 22:44:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2721,'43A6','Mpesa','','2023-08-03 22:58:36','','0','4','2023-08-03 22:58:36','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41691092715','Cleared','4','2023-08-03 23:12:24','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2722,'cq4r','Mpesa','','2023-08-04 10:40:57','','0','4','2023-08-04 10:40:57','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41691134855','Cleared','4','2023-08-04 11:24:24','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2723,'','Voucher','','2023-08-04 10:41:12','','0','4','2023-08-04 10:41:12','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','purity','','','0','41691134870','Cleared','4','2023-08-04 10:41:38','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2724,'','Voucher','','2023-08-04 11:23:41','','0','4','2023-08-04 11:23:41','','0','760','1','retail','0','760','1','0','760','0','0','0','0','printed','dad','','','0','41691137409','Cleared','4','2023-08-04 11:24:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2725,'Y6XR','Mpesa','','2023-08-04 16:00:28','','0','4','2023-08-04 16:00:28','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41691154027','Cleared','4','2023-08-04 18:56:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2726,'0VM5','Mpesa','','2023-08-04 16:00:45','','0','4','2023-08-04 16:00:45','','0','700','1','retail','0','700','1','0','0','0','0','700','0','printed','','','','0','41691154041','Cleared','4','2023-08-04 17:31:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2727,'','Cash','','2023-08-04 16:00:56','','0','4','2023-08-04 16:00:56','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41691154054','Cleared','4','2023-08-04 16:14:16','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2728,'','Cash','','2023-08-04 17:06:12','','0','4','2023-08-04 17:06:12','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41691157971','Cleared','4','2023-08-04 18:33:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2729,'','Voucher','','2023-08-04 17:10:39','','0','4','2023-08-04 17:10:39','','0','400','1','retail','0','400','1','0','400','0','0','0','0','printed','evelyne','','','0','41691158234','Cleared','4','2023-08-04 18:40:47','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2730,'','Voucher','','2023-08-04 17:11:43','','0','4','2023-08-04 17:11:43','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','uncle','','','0','41691158302','Cleared','4','2023-08-04 18:40:15','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2731,'ZH28','Mpesa','','2023-08-04 17:32:46','','0','6','2023-08-04 17:32:46','','0','450','1','retail','0','450','1','0','0','0','0','450','0','printed','','','','0','61691159557','Cleared','6','2023-08-04 18:52:43','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2732,'VVFW','Mpesa','','2023-08-04 18:14:57','','0','6','2023-08-04 18:14:57','','0','1000','1','retail','0','1000','1','0','0','0','0','1000','0','printed','','','','0','61691162082','Cleared','6','2023-08-04 18:52:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2733,'','Cash','','2023-08-04 18:49:05','','0','6','2023-08-04 18:49:05','','100','100','1','retail','0','100','1','0','0','0','0','0','0','new',' ','','','0','61691164144','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2734,'','Voucher','','2023-08-04 18:57:04','','0','4','2023-08-04 18:57:04','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','SOFI','','','0','41691164623','Cleared','4','2023-08-04 18:58:15','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2735,'D4WE','Mpesa','','2023-08-04 19:04:11','','0','6','2023-08-04 19:04:11','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','D4WE','','','0','61691165050','Cleared','6','2023-08-04 22:54:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2736,'','Voucher','','2023-08-04 19:52:43','','0','6','2023-08-04 19:52:43','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','director','','','0','61691167962','Cleared','6','2023-08-04 19:53:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2737,'FNZJ','Mpesa','','2023-08-04 22:07:05','','0','6','2023-08-04 20:43:24','','0','1050','1','retail','0','1050','1','0','0','0','0','1050','0','printed','','','','0','61691171001','Cleared','6','2023-08-04 22:52:42','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2738,'','Voucher','','2023-08-04 20:43:55','','0','6','2023-08-04 20:43:55','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','george','','','0','61691171034','Cleared','6','2023-08-04 20:44:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2739,'','Mpesa','','2023-08-05 11:59:33','','0','4','2023-08-05 11:59:34','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41691225972','Cleared','4','2023-08-05 12:02:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2740,'','Cash','','2023-08-05 13:13:28','','0','4','2023-08-05 13:13:28','','150','150','1','retail','0','150','1','0','0','0','0','0','0','new',' ','','','0','41691230407','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2741,'','Voucher','','2023-08-05 13:24:04','','0','4','2023-08-05 13:24:04','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','purity','','','0','41691231043','Cleared','4','2023-08-05 13:24:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2742,'092g','Mpesa','','2023-08-05 14:30:53','','0','4','2023-08-05 14:30:53','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41691235052','Cleared','4','2023-08-05 14:40:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2743,'','Cash','','2023-08-05 18:38:25','','0','6','2023-08-05 18:38:25','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','61691249904','Cleared','6','2023-08-05 18:38:49','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2744,'CHHI','Mpesa','','2023-08-05 18:57:46','','0','6','2023-08-05 18:57:46','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','61691251064','Cleared','6','2023-08-05 20:15:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2745,'','Voucher','','2023-08-05 19:30:39','','0','6','2023-08-05 19:30:39','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','Martin','','','0','61691253038','Cleared','6','2023-08-05 20:15:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2746,'GWWW','Mpesa','','2023-08-05 19:30:53','','0','6','2023-08-05 19:30:53','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61691253052','Cleared','6','2023-08-05 20:16:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2747,'','Cash','','2023-08-05 19:32:06','','0','6','2023-08-05 19:32:06','','280','280','1','retail','0','280','1','0','0','0','0','0','0','new',' ','','','0','61691253125','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2748,'','Cash','','2023-08-05 19:32:34','','0','6','2023-08-05 19:32:34','','350','350','1','retail','0','350','1','0','0','0','0','0','0','new',' ','','','0','61691253153','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2749,'','Cash','','2023-08-05 20:09:25','','0','6','2023-08-05 20:09:25','','400','400','1','retail','0','400','1','0','0','0','0','0','0','new',' ','','','0','61691255362','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2750,'','Cash','','2023-08-05 20:10:15','','0','6','2023-08-05 20:10:15','','200','200','1','retail','0','200','1','0','0','0','0','0','0','new',' ','','','0','61691255414','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2751,'','Cash','','2023-08-05 20:46:34','','0','6','2023-08-05 20:46:34','','200','200','1','retail','0','200','1','0','0','0','0','0','0','new',' ','','','0','61691257593','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2752,'WQOW','Cash','','2023-08-06 09:50:01','','0','6','2023-08-06 09:50:01','','160','200','1','retail','0','200','1','0','0','0','0','40','0','printed','','','','0','61691304599','Cleared','6','2023-08-06 09:58:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2753,'','Voucher','','2023-08-06 11:11:56','','0','6','2023-08-06 11:11:56','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','Sofi','','','0','61691309515','Cleared','6','2023-08-06 11:12:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2754,'M2E2','Mpesa','','2023-08-06 13:42:03','','0','6','2023-08-06 13:42:03','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','61691318522','Cleared','6','2023-08-06 16:08:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2755,'24DX','Mpesa','','2023-08-06 15:00:12','','0','6','2023-08-06 15:00:12','','0','700','1','retail','0','700','1','0','0','0','0','700','0','printed','','','','0','61691323186','Cleared','6','2023-08-06 16:07:40','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2756,'','Cash','','2023-08-06 15:50:13','','0','6','2023-08-06 15:50:13','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','61691326212','Cleared','6','2023-08-06 20:41:32','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2757,'VLQE','Mpesa','','2023-08-06 16:01:50','','0','6','2023-08-06 16:01:50','','0','800','1','retail','0','800','1','0','0','0','0','800','0','printed','','','','0','61691326863','Cleared','6','2023-08-06 20:42:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2758,'48UG','Mpesa','','2023-08-06 16:11:18','','0','6','2023-08-06 16:11:18','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61691327477','Cleared','6','2023-08-06 16:12:17','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2759,'FYRN','Mpesa','','2023-08-06 17:42:52','','0','6','2023-08-06 17:42:52','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61691332971','Cleared','6','2023-08-06 20:44:48','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2760,'AVUW','Mpesa','','2023-08-06 18:43:46','','0','6','2023-08-06 18:43:46','','0','480','1','retail','0','480','1','0','0','0','0','480','0','printed','','','','0','61691336620','Cleared','6','2023-08-06 20:45:27','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2761,'','Voucher','','2023-08-06 20:45:47','','0','6','2023-08-06 20:45:47','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','Manager','','','0','61691343946','Cleared','6','2023-08-06 20:53:32','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2762,'','Voucher','','2023-08-06 20:46:05','','0','6','2023-08-06 20:46:05','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','George','','','0','61691343964','Cleared','6','2023-08-06 20:53:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2763,'6JG8','Mpesa','','2023-08-06 20:54:35','','0','6','2023-08-06 20:54:35','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61691344474','Cleared','6','2023-08-06 21:25:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2764,'','Voucher','','2023-08-06 21:30:47','','0','6','2023-08-06 21:30:47','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','Claudia','','','0','61691346646','Cleared','6','2023-08-06 21:32:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2765,'','Voucher','','2023-08-06 21:31:17','','0','6','2023-08-06 21:31:17','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','jessica','','','0','61691346676','Cleared','6','2023-08-06 21:33:16','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2766,'','Voucher','','2023-08-06 21:31:37','','0','6','2023-08-06 21:31:37','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','martin','','','0','61691346696','Cleared','6','2023-08-06 21:33:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2767,'','Voucher','','2023-08-06 22:51:18','','0','6','2023-08-06 22:51:18','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','jessica','','','0','61691351476','Cleared','6','2023-08-06 22:51:38','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2768,'V9BI','Mpesa','','2023-08-06 22:59:11','','0','6','2023-08-06 22:59:11','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61691351950','Cleared','6','2023-08-06 23:13:37','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2769,'1VU7','Mpesa','','2023-08-07 09:41:26','','0','6','2023-08-07 09:41:26','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','61691390484','Cleared','6','2023-08-07 12:03:59','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2770,'J4Q4','Mpesa','','2023-08-07 09:58:12','','0','6','2023-08-07 09:58:12','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','61691391491','Cleared','6','2023-08-07 09:58:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2771,'D6PI','Mpesa','','2023-08-07 11:23:58','','0','6','2023-08-07 11:23:58','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','61691396637','Cleared','6','2023-08-07 14:35:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2772,'8VLX','Mpesa','','2023-08-07 11:24:17','','0','6','2023-08-07 11:24:17','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61691396656','Cleared','6','2023-08-07 11:25:02','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2773,'','Cash','','2023-08-07 12:38:58','','0','6','2023-08-07 12:38:58','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','61691401137','Cleared','6','2023-08-07 13:32:23','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2774,'PVVW','Mpesa','','2023-08-07 12:40:40','','0','6','2023-08-07 12:40:40','','0','1280','1','retail','0','1280','1','0','0','0','0','1280','0','printed','','','','0','61691401206','Cleared','6','2023-08-07 12:50:32','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2775,'jw7v','Mpesa','','2023-08-07 18:00:57','','0','4','2023-08-07 18:00:57','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','41691420453','Cleared','4','2023-08-07 18:40:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2776,'','Voucher','','2023-08-07 18:03:47','','0','6','2023-08-07 18:03:47','','0','350','1','retail','0','350','1','0','350','0','0','0','0','printed','Claudia','','','0','61691420626','Cleared','6','2023-08-07 18:04:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2777,'g7mw','Mpesa','','2023-08-07 18:40:27','','0','4','2023-08-07 18:40:27','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41691422826','Cleared','4','2023-08-07 20:02:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2778,'g7mw','Mpesa','','2023-08-07 19:09:00','','0','4','2023-08-07 19:09:00','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41691424538','Cleared','4','2023-08-07 20:03:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2779,'0lgz','Mpesa','','2023-08-07 19:09:26','','0','4','2023-08-07 19:09:26','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41691424565','Cleared','4','2023-08-07 21:32:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2780,'z0bd','Mpesa','','2023-08-07 20:01:44','','0','4','2023-08-07 20:01:44','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41691427703','Cleared','4','2023-08-07 21:32:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2781,'dq7r','Mpesa','','2023-08-07 20:18:21','','0','4','2023-08-07 20:18:21','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41691428700','Cleared','4','2023-08-07 21:33:24','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2782,'ux4x','Mpesa','','2023-08-07 21:21:11','','0','4','2023-08-07 21:21:11','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41691432470','Cleared','4','2023-08-07 21:34:07','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2783,'','Voucher','','2023-08-07 21:34:20','','0','4','2023-08-07 21:34:20','','0','350','1','retail','0','350','1','0','350','0','0','0','0','printed','purity','','','0','41691433259','Cleared','4','2023-08-07 21:34:57','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2784,'','Voucher','','2023-08-07 21:34:35','','0','4','2023-08-07 21:34:35','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','martin','','','0','41691433274','Cleared','4','2023-08-07 21:35:15','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2785,'3dbk','Mpesa','','2023-08-07 21:53:21','','0','4','2023-08-07 21:53:21','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','3dbk','','','0','41691434400','Cleared','4','2023-08-07 21:54:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2786,'','Cash','','2023-08-08 10:32:01','','0','6','2023-08-08 09:28:10','','1480','1480','1','retail','0','1480','1','0','0','0','0','0','0','printed','','','','0','61691476059','Cleared','6','2023-08-08 16:06:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2787,'61B4','Mpesa','','2023-08-08 13:28:45','','0','6','2023-08-08 13:28:45','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61691490524','Cleared','6','2023-08-08 13:29:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2788,'9P6Z','Mpesa','','2023-08-08 13:40:31','','0','6','2023-08-08 13:40:31','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61691491230','Cleared','6','2023-08-08 18:16:38','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2789,'4B6G','Mpesa','','2023-08-08 14:48:45','','0','4','2023-08-08 14:48:45','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41691495324','Cleared','4','2023-08-08 15:13:17','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2790,'9P6Z','Mpesa','','2023-08-08 16:30:50','','0','4','2023-08-08 16:30:50','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41691501449','Cleared','4','2023-08-08 18:38:40','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2791,'','Voucher','','2023-08-08 17:04:39','','0','4','2023-08-08 17:04:39','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','PURITY','','','0','41691503477','Cleared','4','2023-08-08 18:38:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2792,'SS2W','Mpesa','','2023-08-08 17:04:50','','0','4','2023-08-08 17:04:50','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41691503489','Cleared','4','2023-08-08 18:39:23','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2793,'','Voucher','','2023-08-08 18:46:21','','0','4','2023-08-08 18:46:21','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','SOFI','','','0','41691509580','Cleared','4','2023-08-08 18:46:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2794,'QK3M','Mpesa','','2023-08-08 19:43:33','','0','4','2023-08-08 19:43:33','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41691513012','Cleared','4','2023-08-08 19:44:02','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2795,'7EBB','Mpesa','','2023-08-08 19:56:52','','0','4','2023-08-08 19:56:52','','0','560','1','retail','0','560','1','0','0','0','0','560','0','printed','','','','0','41691513804','Cleared','4','2023-08-08 22:08:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2796,'','Cash','','2023-08-08 20:27:30','','0','4','2023-08-08 20:27:30','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41691515649','Cleared','4','2023-08-08 21:20:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2797,'L82M','Mpesa','','2023-08-08 20:48:41','','0','4','2023-08-08 20:48:41','','0','600','1','retail','0','600','1','0','0','0','0','600','0','printed','','','','0','41691516919','Cleared','4','2023-08-08 21:55:15','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2798,'','Voucher','','2023-08-08 21:20:23','','0','4','2023-08-08 21:20:23','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','GEORGE','','','0','41691518822','Cleared','4','2023-08-08 21:33:42','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2799,'I4PI','Mpesa','','2023-08-08 21:20:33','','0','4','2023-08-08 21:20:33','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41691518832','Cleared','4','2023-08-08 21:34:12','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2800,'','Voucher','','2023-08-08 22:08:40','','0','4','2023-08-08 22:08:40','','0','400','1','retail','0','400','1','0','400','0','0','0','0','printed','DAD','','','0','41691521713','Cleared','4','2023-08-08 22:08:59','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2801,'73b4','Mpesa','','2023-08-09 09:37:52','','0','4','2023-08-09 09:37:52','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41691563071','Cleared','4','2023-08-09 12:55:43','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2802,'vppc','Mpesa','','2023-08-09 09:58:28','','0','4','2023-08-09 09:58:28','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41691564307','Cleared','4','2023-08-09 11:09:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2803,'hv3h','Mpesa','','2023-08-09 10:54:47','','0','4','2023-08-09 10:54:47','','0','380','1','retail','0','380','1','0','0','0','0','380','0','printed','','','','0','41691567676','Cleared','4','2023-08-09 11:09:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2804,'','Delivery','','2023-08-09 11:08:01','','0','4','2023-08-09 11:08:01','','0','150','1','retail','0','150','1','0','0','150','0','0','0','printed','ubereats','','','0','41691568480','Cleared','4','2023-08-09 11:08:36','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2805,'nxrc','Mpesa','','2023-08-09 11:49:05','','0','4','2023-08-09 11:49:05','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41691570944','Cleared','4','2023-08-09 12:55:12','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2806,'bqkw','Mpesa','','2023-08-09 16:20:18','','0','4','2023-08-09 16:20:18','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41691587217','Cleared','4','2023-08-09 16:20:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2807,'','Voucher','','2023-08-09 16:33:09','','0','4','2023-08-09 16:33:09','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','sofi','','','0','41691587988','Cleared','4','2023-08-09 16:33:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2808,'','Voucher','','2023-08-09 20:15:28','','0','4','2023-08-09 20:15:28','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','purity','','','0','41691601327','Cleared','4','2023-08-09 21:34:57','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2809,'entz','Mpesa','','2023-08-10 09:35:44','','0','4','2023-08-10 09:35:44','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41691649343','Cleared','4','2023-08-10 10:13:36','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2810,'3bav','Mpesa','','2023-08-10 10:12:43','','0','4','2023-08-10 10:12:43','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41691651555','Cleared','4','2023-08-10 12:44:27','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2811,'','Voucher','','2023-08-10 10:44:29','','0','4','2023-08-10 10:44:29','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','sofi','','','0','41691653467','Cleared','4','2023-08-10 10:44:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2812,'qdm1','Mpesa','','2023-08-10 13:45:23','','0','4','2023-08-10 13:45:23','','0','760','1','retail','0','760','1','0','0','0','0','760','0','printed','','','','0','41691664289','Cleared','4','2023-08-10 13:45:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2813,'','Cash','','2023-08-10 15:31:13','','0','4','2023-08-10 15:31:13','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41691670672','Cleared','4','2023-08-10 16:22:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2814,'AMKX','Mpesa','','2023-08-10 16:23:46','','0','6','2023-08-10 16:23:46','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61691673825','Cleared','6','2023-08-10 17:05:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2815,'5VFA','Mpesa','','2023-08-10 16:39:05','','0','4','2023-08-10 16:39:05','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41691674744','Cleared','4','2023-08-10 17:06:07','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2816,'','Voucher','','2023-08-10 17:54:50','','0','4','2023-08-10 17:54:50','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','PURITY','','','0','41691679289','Cleared','4','2023-08-10 17:55:21','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2817,'F4HF','Mpesa','','2023-08-10 18:08:44','','0','4','2023-08-10 18:08:44','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','41691680114','Cleared','4','2023-08-10 19:05:10','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2818,'YL9L','Mpesa','','2023-08-10 19:02:24','','0','6','2023-08-10 19:02:24','','0','500','1','retail','0','500','1','0','0','0','0','500','0','printed','','','','0','61691683340','Cleared','6','2023-08-10 20:34:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2819,'','Voucher','','2023-08-10 19:17:13','','0','6','2023-08-10 19:17:13','','0','150','1','retail','0','150','1','0','150','0','0','0','0','printed','Director','','','0','61691684232','Cleared','6','2023-08-10 19:17:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2820,'OFIT','Mpesa','','2023-08-10 19:48:38','','0','6','2023-08-10 19:48:38','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','61691686117','Cleared','6','2023-08-10 20:45:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2821,'','Voucher','','2023-08-10 21:34:26','','0','6','2023-08-10 21:34:26','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','Claudia','','','0','61691692465','Cleared','6','2023-08-10 21:35:02','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2822,'7B4Y','Mpesa','','2023-08-11 10:43:49','','0','6','2023-08-11 10:43:49','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','61691739828','Cleared','6','2023-08-11 10:44:48','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2823,'','Cash','','2023-08-11 10:44:01','','0','6','2023-08-11 10:44:01','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','61691739840','Cleared','6','2023-08-11 10:45:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2824,'GJY4','Mpesa','','2023-08-11 13:30:57','','0','6','2023-08-11 13:30:57','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','61691749855','Cleared','6','2023-08-11 13:31:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2825,'','Cash','','2023-08-11 14:24:19','','0','6','2023-08-11 14:24:19','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','61691753057','Cleared','6','2023-08-11 15:02:40','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2826,'6P8K','Mpesa','','2023-08-11 15:29:07','','0','6','2023-08-11 15:29:07','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61691756946','Cleared','6','2023-08-11 16:01:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2827,'wuht','Mpesa','','2023-08-11 18:17:16','','0','4','2023-08-11 18:17:16','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41691767034','Cleared','4','2023-08-11 22:22:43','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2828,'','Voucher','','2023-08-11 18:43:59','','0','4','2023-08-11 18:43:59','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','sofi','','','0','41691768638','Cleared','4','2023-08-11 18:44:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2829,'5ukv','Mpesa','','2023-08-11 20:21:28','','0','4','2023-08-11 20:21:28','','0','450','1','retail','0','450','1','0','0','0','0','450','0','printed','','','','0','41691774475','Cleared','4','2023-08-11 21:30:40','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2830,'wuht','Mpesa','','2023-08-11 20:52:12','','0','4','2023-08-11 20:52:12','','0','380','1','retail','0','380','1','0','0','0','0','380','0','printed','','','','0','41691776324','Cleared','4','2023-08-11 22:22:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2831,'wuht','Mpesa','','2023-08-11 21:19:34','','0','4','2023-08-11 21:19:34','','0','100','1','retail','0','100','1','0','0','0','0','100','0','printed','','','','0','41691777973','Cleared','4','2023-08-11 22:21:47','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2832,'','Voucher','','2023-08-11 21:36:12','','0','4','2023-08-11 21:36:12','','0','560','1','retail','0','560','1','0','560','0','0','0','0','printed','martin','','','0','41691778969','Cleared','4','2023-08-11 21:36:45','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2833,'','Voucher','','2023-08-12 10:15:45','','0','6','2023-08-12 10:15:45','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','george','','','0','61691824544','Cleared','6','2023-08-12 10:16:23','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2834,'6U54','Mpesa','','2023-08-12 10:15:56','','0','6','2023-08-12 10:15:56','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61691824555','Cleared','6','2023-08-12 17:30:36','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2835,'','Cash','','2023-08-12 11:27:05','','0','6','2023-08-12 11:27:06','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','61691828824','Cleared','6','2023-08-12 17:18:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2836,'VG38','Mpesa','','2023-08-12 12:49:45','','0','6','2023-08-12 12:49:45','','0','700','1','retail','0','700','1','0','0','0','0','700','0','printed','','','','0','61691833781','Cleared','6','2023-08-12 16:09:57','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2837,'GUAA','Mpesa','','2023-08-12 14:30:16','','0','6','2023-08-12 14:30:16','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61691839815','Cleared','6','2023-08-12 15:00:11','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2838,'','Voucher','','2023-08-12 16:10:19','','0','6','2023-08-12 16:10:19','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','Claudia','','','0','61691845818','Cleared','6','2023-08-12 16:10:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2839,'','Delivery','','2023-08-12 16:22:28','','0','6','2023-08-12 16:22:28','','0','600','1','retail','0','600','1','0','0','600','0','0','0','printed','ubereats','','','0','61691846544','Cleared','6','2023-08-12 16:22:59','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2840,'','Voucher','','2023-08-12 18:19:10','','0','4','2023-08-12 18:19:10','','0','350','1','retail','0','350','1','0','350','0','0','0','0','printed','claudia','','','0','41691853549','Cleared','4','2023-08-12 22:19:07','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2841,'49c1','Mpesa','','2023-08-12 19:23:49','','0','4','2023-08-12 19:23:49','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41691857428','Cleared','4','2023-08-12 19:46:47','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2842,'2s4r','Mpesa','','2023-08-12 19:24:43','','0','4','2023-08-12 19:24:43','','0','680','1','retail','0','680','1','0','0','0','0','680','0','printed','','','','0','41691857442','Cleared','4','2023-08-12 19:47:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2843,'5atr','Mpesa','','2023-08-12 19:27:39','','0','4','2023-08-12 19:27:39','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','41691857658','Cleared','4','2023-08-12 19:51:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2844,'dcng','Mpesa','','2023-08-12 19:28:11','','0','4','2023-08-12 19:28:11','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41691857690','Cleared','4','2023-08-12 19:51:40','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2845,'','Voucher','','2023-08-12 20:02:59','','0','4','2023-08-12 20:02:59','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','sofi','','','0','41691859778','Cleared','4','2023-08-12 21:08:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2846,'','Cash','','2023-08-12 21:08:13','','0','4','2023-08-12 21:08:13','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41691863692','Cleared','4','2023-08-12 21:08:33','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2847,'','Cash','','2023-08-12 22:09:57','','0','4','2023-08-12 22:09:57','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed','','','','0','41691867379','Cleared','4','2023-08-12 22:10:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2848,'','Voucher','','2023-08-12 22:33:56','','0','4','2023-08-12 22:33:56','','0','480','1','retail','0','480','1','0','480','0','0','0','0','printed','martin','','','0','41691868828','Cleared','4','2023-08-12 22:34:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2849,'wb4k','Mpesa','','2023-08-13 11:28:12','','0','4','2023-08-13 11:28:12','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41691915290','Cleared','4','2023-08-13 11:28:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2850,'yoc9','Mpesa','','2023-08-13 12:35:56','','0','4','2023-08-13 12:35:56','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41691919355','Cleared','4','2023-08-13 12:47:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2851,'lnc4','Mpesa','','2023-08-13 14:21:26','','0','4','2023-08-13 14:21:26','','0','610','1','retail','0','610','1','0','0','0','0','610','0','printed','','','','0','41691925677','Cleared','4','2023-08-13 14:22:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2852,'9x93','Mpesa','','2023-08-13 16:23:26','','0','4','2023-08-13 16:23:26','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41691933005','Cleared','4','2023-08-13 17:02:35','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2853,'','Voucher','','2023-08-13 17:29:56','','0','4','2023-08-13 17:29:56','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','purity','','','0','41691936994','Cleared','4','2023-08-13 17:30:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2854,'GYPN','Mpesa','','2023-08-13 18:10:31','','0','6','2023-08-13 18:10:31','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61691939429','Cleared','6','2023-08-13 18:46:07','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2855,'','Voucher','','2023-08-13 20:34:39','','0','6','2023-08-13 20:34:39','','0','350','1','retail','0','350','1','0','350','0','0','0','0','printed','Sofi','','','0','61691948077','Cleared','6','2023-08-13 20:35:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2856,'','Voucher','','2023-08-13 20:34:57','','0','6','2023-08-13 20:34:57','','0','560','1','retail','0','560','1','0','560','0','0','0','0','printed','martin','','','0','61691948093','Cleared','6','2023-08-13 20:35:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2857,'4URT','Mpesa','','2023-08-13 22:19:05','','0','6','2023-08-13 21:15:59','','0','700','1','retail','0','700','1','0','0','0','0','700','0','printed','','','','0','61691950558','Cleared','6','2023-08-13 23:19:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2858,'I9TV','Mpesa','','2023-08-13 21:40:11','','0','6','2023-08-13 21:39:52','','0','450','1','retail','0','450','1','0','0','0','0','450','0','printed','','','','0','61691951990','Cleared','6','2023-08-13 22:33:49','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2859,'','Voucher','','2023-08-13 21:55:30','','0','6','2023-08-13 21:55:30','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','claudia','','','0','61691952929','Cleared','6','2023-08-13 22:09:07','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2860,'','Cash','','2023-08-13 22:09:24','','0','6','2023-08-13 22:09:24','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','61691953763','Cleared','6','2023-08-13 23:18:15','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2861,'WWP7','Mpesa','','2023-08-13 22:25:27','','0','6','2023-08-13 22:25:27','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61691954726','Cleared','6','2023-08-13 23:18:59','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2862,'Z2SC','Mpesa','','2023-08-13 23:14:19','','0','6','2023-08-13 23:14:19','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61691957658','Cleared','6','2023-08-13 23:19:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2863,'fwlk','Mpesa','','2023-08-14 16:30:14','','0','4','2023-08-14 16:30:14','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41692019813','Cleared','4','2023-08-14 17:10:49','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2864,'ZHP1','Mpesa','','2023-08-14 17:35:04','','0','6','2023-08-14 17:35:04','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','61692023703','Cleared','6','2023-08-14 18:24:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2865,'IKVZ','Mpesa','','2023-08-14 19:50:35','','0','6','2023-08-14 19:50:35','','0','700','1','retail','0','700','1','0','0','0','0','700','0','printed','','','','0','61692031831','Cleared','6','2023-08-14 21:21:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2866,'','Voucher','','2023-08-14 19:50:55','','0','6','2023-08-14 19:50:55','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','Director','','','0','61692031854','Cleared','6','2023-08-14 19:51:32','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2867,'','Cash','','2023-08-14 21:20:56','','0','6','2023-08-14 21:20:56','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed','','','','0','61692037255','Cleared','6','2023-08-14 21:21:11','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2868,'yxx2','Mpesa','','2023-08-15 14:02:08','','0','4','2023-08-15 14:02:08','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','yxx2','','','0','41692097327','Cleared','4','2023-08-15 14:03:07','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2869,'','Voucher','','2023-08-15 15:00:57','','0','4','2023-08-15 15:00:57','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','purity','','','0','41692100856','Cleared','4','2023-08-15 15:01:37','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2870,'','Delivery','','2023-08-15 15:01:49','','0','4','2023-08-15 15:01:49','','0','150','1','retail','0','150','1','0','0','150','0','0','0','printed','ubereats','','','0','41692100908','Cleared','4','2023-08-15 15:02:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2871,'lf4k','Mpesa','','2023-08-15 16:48:09','','0','4','2023-08-15 16:48:09','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41692107288','Cleared','4','2023-08-15 17:04:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2872,'','Voucher','','2023-08-15 17:35:42','','0','6','2023-08-15 17:35:42','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','sofi','','','0','61692110141','Cleared','6','2023-08-15 17:36:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2873,'XATJ','Mpesa','','2023-08-15 18:42:44','','0','6','2023-08-15 18:42:44','','0','30','1','retail','0','30','1','0','0','0','0','30','0','printed','','','','0','61692114163','Cleared','6','2023-08-15 20:13:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2874,'','Voucher','','2023-08-15 19:06:48','','0','6','2023-08-15 19:06:48','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','manager','','','0','61692115607','Cleared','6','2023-08-15 19:07:57','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2875,'','Voucher','','2023-08-15 19:06:58','','0','6','2023-08-15 19:06:58','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','claudia','','','0','61692115617','Cleared','6','2023-08-15 19:08:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2876,'RU7O','Mpesa','','2023-08-15 19:59:22','','0','6','2023-08-15 19:59:22','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','61692118761','Cleared','6','2023-08-15 20:12:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2877,'','Cash','','2023-08-15 22:10:15','','0','4','2023-08-15 22:10:15','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41692126614','Cleared','4','2023-08-15 22:27:12','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2878,'E9LS','Mpesa','','2023-08-16 11:28:48','','0','6','2023-08-16 11:28:48','','0','480','1','retail','0','480','1','0','0','0','0','480','0','printed','','','','0','61692174519','Cleared','6','2023-08-16 11:29:21','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2879,'','Cash','','2023-08-16 11:39:39','','0','6','2023-08-16 11:39:39','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','61692175178','Cleared','6','2023-08-16 18:14:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2880,'','Voucher','','2023-08-16 12:04:56','','0','6','2023-08-16 12:04:56','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','Manager','','','0','61692176694','Cleared','6','2023-08-16 12:05:23','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2881,'UL4L','Mpesa','','2023-08-16 12:55:58','','0','6','2023-08-16 12:55:58','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','61692179757','Cleared','6','2023-08-16 13:26:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2882,'','Cash','','2023-08-16 13:07:22','','0','6','2023-08-16 13:07:22','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','61692180440','Cleared','6','2023-08-16 18:15:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2883,'','Voucher','','2023-08-16 17:56:54','','0','6','2023-08-16 17:56:54','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','sofi','','','0','61692197813','Cleared','6','2023-08-16 17:57:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2884,'3FBR','Mpesa','','2023-08-16 18:28:01','','0','6','2023-08-16 18:28:01','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','61692199680','Cleared','6','2023-08-16 19:14:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2885,'HAQE','Mpesa','','2023-08-16 19:13:14','','0','6','2023-08-16 19:13:14','','0','500','1','retail','0','500','1','0','0','0','0','500','0','printed','','','','0','61692202390','Cleared','6','2023-08-16 19:32:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2886,'CO0P','Mpesa','','2023-08-16 20:30:47','','0','6','2023-08-16 20:30:47','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','61692207045','Cleared','6','2023-08-16 20:31:34','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2887,'','Voucher','','2023-08-16 21:28:15','','0','6','2023-08-16 21:28:15','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','Claudia','','','0','61692210494','Cleared','6','2023-08-16 21:28:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2888,'9RM0','Mpesa','','2023-08-17 10:56:12','','0','6','2023-08-17 10:56:12','','0','840','1','retail','0','840','1','0','0','0','0','840','0','printed','','','','0','61692258959','Cleared','6','2023-08-17 11:13:08','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2889,'','Voucher','','2023-08-17 17:22:09','','0','4','2023-08-17 17:22:09','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','purity','','','0','41692282128','Cleared','4','2023-08-17 20:05:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2890,'49lc','Mpesa','','2023-08-17 17:52:09','','0','6','2023-08-17 17:52:09','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','61692283928','Cleared','6','2023-08-17 18:42:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2891,'','Voucher','','2023-08-17 18:06:47','','0','6','2023-08-17 18:06:47','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','Claudia','','','0','61692284806','Cleared','6','2023-08-17 18:07:21','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2892,'','Voucher','','2023-08-17 18:07:00','','0','6','2023-08-17 18:07:00','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','Manager','','','0','61692284819','Cleared','6','2023-08-17 18:07:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2893,'','Voucher','','2023-08-17 18:08:47','','0','6','2023-08-17 18:08:47','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','jessica','','','0','61692284926','Cleared','6','2023-08-17 18:09:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2894,'hx8k','Mpesa','','2023-08-17 20:04:00','','0','4','2023-08-17 20:04:00','','0','630','1','retail','0','630','1','0','0','0','0','630','0','printed','','','','0','41692291831','Cleared','4','2023-08-17 20:04:43','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2895,'','Voucher','','2023-08-17 20:58:53','','0','4','2023-08-17 20:58:53','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','sofi','','','0','41692295132','Cleared','4','2023-08-17 21:16:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2896,'sqqf','Mpesa','','2023-08-17 21:09:56','','0','4','2023-08-17 21:09:56','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41692295795','Cleared','4','2023-08-17 21:10:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2897,'','Cash','','2023-08-17 21:52:54','','0','4','2023-08-17 21:52:54','','280','280','1','retail','0','280','1','0','0','0','0','0','0','printed','','','','0','41692298373','Cleared','4','2023-08-17 21:53:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2898,'GN0V','Mpesa','','2023-08-18 13:39:55','','0','4','2023-08-18 13:39:55','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41692355194','Cleared','4','2023-08-18 14:16:21','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2899,'FHLQ','Mpesa','','2023-08-18 17:04:18','','0','4','2023-08-18 17:04:18','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41692367456','Cleared','4','2023-08-18 17:04:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2900,'','Voucher','','2023-08-18 18:03:26','','0','4','2023-08-18 18:03:26','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','PURITY','','','0','41692371004','Cleared','4','2023-08-18 18:03:49','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2901,'DI0J','Mpesa','','2023-08-18 18:59:59','','0','6','2023-08-18 18:59:59','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','61692374398','Cleared','6','2023-08-18 22:26:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2902,'','Cash','','2023-08-18 19:00:11','','0','6','2023-08-18 19:00:11','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','61692374409','Cleared','6','2023-08-18 19:00:35','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2903,'DB5O','Mpesa','','2023-08-18 21:53:58','','0','6','2023-08-18 21:53:58','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','61692384836','Cleared','6','2023-08-18 22:07:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2904,'99WN','Mpesa','','2023-08-18 22:06:19','','0','6','2023-08-18 22:06:19','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','61692385578','Cleared','6','2023-08-18 23:16:15','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2905,'','Voucher','','2023-08-18 22:25:06','','0','6','2023-08-18 22:25:06','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','Manager','','','0','61692386705','Cleared','6','2023-08-18 22:25:34','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2906,'','Voucher','','2023-08-18 22:26:58','','0','6','2023-08-18 22:26:58','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','Martin','','','0','61692386817','Cleared','6','2023-08-18 22:27:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2907,'T6C4','Mpesa','','2023-08-18 23:15:16','','0','6','2023-08-18 23:15:16','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61692389714','Cleared','6','2023-08-18 23:15:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2908,'7OMU','Mpesa','','2023-08-18 23:43:51','','0','6','2023-08-18 23:43:51','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','61692391430','Cleared','6','2023-08-18 23:44:27','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2909,'','Voucher','','2023-08-19 11:55:19','','0','4','2023-08-19 11:55:19','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','sofi','','','0','41692435318','Cleared','4','2023-08-19 11:55:59','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2910,'6HB7','Mpesa','','2023-08-19 16:04:35','','0','4','2023-08-19 16:04:35','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','41692450267','Cleared','4','2023-08-19 19:03:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2911,'5HFU','Mpesa','','2023-08-19 16:30:10','','0','4','2023-08-19 16:30:10','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41692451809','Cleared','4','2023-08-19 16:30:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2912,'6HB7','Mpesa','','2023-08-19 16:34:52','','0','4','2023-08-19 16:34:52','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','41692452084','Cleared','4','2023-08-19 19:04:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2913,'','Cash','','2023-08-19 17:39:02','','0','6','2023-08-19 17:39:02','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','61692455941','Cleared','6','2023-08-19 17:53:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2914,'','Cash','','2023-08-19 17:52:55','','0','6','2023-08-19 17:52:55','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','61692456774','Cleared','6','2023-08-19 17:53:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2915,'ZQCI','Mpesa','','2023-08-19 19:29:24','','0','6','2023-08-19 19:29:24','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61692462562','Cleared','6','2023-08-19 20:42:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2916,'7BHS','Mpesa','','2023-08-19 21:15:07','','0','6','2023-08-19 21:15:07','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','61692468902','Cleared','6','2023-08-19 21:42:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2917,'','Voucher','','2023-08-19 23:12:12','','0','6','2023-08-19 23:12:12','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','Claudia','','','0','61692475931','Cleared','6','2023-08-19 23:12:45','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2918,'BTZQ','Mpesa','','2023-08-19 23:47:47','','0','6','2023-08-19 23:47:47','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','61692478066','Cleared','6','2023-08-19 23:48:15','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2919,'jd4l','Mpesa','','2023-08-20 15:57:22','','0','4','2023-08-20 15:57:22','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','jd4l','','','0','41692536241','Cleared','4','2023-08-20 16:36:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2920,'kygd','Mpesa','','2023-08-20 17:11:43','','0','4','2023-08-20 17:11:43','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41692540702','Cleared','4','2023-08-20 17:36:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2921,'','Voucher','','2023-08-20 19:23:26','','0','4','2023-08-20 19:23:26','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','manager','','','0','41692548605','Cleared','4','2023-08-20 19:24:05','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2922,'','Voucher','','2023-08-20 19:35:36','','0','4','2023-08-20 19:35:36','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','sofi','','','0','41692549334','Cleared','4','2023-08-20 19:36:04','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2923,'','Voucher','','2023-08-20 21:30:35','','0','4','2023-08-20 21:30:35','','0','560','1','retail','0','560','1','0','560','0','0','0','0','printed','jessica\\martin','','','0','41692556193','Cleared','4','2023-08-20 21:56:57','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2924,'','Delivery','','2023-08-21 09:15:08','','0','4','2023-08-21 09:15:08','','0','200','1','retail','0','200','1','0','0','200','0','0','0','printed','ubereats','','','0','41692598507','Cleared','4','2023-08-21 09:15:33','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2925,'9lji','Mpesa','','2023-08-21 10:08:34','','0','4','2023-08-21 10:08:34','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41692601713','Cleared','4','2023-08-21 10:11:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2926,'ro1t','Mpesa','','2023-08-21 12:02:53','','0','4','2023-08-21 12:02:53','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41692608572','Cleared','4','2023-08-21 12:40:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2927,'y2sx','Mpesa','','2023-08-21 16:50:31','','0','4','2023-08-21 16:50:31','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41692625830','Cleared','4','2023-08-21 16:51:08','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2928,'CS2U','Mpesa','','2023-08-21 16:53:04','','0','6','2023-08-21 16:53:04','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','61692625983','Cleared','6','2023-08-21 16:53:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2929,'','Cash','','2023-08-21 20:29:16','','0','6','2023-08-21 20:29:16','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','61692638955','Cleared','6','2023-08-21 20:41:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2930,'','Cash','','2023-08-22 12:00:20','','0','6','2023-08-22 12:00:20','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','61692694819','Cleared','6','2023-08-22 12:57:38','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2931,'0X2U','Mpesa','','2023-08-22 14:25:05','','0','6','2023-08-22 14:25:05','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','61692703504','Cleared','6','2023-08-22 14:45:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2932,'0X2U','Mpesa','','2023-08-22 14:25:16','','0','6','2023-08-22 14:25:16','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61692703515','Cleared','6','2023-08-22 14:45:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2933,'ksna','Mpesa','','2023-08-22 18:12:36','','0','4','2023-08-22 18:12:36','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41692717155','Cleared','4','2023-08-22 19:29:34','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2934,'ksna','Mpesa','','2023-08-22 18:29:24','','0','4','2023-08-22 18:29:24','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41692718163','Cleared','4','2023-08-22 19:27:47','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2935,'','Cash','','2023-08-22 18:55:42','','0','4','2023-08-22 18:55:42','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed','','','','0','41692719737','Cleared','4','2023-08-22 18:56:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2936,'zyhv','Mpesa','','2023-08-22 19:09:16','','0','4','2023-08-22 19:09:16','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41692720555','Cleared','4','2023-08-22 19:30:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2937,'segz','Mpesa','','2023-08-22 19:09:33','','0','4','2023-08-22 19:09:33','','0','550','1','retail','0','550','1','0','0','0','0','550','0','printed','','','','0','41692720566','Cleared','4','2023-08-22 22:10:24','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2938,'','Voucher','','2023-08-22 19:35:01','','0','4','2023-08-22 19:35:01','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','manager','','','0','41692722100','Cleared','4','2023-08-22 19:35:32','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2939,'','Voucher','','2023-08-22 22:12:16','','0','4','2023-08-22 22:12:16','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','purity','','','0','41692731519','Cleared','4','2023-08-22 22:14:02','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2940,'','Voucher','','2023-08-22 22:12:29','','0','4','2023-08-22 22:12:29','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','claudia','','','0','41692731548','Cleared','4','2023-08-22 22:14:42','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2941,'','Voucher','','2023-08-22 22:12:51','','0','4','2023-08-22 22:12:51','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','martin','','','0','41692731570','Cleared','4','2023-08-22 22:16:05','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2942,'','Voucher','','2023-08-22 22:16:22','','0','4','2023-08-22 22:16:22','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','george','','','0','41692731781','Cleared','4','2023-08-22 22:16:59','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2943,'','Cash','','2023-08-23 19:44:21','','0','6','2023-08-23 19:44:21','','350','350','1','retail','0','350','1','0','0','0','0','0','0','new',' ','','','0','61692809060','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2944,'','Cash','','2023-08-23 19:44:31','','0','6','2023-08-23 19:44:31','','200','200','1','retail','0','200','1','0','0','0','0','0','0','new',' ','','','0','61692809070','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2945,'','Voucher','','2023-08-23 19:44:40','','0','6','2023-08-23 19:44:40','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','sofi','','','0','61692809079','Cleared','6','2023-08-23 19:46:10','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2946,'','Voucher','','2023-08-23 19:44:48','','0','6','2023-08-23 19:44:48','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','director','','','0','61692809087','Cleared','6','2023-08-23 19:46:42','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2947,'','Voucher','','2023-08-23 21:24:05','','0','6','2023-08-23 21:24:05','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','claudia','','','0','61692815044','Cleared','6','2023-08-23 21:24:36','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2948,'BTOX','Mpesa','','2023-08-23 21:53:01','','0','6','2023-08-23 21:53:01','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61692816780','Cleared','6','2023-08-23 22:12:10','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2949,'','Delivery','','2023-08-24 13:51:40','','0','6','2023-08-24 13:51:40','','0','350','1','retail','0','350','1','0','0','350','0','0','0','printed','ubereats','','','0','61692874299','Cleared','6','2023-08-24 13:52:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2950,'','Cash','','2023-08-24 15:43:22','','0','6','2023-08-24 15:43:22','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed','','','','0','61692881001','Cleared','6','2023-08-24 15:56:11','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2951,'','Cash','','2023-08-24 15:43:36','','0','6','2023-08-24 15:43:36','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed','','','','0','61692881015','Cleared','6','2023-08-24 15:56:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2952,'ki5w','Mpesa','','2023-08-24 16:03:00','','0','4','2023-08-24 16:03:00','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41692882179','Cleared','4','2023-08-24 17:14:21','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2953,'','Cash','','2023-08-24 17:34:00','','0','6','2023-08-24 17:34:00','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','61692887639','Cleared','6','2023-08-24 17:34:17','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2954,'','Voucher','','2023-08-24 18:29:27','','0','6','2023-08-24 18:29:27','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','sofi','','','0','61692890966','Cleared','6','2023-08-24 18:31:38','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2955,'','Voucher','','2023-08-24 18:30:15','','0','6','2023-08-24 18:30:15','','0','660','1','retail','0','660','1','0','660','0','0','0','0','printed','martin','','','0','61692890979','Cleared','6','2023-08-24 18:32:02','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2956,'','Voucher','','2023-08-24 18:31:13','','0','6','2023-08-24 18:31:13','','0','550','1','retail','0','550','1','0','550','0','0','0','0','printed','claudia','','','0','61692891065','Cleared','6','2023-08-24 18:32:34','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2957,'','Voucher','','2023-08-24 20:43:30','','0','4','2023-08-24 20:43:30','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','manager','','','0','41692899008','Cleared','4','2023-08-24 20:43:57','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2958,'a9pj','Mpesa','','2023-08-24 20:55:59','','0','4','2023-08-24 20:55:59','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41692899758','Cleared','4','2023-08-24 21:24:27','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2959,'','Voucher','','2023-08-24 21:23:32','','0','4','2023-08-24 21:23:32','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','george','','','0','41692901410','Cleared','4','2023-08-24 21:24:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2960,'8nes','Mpesa','','2023-08-27 19:56:38','','0','4','2023-08-27 19:56:38','','0','1050','1','retail','0','1050','1','0','0','0','0','1050','0','printed','','','','0','41693155375','Cleared','4','2023-08-27 20:40:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2961,'k63f','Mpesa','','2023-08-27 19:57:00','','0','4','2023-08-27 19:57:00','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41693155419','Cleared','4','2023-08-27 20:41:34','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2962,'3t4d','Mpesa','','2023-08-27 20:19:08','','0','4','2023-08-27 20:19:08','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41693156747','Cleared','4','2023-08-27 20:42:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2963,'mkpu','Mpesa','','2023-08-27 20:33:00','','0','4','2023-08-27 20:33:00','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41693157578','Cleared','4','2023-08-27 21:38:04','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2964,'9s3u','Mpesa','','2023-08-27 20:56:46','','0','4','2023-08-27 20:56:46','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41693159005','Cleared','4','2023-08-27 21:38:36','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2965,'','Voucher','','2023-08-27 21:09:25','','0','4','2023-08-27 21:09:25','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','manager','','','0','41693159764','Cleared','4','2023-08-27 21:49:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2966,'','Voucher','','2023-08-27 21:40:46','','0','4','2023-08-27 21:40:46','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','purity','','','0','41693161645','Cleared','4','2023-08-27 21:41:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2967,'','Voucher','','2023-08-27 21:41:45','','0','4','2023-08-27 21:41:45','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','sofi','','','0','41693161704','Cleared','4','2023-08-27 21:42:21','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2968,'','Voucher','','2023-08-27 21:42:33','','0','4','2023-08-27 21:42:33','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','jessica','','','0','41693161752','Cleared','4','2023-08-27 21:42:56','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2969,'','Voucher','','2023-08-28 14:21:35','','0','4','2023-08-28 14:21:35','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','purity','','','0','41693221693','Cleared','4','2023-08-28 14:24:15','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2970,'','Delivery','','2023-08-28 14:23:18','','0','4','2023-08-28 14:23:18','','0','1600','1','retail','0','1600','1','0','0','1600','0','0','0','printed','ubereats','','','0','41693221710','Cleared','4','2023-08-28 14:24:45','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2971,'JCSW','Mpesa','','2023-08-28 17:05:05','','0','6','2023-08-28 17:05:05','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','61693231504','Cleared','6','2023-08-28 18:23:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2972,'ABFA','Mpesa','','2023-08-28 18:23:26','','0','6','2023-08-28 18:23:26','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','61693236205','Cleared','6','2023-08-28 18:23:48','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2973,'DX67','Mpesa','','2023-08-28 18:43:28','','0','6','2023-08-28 18:43:28','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','61693237406','Cleared','6','2023-08-28 19:40:37','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2974,'33IU','Mpesa','','2023-08-28 18:43:38','','0','6','2023-08-28 18:43:38','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','61693237417','Cleared','6','2023-08-28 19:41:15','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2975,'41WV','Mpesa','','2023-08-28 19:41:39','','0','6','2023-08-28 19:41:39','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','61693240898','Cleared','6','2023-08-28 19:42:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2976,'788E','Mpesa','','2023-08-28 20:39:48','','0','6','2023-08-28 20:39:48','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61693244387','Cleared','6','2023-08-28 20:40:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2977,'','Voucher','','2023-08-28 21:17:00','','0','6','2023-08-28 21:17:00','','0','150','1','retail','0','150','1','0','150','0','0','0','0','printed','Director','','','0','61693246618','Cleared','6','2023-08-28 21:20:04','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2978,'','Cash','','2023-08-28 21:17:07','','0','6','2023-08-28 21:17:07','','200','200','1','retail','0','200','1','0','0','0','0','0','0','new',' ','','','0','61693246626','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2979,'','Cash','','2023-08-28 21:17:33','','0','6','2023-08-28 21:17:33','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed','','','','0','61693246652','Cleared','6','2023-08-28 22:22:47','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2980,'VRZU','Mpesa','','2023-08-28 21:17:46','','0','6','2023-08-28 21:17:46','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61693246665','Cleared','6','2023-08-28 21:19:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2981,'niya','Mpesa','','2023-08-29 11:36:22','','0','4','2023-08-29 11:36:23','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41693298181','Cleared','4','2023-08-29 12:31:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2982,'','Voucher','','2023-08-29 13:45:20','','0','4','2023-08-29 13:45:20','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','purity','','','0','41693305919','Cleared','4','2023-08-29 17:02:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2983,'bmb3','Mpesa','','2023-08-29 16:30:32','','0','4','2023-08-29 16:30:32','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41693315830','Cleared','4','2023-08-29 17:02:05','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2984,'','Cash','','2023-08-29 16:40:40','','0','6','2023-08-29 16:40:40','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','61693316439','Cleared','6','2023-08-29 16:40:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2985,'C7WA','Mpesa','','2023-08-29 17:29:36','','0','4','2023-08-29 17:29:36','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41693319374','Cleared','4','2023-08-29 18:46:56','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2986,'YM44','Mpesa','','2023-08-29 17:54:25','','0','6','2023-08-29 17:54:25','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61693320864','Cleared','6','2023-08-29 21:08:00','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2987,'WKJW','Mpesa','','2023-08-29 17:54:37','','0','6','2023-08-29 17:54:37','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','61693320876','Cleared','6','2023-08-29 18:01:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2988,'E10K','Mpesa','','2023-08-29 17:55:00','','0','6','2023-08-29 17:55:00','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61693320899','Cleared','6','2023-08-29 21:06:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2989,'YM44','Mpesa','','2023-08-29 19:40:50','','0','6','2023-08-29 18:45:49','','0','930','1','retail','0','930','1','0','0','0','0','930','0','printed','','','','0','61693323933','Cleared','6','2023-08-29 21:07:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2990,'','Cash','','2023-08-29 19:10:16','','0','6','2023-08-29 19:10:16','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','61693325415','Cleared','6','2023-08-29 21:08:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2991,'Y1IB','Mpesa','','2023-08-29 19:10:30','','0','6','2023-08-29 19:10:30','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61693325429','Cleared','6','2023-08-29 21:08:57','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2992,'','Mpesa','','2023-08-29 20:10:02','','0','6','2023-08-29 20:10:02','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','61693329001','Cleared','6','2023-08-29 22:05:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2993,'E10K','Mpesa','','2023-08-29 20:31:32','','0','6','2023-08-29 20:31:32','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61693330291','Cleared','6','2023-08-29 21:09:21','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2994,'','Voucher','','2023-08-29 21:09:50','','0','6','2023-08-29 21:09:50','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','manager','','','0','61693332588','Cleared','6','2023-08-29 21:10:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2995,'','Voucher','','2023-08-29 21:09:59','','0','6','2023-08-29 21:09:59','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','sofi','','','0','61693332598','Cleared','6','2023-08-29 21:10:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2996,'','Cash','','2023-08-29 22:06:50','','0','6','2023-08-29 22:06:50','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','61693336009','Cleared','6','2023-08-29 22:07:04','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2997,'','Voucher','','2023-08-29 22:07:22','','0','6','2023-08-29 22:07:22','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','george','','','0','61693336041','Cleared','6','2023-08-29 22:07:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2998,'I10R','Mpesa','','2023-08-29 22:29:30','','0','6','2023-08-29 22:29:30','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61693337369','Cleared','6','2023-08-29 22:30:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(2999,'OJRP','Mpesa','','2023-08-30 09:29:02','','0','6','2023-08-30 09:29:02','','0','550','1','retail','0','550','1','0','0','0','0','550','0','printed','','','','0','61693376930','Cleared','6','2023-08-30 11:18:10','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3000,'MWLS','Mpesa','','2023-08-30 10:03:06','','0','6','2023-08-30 10:03:06','','0','480','1','retail','0','480','1','0','0','0','0','480','0','printed','','','','0','61693378980','Cleared','6','2023-08-30 11:18:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3001,'VCUS','Mpesa','','2023-08-30 10:28:01','','0','6','2023-08-30 10:28:01','','0','560','1','retail','0','560','1','0','0','0','0','560','0','printed','','','','0','61693380476','Cleared','6','2023-08-30 11:18:56','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3002,'','Delivery','','2023-08-30 11:14:56','','0','6','2023-08-30 11:14:56','','0','700','1','retail','0','700','1','0','0','700','0','0','0','printed','ubereats','','','0','61693383291','Cleared','6','2023-08-30 11:16:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3003,'FMXL','Mpesa','','2023-08-30 11:15:23','','0','6','2023-08-30 11:15:23','','0','600','1','retail','0','600','1','0','0','0','0','600','0','printed','','','','0','61693383311','Cleared','6','2023-08-30 17:05:38','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3004,'OJRP','Mpesa','','2023-08-30 11:40:44','','0','6','2023-08-30 11:40:45','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61693384843','Cleared','6','2023-08-30 17:05:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3005,'KST5','Mpesa','','2023-08-30 18:06:46','','0','6','2023-08-30 18:06:46','','0','450','1','retail','0','450','1','0','0','0','0','450','0','printed','','','','0','61693408002','Cleared','6','2023-08-30 19:23:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3006,'KST5','Mpesa','','2023-08-30 18:14:56','','0','6','2023-08-30 18:14:56','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','61693408495','Cleared','6','2023-08-30 19:23:32','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3007,'MRPB','Mpesa','','2023-08-30 20:38:22','','0','6','2023-08-30 20:38:22','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','61693417101','Cleared','6','2023-08-30 21:18:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3008,'DPX0','Mpesa','','2023-08-30 20:38:45','','0','6','2023-08-30 20:38:45','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','61693417117','Cleared','6','2023-08-30 22:10:27','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3009,'F0BO','Mpesa','','2023-08-30 20:45:56','','0','6','2023-08-30 20:39:12','','0','850','1','retail','0','850','1','0','0','0','0','850','0','printed','','','','0','61693417143','Cleared','6','2023-08-30 21:18:32','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3010,'TBGG','Mpesa','','2023-08-30 20:39:24','','0','6','2023-08-30 20:39:24','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','61693417160','Cleared','6','2023-08-30 21:18:56','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3011,'','Voucher','','2023-08-30 20:44:29','','0','6','2023-08-30 20:44:29','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','manager','','','0','61693417468','Cleared','6','2023-08-30 20:44:49','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3012,'','Voucher','','2023-08-30 21:40:46','','0','6','2023-08-30 21:40:46','','0','840','1','retail','0','840','1','0','840','0','0','0','0','printed','Martin','','','0','61693420841','Cleared','6','2023-08-30 21:41:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3013,'','Delivery','','2023-08-31 13:04:13','','0','6','2023-08-31 13:04:13','','0','1150','1','retail','0','1150','1','0','0','1150','0','0','0','printed','ubereats','','','0','61693476232','Cleared','6','2023-08-31 13:05:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3014,'jpkk','Mpesa','','2023-08-31 13:04:38','','0','6','2023-08-31 13:04:38','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','61693476269','Cleared','4','2023-08-31 22:05:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3015,'VOOC','Mpesa','','2023-08-31 14:39:00','','0','6','2023-08-31 14:39:00','','0','550','1','retail','0','550','1','0','0','0','0','550','0','printed','','','','0','61693481931','Cleared','6','2023-08-31 15:33:11','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3016,'rnmx','Mpesa','','2023-08-31 14:56:06','','0','6','2023-08-31 14:56:06','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','61693482959','Cleared','4','2023-08-31 22:03:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3017,'','Cash','','2023-08-31 18:54:43','','0','4','2023-08-31 18:54:43','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41693497281','Cleared','4','2023-08-31 18:55:10','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3018,'oxij','Mpesa','','2023-08-31 19:16:28','','0','4','2023-08-31 19:16:28','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41693498587','Cleared','4','2023-08-31 21:25:49','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3019,'i2s9','Mpesa','','2023-08-31 19:17:22','','0','4','2023-08-31 19:17:22','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','41693498641','Cleared','4','2023-08-31 19:18:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3020,'mqd1','Mpesa','','2023-08-31 21:24:28','','0','4','2023-08-31 21:24:28','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','41693506267','Cleared','4','2023-08-31 21:25:05','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3021,'jsom','Mpesa','','2023-08-31 22:02:16','','0','4','2023-08-31 22:02:16','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41693508535','Cleared','4','2023-08-31 22:03:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3022,'','Cash','','2023-09-01 16:45:25','','0','4','2023-09-01 16:45:25','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41693575924','Cleared','4','2023-09-01 16:45:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3023,'','Cash','','2023-09-01 19:51:42','','0','6','2023-09-01 19:51:42','','280','280','1','retail','0','280','1','0','0','0','0','0','0','printed','','','','0','61693587101','Cleared','6','2023-09-01 19:53:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3024,'','Cash','','2023-09-01 19:51:54','','0','6','2023-09-01 19:51:54','','280','280','1','retail','0','280','1','0','0','0','0','0','0','printed','','','','0','61693587113','Cleared','6','2023-09-01 19:53:23','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3025,'AGN4','Mpesa','','2023-09-01 19:52:15','','0','6','2023-09-01 19:52:15','','0','450','1','retail','0','450','1','0','0','0','0','450','0','printed','','','','0','61693587129','Cleared','6','2023-09-01 22:49:29','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3026,'','Cash','','2023-09-01 22:10:01','','0','6','2023-09-01 22:10:01','','200','200','1','retail','0','200','1','0','0','0','0','0','0','new',' ','','','0','61693595399','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3027,'','Delivery','','2023-09-01 22:10:19','','0','6','2023-09-01 22:10:19','','0','350','1','retail','0','350','1','0','0','350','0','0','0','printed','Ubereats','','','0','61693595417','Cleared','6','2023-09-01 22:49:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3028,'','Voucher','','2023-09-01 22:50:17','','0','6','2023-09-01 22:50:17','','0','560','1','retail','0','560','1','0','560','0','0','0','0','printed','martin','','','0','61693597814','Cleared','6','2023-09-01 22:50:42','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3029,'nu9r','Mpesa','','2023-09-02 12:38:31','','0','4','2023-09-02 12:38:31','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','41693647497','Cleared','4','2023-09-02 12:39:07','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3030,'eoli','Mpesa','','2023-09-02 13:52:34','','0','4','2023-09-02 13:52:34','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41693651953','Cleared','4','2023-09-02 13:54:15','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3031,'','Voucher','','2023-09-02 14:10:26','','0','4','2023-09-02 14:10:26','','0','350','1','retail','0','350','1','0','350','0','0','0','0','printed','purity','','','0','41693653020','Cleared','4','2023-09-02 14:11:48','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3032,'GCX6','Mpesa','','2023-09-02 18:10:31','','0','6','2023-09-02 18:10:31','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61693667429','Cleared','6','2023-09-02 20:22:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3033,'','Voucher','','2023-09-02 20:13:02','','0','6','2023-09-02 20:13:02','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','Sofi','','','0','61693674780','Cleared','6','2023-09-02 22:08:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3034,'POF5','Mpesa','','2023-09-02 20:22:23','','0','6','2023-09-02 20:22:23','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','61693675337','Cleared','6','2023-09-02 20:53:32','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3035,'DWXL','Mpesa','','2023-09-02 20:52:23','','0','6','2023-09-02 20:52:23','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','61693677142','Cleared','6','2023-09-02 20:52:56','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3036,'','Cash','','2023-09-03 20:17:48','','0','4','2023-09-03 20:17:48','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','41693761467','Cleared','4','2023-09-03 21:25:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3037,'500f','Mpesa','','2023-09-03 20:47:33','','0','4','2023-09-03 20:47:33','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41693763252','Cleared','4','2023-09-03 21:25:32','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3038,'h2bj','Mpesa','','2023-09-03 20:55:59','','0','4','2023-09-03 20:55:59','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41693763757','Cleared','4','2023-09-03 21:26:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3039,'0msl','Mpesa','','2023-09-04 11:17:41','','0','4','2023-09-04 11:17:41','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41693815459','Cleared','4','2023-09-04 11:47:32','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3040,'','Cash','','2023-09-04 16:36:01','','0','4','2023-09-04 16:36:01','','280','280','1','retail','0','280','1','0','0','0','0','0','0','printed','','','','0','41693834559','Cleared','4','2023-09-04 18:38:12','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3041,'','Cash','','2023-09-04 18:38:41','','0','6','2023-09-04 18:38:41','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','61693841920','Cleared','6','2023-09-04 21:30:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3042,'CTJ1','Mpesa','','2023-09-04 19:37:03','','0','6','2023-09-04 19:37:03','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','61693845422','Cleared','6','2023-09-04 20:05:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3043,'7L2U','Mpesa','','2023-09-04 20:38:01','','0','6','2023-09-04 20:38:01','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','61693849080','Cleared','6','2023-09-04 21:11:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3044,'VLXM','Mpesa','','2023-09-04 21:47:15','','0','6','2023-09-04 21:47:15','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61693853233','Cleared','6','2023-09-04 21:47:45','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3045,'','Cash','','2023-09-05 10:29:31','','0','6','2023-09-05 10:29:31','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','61693898969','Cleared','6','2023-09-05 10:29:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3046,'KN6W','Mpesa','','2023-09-05 10:29:40','','0','6','2023-09-05 10:29:40','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61693898979','Cleared','6','2023-09-05 11:36:21','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3047,'Z2QB','Mpesa','','2023-09-05 18:04:25','','0','4','2023-09-05 18:04:25','','0','450','1','retail','0','450','1','0','0','0','0','450','0','printed','','','','0','41693926256','Cleared','4','2023-09-05 19:48:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3048,'','Cash','','2023-09-05 18:50:23','','0','4','2023-09-05 18:50:23','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed','','','','0','41693929021','Cleared','4','2023-09-05 19:49:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3049,'','Cash','','2023-09-05 20:48:38','','0','4','2023-09-05 20:48:38','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed','','','','0','41693936116','Cleared','4','2023-09-05 21:17:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3050,'','Voucher','','2023-09-05 21:17:01','','0','4','2023-09-05 21:17:01','','0','530','1','retail','0','530','1','0','530','0','0','0','0','printed','MARTIN','','','0','41693937798','Cleared','4','2023-09-05 21:18:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3051,'','Voucher','','2023-09-05 21:17:24','','0','4','2023-09-05 21:17:24','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','PURITY','','','0','41693937843','Cleared','4','2023-09-05 21:18:27','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3052,'','Voucher','','2023-09-05 21:18:37','','0','4','2023-09-05 21:18:37','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','MANAGER','','','0','41693937916','Cleared','4','2023-09-05 21:20:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3053,'','Voucher','','2023-09-05 21:20:06','','0','4','2023-09-05 21:20:06','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','SOFI','','','0','41693938005','Cleared','4','2023-09-05 21:20:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3054,'3GJU','Mpesa','','2023-09-06 19:05:36','','0','6','2023-09-06 19:05:36','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','61694016328','Cleared','6','2023-09-06 19:07:56','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3055,'','Voucher','','2023-09-06 19:05:48','','0','6','2023-09-06 19:05:48','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','Sofi','','','0','61694016347','Cleared','6','2023-09-06 19:08:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3056,'Y41W,6IFT','Mpesa','','2023-09-06 20:09:57','','0','6','2023-09-06 20:09:57','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','61694020196','Cleared','6','2023-09-06 21:08:45','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3057,'','Cash','','2023-09-06 20:45:57','','0','6','2023-09-06 20:45:57','','200','200','1','retail','0','200','1','0','0','0','0','0','0','new',' ','','','0','61694022356','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3058,'','Voucher','','2023-09-06 20:46:15','','0','6','2023-09-06 20:46:15','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','manager','','','0','61694022374','Cleared','6','2023-09-06 20:47:00','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3059,'','Cash','','2023-09-07 10:13:02','','0','6','2023-09-07 10:13:02','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','61694070780','Cleared','6','2023-09-07 12:04:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3060,'RKKT','Mpesa','','2023-09-07 11:42:09','','0','6','2023-09-07 11:42:09','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61694076128','Cleared','6','2023-09-07 13:56:07','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3061,'TFGB','Mpesa','','2023-09-07 14:48:09','','0','6','2023-09-07 14:48:09','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','61694087288','Cleared','6','2023-09-07 15:22:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3062,'','Cash','','2023-09-07 15:53:31','','0','6','2023-09-07 15:53:31','','280','280','1','retail','0','280','1','0','0','0','0','0','0','printed','','','','0','61694091210','Cleared','6','2023-09-07 15:53:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3063,'E4V1','Mpesa','','2023-09-07 16:00:10','','0','4','2023-09-07 16:00:10','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41694091609','Cleared','4','2023-09-07 16:14:24','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3064,'E4V1','Mpesa','','2023-09-07 16:02:22','','0','4','2023-09-07 16:02:22','','0','30','1','retail','0','30','1','0','0','0','0','30','0','printed','','','','0','41694091741','Cleared','4','2023-09-07 16:14:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3065,'19fz','Mpesa','','2023-09-07 16:58:47','','0','4','2023-09-07 16:58:47','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41694095126','Cleared','4','2023-09-07 17:42:29','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3066,'','Voucher','','2023-09-07 17:10:50','','0','6','2023-09-07 17:10:50','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','Claudia','','','0','61694095849','Cleared','6','2023-09-07 17:11:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3067,'dt50','Mpesa','','2023-09-07 17:25:43','','0','4','2023-09-07 17:25:43','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41694096741','Cleared','4','2023-09-07 21:46:35','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3068,'','Voucher','','2023-09-07 18:58:41','','0','4','2023-09-07 18:58:41','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','sofi','','','0','41694102320','Cleared','4','2023-09-07 18:59:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3069,'j0qp','Mpesa','','2023-09-07 18:59:00','','0','4','2023-09-07 18:59:00','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41694102338','Cleared','4','2023-09-07 19:41:40','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3070,'','Voucher','','2023-09-07 19:41:49','','0','4','2023-09-07 19:41:49','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','mzae','','','0','41694104908','Cleared','4','2023-09-07 19:42:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3071,'mv5v','Mpesa','','2023-09-07 20:03:44','','0','4','2023-09-07 20:03:44','','0','480','1','retail','0','480','1','0','0','0','0','480','0','printed','','','','0','41694106216','Cleared','4','2023-09-07 20:42:45','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3072,'','Cash','','2023-09-07 20:20:35','','0','4','2023-09-07 20:20:35','','30','30','1','retail','0','30','1','0','0','0','0','0','0','printed','','','','0','41694107234','Cleared','4','2023-09-07 22:01:47','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3073,'','Voucher','','2023-09-07 20:41:32','','0','4','2023-09-07 20:41:32','','0','480','1','retail','0','480','1','0','480','0','0','0','0','printed','martin','','','0','41694108486','Cleared','4','2023-09-07 20:42:15','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3074,'wlyb','Mpesa','','2023-09-07 21:17:40','','0','4','2023-09-07 21:17:40','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','41694110655','Cleared','4','2023-09-07 21:55:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3075,'','Voucher','','2023-09-07 21:50:39','','0','4','2023-09-07 21:50:39','','0','150','1','retail','0','150','1','0','150','0','0','0','0','printed','manager','','','0','41694112638','Cleared','4','2023-09-07 21:51:04','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3076,'','Cash','','2023-09-08 09:50:20','','0','6','2023-09-08 09:50:20','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','61694155819','Cleared','6','2023-09-08 11:38:07','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3077,'MEIU','Mpesa','','2023-09-08 12:15:01','','0','6','2023-09-08 12:15:01','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','61694164499','Cleared','6','2023-09-08 12:15:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3078,'DQAZ','Mpesa','','2023-09-08 13:08:16','','0','6','2023-09-08 13:08:16','','0','500','1','retail','0','500','1','0','0','0','0','500','0','printed','','','','0','61694167692','Cleared','6','2023-09-08 13:30:49','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3079,'','Cash','','2023-09-08 14:40:21','','0','6','2023-09-08 14:40:21','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','61694173219','Cleared','6','2023-09-08 16:52:56','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3080,'','Cash','','2023-09-08 14:40:32','','0','6','2023-09-08 14:40:32','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','61694173231','Cleared','6','2023-09-08 16:53:12','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3081,'','Cash','','2023-09-08 15:26:31','','0','6','2023-09-08 15:26:31','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed','','','','0','61694175981','Cleared','6','2023-09-08 16:53:24','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3082,'','Cash','','2023-09-08 15:37:48','','0','6','2023-09-08 15:37:48','','350','350','1','retail','0','350','1','0','0','0','0','0','0','new',' ','','','0','61694176667','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3083,'CKCB','Mpesa','','2023-09-08 17:47:27','','0','4','2023-09-08 17:47:27','','0','560','1','retail','0','560','1','0','0','0','0','560','0','printed','','','','0','41694184444','Cleared','4','2023-09-08 18:55:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3084,'WFO1','Mpesa','','2023-09-08 17:48:20','','0','4','2023-09-08 17:48:20','','0','500','1','retail','0','500','1','0','0','0','0','500','0','printed','','','','0','41694184490','Cleared','4','2023-09-08 20:19:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3085,'6HNH','Mpesa','','2023-09-08 17:49:48','','0','4','2023-09-08 17:49:48','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41694184587','Cleared','4','2023-09-08 18:55:42','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3086,'WXHL','Mpesa','','2023-09-08 17:50:24','','0','4','2023-09-08 17:50:24','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41694184623','Cleared','4','2023-09-08 18:56:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3087,'2PJG','Mpesa','','2023-09-08 17:50:42','','0','4','2023-09-08 17:50:42','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41694184641','Cleared','4','2023-09-08 18:57:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3088,'','Voucher','','2023-09-08 18:57:33','','0','4','2023-09-08 18:57:33','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','SOFI','','','0','41694188651','Cleared','4','2023-09-08 19:26:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3089,'LZ9F','Mpesa','','2023-09-08 19:25:28','','0','4','2023-09-08 19:25:28','','0','600','1','retail','0','600','1','0','0','0','0','600','0','printed','','','','0','41694190327','Cleared','4','2023-09-08 19:26:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3090,'','Voucher','','2023-09-08 20:20:09','','0','4','2023-09-08 20:20:09','','0','560','1','retail','0','560','1','0','560','0','0','0','0','printed','MARTIN','','','0','41694193606','Cleared','4','2023-09-08 22:06:10','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3091,'','Voucher','','2023-09-08 20:20:22','','0','4','2023-09-08 20:20:22','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','JESSICA','','','0','41694193621','Cleared','4','2023-09-08 22:06:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3092,'XNC6','Mpesa','','2023-09-08 20:25:28','','0','4','2023-09-08 20:25:28','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41694193927','Cleared','4','2023-09-08 20:28:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3093,'HDOX','Mpesa','','2023-09-08 20:29:32','','0','4','2023-09-08 20:29:32','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41694194171','Cleared','4','2023-09-08 20:30:49','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3094,'BZTM','Mpesa','','2023-09-08 20:43:17','','0','4','2023-09-08 20:43:17','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41694194996','Cleared','4','2023-09-08 20:56:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3095,'ZDXJ','Mpesa','','2023-09-08 21:23:59','','0','4','2023-09-08 21:23:59','','0','530','1','retail','0','530','1','0','0','0','0','530','0','printed','','','','0','41694197410','Cleared','4','2023-09-08 21:27:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3096,'','Voucher','','2023-09-08 22:27:47','','0','4','2023-09-08 22:27:47','','0','350','1','retail','0','350','1','0','350','0','0','0','0','printed','MANAGER','','','0','41694201266','Cleared','4','2023-09-08 22:28:12','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3097,'','Voucher','','2023-09-08 22:28:22','','0','4','2023-09-08 22:28:22','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','PURITY','','','0','41694201301','Cleared','4','2023-09-08 22:29:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3098,'','Voucher','','2023-09-08 22:29:16','','0','4','2023-09-08 22:29:16','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','PURUITY','','','0','41694201355','Cleared','4','2023-09-08 22:31:17','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3099,'','Voucher','','2023-09-08 22:29:30','','0','4','2023-09-08 22:29:30','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','JESS','','','0','41694201368','Cleared','4','2023-09-08 22:30:35','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3100,'7LB5','Mpesa','','2023-09-09 11:02:55','','0','6','2023-09-09 11:02:55','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61694246574','Cleared','6','2023-09-09 15:26:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3101,'','Delivery','','2023-09-09 11:03:06','','0','6','2023-09-09 11:03:06','','0','350','1','retail','0','350','1','0','0','350','0','0','0','printed','ubereats','','','0','61694246585','Cleared','6','2023-09-09 12:44:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3102,'','Voucher','','2023-09-09 12:43:18','','0','6','2023-09-09 12:43:18','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','sofi','','','0','61694252597','Cleared','6','2023-09-09 12:44:49','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3103,'9OTP','Mpesa','','2023-09-09 12:54:21','','0','6','2023-09-09 12:54:21','','0','500','1','retail','0','500','1','0','0','0','0','500','0','printed','','','','0','61694253258','Cleared','6','2023-09-09 17:18:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3104,'BGZN','Mpesa','','2023-09-09 14:31:25','','0','6','2023-09-09 14:31:25','','0','600','1','retail','0','600','1','0','0','0','0','600','0','printed','','','','0','61694259084','Cleared','6','2023-09-09 14:37:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3105,'','Cash','','2023-09-09 14:31:36','','0','6','2023-09-09 14:31:36','','280','280','1','retail','0','280','1','0','0','0','0','0','0','printed','','','','0','61694259095','Cleared','6','2023-09-09 15:28:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3106,'D208','Mpesa','','2023-09-09 15:24:14','','0','6','2023-09-09 15:24:14','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','61694262252','Cleared','6','2023-09-09 15:28:48','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3107,'','Cash','','2023-09-09 15:24:43','','0','6','2023-09-09 15:24:43','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed','','','','0','61694262265','Cleared','6','2023-09-09 16:27:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3108,'WWRX','Mpesa','','2023-09-09 16:04:06','','0','4','2023-09-09 16:04:06','','0','480','1','retail','0','480','1','0','0','0','0','480','0','printed','','','','0','41694264638','Cleared','4','2023-09-09 18:18:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3109,'','Voucher','','2023-09-09 16:28:04','','0','6','2023-09-09 16:28:04','','0','350','1','retail','0','350','1','0','350','0','0','0','0','printed','Claudia','','','0','61694266083','Cleared','6','2023-09-09 17:08:07','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3110,'VHCC','Mpesa','','2023-09-09 16:31:40','','0','4','2023-09-09 16:31:40','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41694266292','Cleared','4','2023-09-09 18:21:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3111,'3RWP','Mpesa','','2023-09-09 16:48:50','','0','6','2023-09-09 16:48:50','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','61694267327','Cleared','6','2023-09-09 16:49:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3112,'','Voucher','','2023-09-09 17:11:28','','0','4','2023-09-09 17:11:28','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','PURITY','','','0','41694268687','Cleared','4','2023-09-09 18:22:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3113,'','Cash','','2023-09-09 17:55:19','','0','4','2023-09-09 17:55:19','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','41694271318','Cleared','4','2023-09-09 18:20:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3114,'YAQS','Mpesa','','2023-09-09 18:19:02','','0','4','2023-09-09 18:19:02','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41694272741','Cleared','4','2023-09-09 20:34:00','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3115,'6E5B','Mpesa','','2023-09-09 18:20:00','','0','6','2023-09-09 18:20:00','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','61694272781','Cleared','6','2023-09-09 19:29:07','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3116,'','Voucher','','2023-09-09 18:22:33','','0','4','2023-09-09 18:22:33','','0','560','1','retail','0','560','1','0','560','0','0','0','0','printed','MARTIN','','','0','41694272948','Cleared','4','2023-09-09 19:42:45','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3117,'0YWE','Mpesa','','2023-09-09 19:41:02','','0','4','2023-09-09 19:41:02','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41694277661','Cleared','4','2023-09-09 20:10:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3118,'','Voucher','','2023-09-09 20:14:43','','0','4','2023-09-09 20:14:43','','0','350','1','retail','0','350','1','0','350','0','0','0','0','printed','PURITY','','','0','41694279682','Cleared','4','2023-09-09 21:29:37','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3119,'WFWA','Mpesa','','2023-09-09 20:55:02','','0','4','2023-09-09 20:55:02','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41694282100','Cleared','4','2023-09-09 21:25:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3120,'KFDQ','Mpesa','','2023-09-09 21:06:26','','0','4','2023-09-09 21:06:26','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41694282785','Cleared','4','2023-09-09 21:28:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3121,'DLKG','Mpesa','','2023-09-09 21:30:21','','0','4','2023-09-09 21:30:21','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41694284220','Cleared','4','2023-09-09 21:30:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3122,'EVIB','Mpesa','','2023-09-09 22:06:42','','0','4','2023-09-09 22:06:42','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','41694286398','Cleared','4','2023-09-09 22:12:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3123,'fnz6','Mpesa','','2023-09-10 13:46:37','','0','4','2023-09-10 13:46:37','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41694342796','Cleared','4','2023-09-10 13:47:17','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3124,'0qio','Mpesa','','2023-09-10 14:34:13','','0','4','2023-09-10 14:34:13','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','41694345646','Cleared','4','2023-09-10 18:21:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3125,'5nfu','Mpesa','','2023-09-10 14:37:52','','0','4','2023-09-10 14:37:52','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41694345871','Cleared','4','2023-09-10 14:39:27','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3126,'vusn','Mpesa','','2023-09-10 15:03:40','','0','4','2023-09-10 15:03:40','','0','430','1','retail','0','430','1','0','0','0','0','430','0','printed','','','','0','41694347412','Cleared','4','2023-09-10 15:23:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3127,'4nfq','Mpesa','','2023-09-10 19:01:01','','0','4','2023-09-10 19:01:01','','0','700','1','retail','0','700','1','0','0','0','0','700','0','printed','','','','0','41694361656','Cleared','4','2023-09-10 19:20:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3128,'qv27','Mpesa','','2023-09-10 20:06:12','','0','4','2023-09-10 20:06:12','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41694365571','Cleared','4','2023-09-10 20:06:42','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3129,'','Cash','','2023-09-10 20:39:33','','0','4','2023-09-10 20:39:33','','1200','1200','1','retail','0','1200','1','0','0','0','0','0','0','printed','','','','0','41694367569','Cleared','4','2023-09-10 21:32:32','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3130,'bu17','Mpesa','','2023-09-11 13:16:10','','0','4','2023-09-11 13:16:10','','0','700','1','retail','0','700','1','0','0','0','0','700','0','printed','','','','0','41694427365','Cleared','4','2023-09-11 14:15:29','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3131,'84c7','Mpesa','','2023-09-11 17:03:28','','0','4','2023-09-11 17:03:28','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41694441007','Cleared','4','2023-09-11 17:11:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3132,'zfie','Mpesa','','2023-09-12 15:31:01','','0','4','2023-09-12 15:31:01','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41694521860','Cleared','4','2023-09-12 15:31:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3133,'','Cash','','2023-09-12 17:55:38','','0','6','2023-09-12 17:55:38','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','61694530537','Cleared','6','2023-09-12 18:46:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3134,'','Cash','','2023-09-12 17:55:58','','0','6','2023-09-12 17:55:58','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','61694530557','Cleared','6','2023-09-12 18:47:02','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3135,'KTGJ','Mpesa','','2023-09-12 18:14:47','','0','6','2023-09-12 18:14:47','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','61694531686','Cleared','6','2023-09-12 18:47:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3136,'','Cash','','2023-09-12 18:45:50','','0','6','2023-09-12 18:45:50','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','61694533549','Cleared','6','2023-09-12 18:47:36','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3137,'DVVS','Mpesa','','2023-09-12 18:46:09','','0','6','2023-09-12 18:46:09','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','61694533566','Cleared','6','2023-09-12 19:32:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3138,'','Cash','','2023-09-12 20:36:53','','0','6','2023-09-12 19:48:12','','330','330','1','retail','0','330','1','0','0','0','0','0','0','printed','','','','0','61694537291','Cleared','6','2023-09-12 21:41:27','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3139,'','Voucher','','2023-09-12 21:08:21','','0','6','2023-09-12 21:08:21','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','Manager','','','0','61694542100','Cleared','6','2023-09-12 21:08:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3140,'','Voucher','','2023-09-12 21:08:30','','0','6','2023-09-12 21:08:30','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','claudia','','','0','61694542109','Cleared','6','2023-09-12 21:09:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3141,'','Cash','','2023-09-12 21:21:29','','0','6','2023-09-12 21:21:29','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','61694542887','Cleared','6','2023-09-12 21:21:48','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3142,'E9LH','Mpesa','','2023-09-12 21:29:17','','0','6','2023-09-12 21:29:17','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61694543356','Cleared','6','2023-09-12 21:29:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3143,'','Cash','','2023-09-12 21:41:05','','0','6','2023-09-12 21:41:05','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','61694544064','Cleared','6','2023-09-12 21:41:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3144,'IH9A','Mpesa','','2023-09-13 12:13:02','','0','6','2023-09-13 12:13:02','','0','430','1','retail','0','430','1','0','0','0','0','430','0','printed','','','','0','61694596375','Cleared','6','2023-09-13 12:13:35','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3145,'','Voucher','','2023-09-13 12:13:48','','0','6','2023-09-13 12:13:48','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','George','','','0','61694596427','Cleared','6','2023-09-13 12:14:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3146,'XFEF','Mpesa','','2023-09-13 12:28:35','','0','6','2023-09-13 12:28:35','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','61694597313','Cleared','6','2023-09-13 12:44:15','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3147,'JU0M','Mpesa','','2023-09-13 12:54:19','','0','6','2023-09-13 12:54:19','','0','600','1','retail','0','600','1','0','0','0','0','600','0','printed','','','','0','61694598848','Cleared','6','2023-09-13 13:10:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3148,'','Cash','','2023-09-13 18:38:37','','0','6','2023-09-13 18:38:37','','460','460','1','retail','0','460','1','0','0','0','0','0','0','printed','','','','0','61694619501','Cleared','6','2023-09-13 19:25:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3149,'','Cash','','2023-09-13 18:38:54','','0','6','2023-09-13 18:38:54','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','61694619533','Cleared','6','2023-09-13 19:25:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3150,'K8I7','Mpesa','','2023-09-13 19:50:00','','0','6','2023-09-13 19:50:00','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','61694623799','Cleared','6','2023-09-13 20:51:11','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3151,'','Voucher','','2023-09-13 20:51:25','','0','6','2023-09-13 20:51:25','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','Manager','','','0','61694627484','Cleared','6','2023-09-13 20:52:16','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3152,'','Voucher','','2023-09-13 20:51:45','','0','6','2023-09-13 20:51:45','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','electrian','','','0','61694627504','Cleared','6','2023-09-13 20:52:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3153,'','Voucher','','2023-09-13 20:53:16','','0','6','2023-09-13 20:53:16','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','martin','','','0','61694627595','Cleared','6','2023-09-13 20:53:39','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3154,'','Cash','','2023-09-14 11:06:39','','0','6','2023-09-14 11:06:39','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','61694678798','Cleared','6','2023-09-14 16:55:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3155,'QUWC','Mpesa','','2023-09-14 12:37:50','','0','6','2023-09-14 12:37:50','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61694684269','Cleared','6','2023-09-14 12:38:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3156,'KDN1','Mpesa','','2023-09-14 13:22:24','','0','6','2023-09-14 13:22:24','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','61694686943','Cleared','6','2023-09-14 13:38:10','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3157,'','Delivery','','2023-09-14 20:41:59','','0','4','2023-09-14 20:41:59','','0','800','1','retail','0','800','1','0','0','800','0','0','0','printed','ubereats','','','0','41694713305','Cleared','4','2023-09-14 20:42:33','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3158,'pdre','Mpesa','','2023-09-14 22:04:31','','0','4','2023-09-14 22:04:31','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','41694718259','Cleared','4','2023-09-14 22:05:29','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3159,'','Delivery','','2023-09-15 13:05:44','','0','4','2023-09-15 13:05:44','','0','350','1','retail','0','350','1','0','0','350','0','0','0','printed','ubereats','','','0','41694772343','Cleared','4','2023-09-15 13:06:42','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3160,'343Z','Mpesa','','2023-09-15 18:19:07','','0','6','2023-09-15 18:19:07','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61694791146','Cleared','6','2023-09-15 19:13:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3161,'AOZ7','Mpesa','','2023-09-15 18:19:24','','0','6','2023-09-15 18:19:24','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','61694791163','Cleared','6','2023-09-15 19:13:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3162,'V3CW','Mpesa','','2023-09-15 19:53:24','','0','6','2023-09-15 19:53:24','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','61694796801','Cleared','6','2023-09-15 21:44:04','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3163,'','Delivery','','2023-09-15 21:43:34','','0','6','2023-09-15 21:43:34','','0','350','1','retail','0','350','1','0','0','350','0','0','0','printed','Ubereats','','','0','61694803413','Cleared','6','2023-09-15 21:52:02','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3164,'','Mpesa','','2023-09-15 21:51:28','','0','6','2023-09-15 21:51:28','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','NE7X','','','0','61694803886','Cleared','6','2023-09-15 21:52:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3165,'','Voucher','','2023-09-15 22:24:04','','0','6','2023-09-15 22:24:04','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','Manager','','','0','61694805842','Cleared','6','2023-09-15 22:28:02','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3166,'L0XE','Mpesa','','2023-09-15 23:06:29','','0','6','2023-09-15 23:06:29','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61694808388','Cleared','6','2023-09-15 23:06:59','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3167,'','Voucher','','2023-09-15 23:07:56','','0','6','2023-09-15 23:07:56','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','Claudia','','','0','61694808475','Cleared','6','2023-09-15 23:08:23','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3168,'','Voucher','','2023-09-15 23:08:44','','0','6','2023-09-15 23:08:44','','0','560','1','retail','0','560','1','0','560','0','0','0','0','printed','martin','','','0','61694808522','Cleared','6','2023-09-15 23:09:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3169,'TBTF','Mpesa','','2023-09-15 23:16:58','','0','6','2023-09-15 23:16:58','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','61694809017','Cleared','6','2023-09-15 23:36:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3170,'','Voucher','','2023-09-16 10:47:05','','0','4','2023-09-16 10:47:05','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','purity','','','0','41694850414','Cleared','4','2023-09-16 11:46:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3171,'xd0d','Mpesa','','2023-09-16 11:46:13','','0','4','2023-09-16 11:46:14','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','xd0d','','','0','41694853972','Cleared','4','2023-09-16 16:11:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3172,'82g1','Mpesa','','2023-09-16 12:04:54','','0','4','2023-09-16 12:04:54','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41694855093','Cleared','4','2023-09-16 12:06:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3173,'82g1','Mpesa','','2023-09-16 12:05:19','','0','4','2023-09-16 12:05:19','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41694855118','Cleared','4','2023-09-16 12:06:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3174,'','Voucher','','2023-09-16 16:57:03','','0','4','2023-09-16 16:57:03','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','pure','','','0','41694872622','Cleared','4','2023-09-16 16:57:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3175,'','Cash','','2023-09-16 18:18:31','','0','6','2023-09-16 18:18:31','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','61694877510','Cleared','6','2023-09-16 19:39:49','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3176,'O5XJ','Mpesa','','2023-09-16 18:18:40','','0','6','2023-09-16 18:18:40','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61694877519','Cleared','6','2023-09-16 19:40:17','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3177,'CRTA','Mpesa','','2023-09-16 18:18:57','','0','6','2023-09-16 18:18:57','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61694877535','Cleared','6','2023-09-16 18:20:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3178,'A3NS','Mpesa','','2023-09-16 19:40:32','','0','6','2023-09-16 19:40:32','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','61694882431','Cleared','6','2023-09-16 20:56:07','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3179,'','Cash','','2023-09-16 21:25:12','','0','6','2023-09-16 20:17:34','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed','','','','0','61694884653','Cleared','6','2023-09-16 22:57:12','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3180,'YBDF','Mpesa','','2023-09-16 20:55:14','','0','6','2023-09-16 20:55:14','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','61694886911','Cleared','6','2023-09-16 22:34:35','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3181,'','Voucher','','2023-09-16 20:56:36','','0','6','2023-09-16 20:56:36','','0','760','1','retail','0','760','1','0','760','0','0','0','0','printed','Martin','','','0','61694886985','Cleared','6','2023-09-16 20:56:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3182,'','Cash','','2023-09-16 21:24:50','','0','6','2023-09-16 21:24:50','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','61694888689','Cleared','6','2023-09-16 22:35:17','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3183,'DIS9','Mpesa','','2023-09-16 21:40:52','','0','6','2023-09-16 21:40:52','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61694889651','Cleared','6','2023-09-16 22:35:59','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3184,'','Delivery','','2023-09-16 21:59:51','','0','6','2023-09-16 21:59:51','','0','350','1','retail','0','350','1','0','0','350','0','0','0','printed','Ubereats','','','0','61694890790','Cleared','6','2023-09-16 22:36:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3185,'2O0N','Mpesa','','2023-09-16 22:17:41','','0','6','2023-09-16 22:17:42','','0','660','1','retail','0','660','1','0','0','0','0','660','0','printed','','','','0','61694891855','Cleared','6','2023-09-16 22:36:48','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3186,'','Voucher','','2023-09-16 23:05:05','','0','6','2023-09-16 23:05:05','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','manager','','','0','61694894704','Cleared','6','2023-09-16 23:05:38','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3187,'','Voucher','','2023-09-16 23:05:51','','0','6','2023-09-16 23:05:51','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','claudia','','','0','61694894750','Cleared','6','2023-09-16 23:06:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3188,'bnhh','Mpesa','','2023-09-17 10:55:59','','0','4','2023-09-17 10:55:59','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41694937358','Cleared','4','2023-09-17 10:57:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3189,'t891','Mpesa','','2023-09-17 10:59:47','','0','4','2023-09-17 10:59:47','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41694937586','Cleared','4','2023-09-17 11:00:23','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3190,'6YHG','Mpesa','','2023-09-17 18:17:08','','0','6','2023-09-17 18:17:08','','0','830','1','retail','0','830','1','0','0','0','0','830','0','printed','','','','0','61694963776','Cleared','6','2023-09-17 18:30:27','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3191,'QF1A','Mpesa','','2023-09-17 18:17:20','','0','6','2023-09-17 18:17:20','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','61694963839','Cleared','6','2023-09-17 18:34:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3192,'QAUT','Mpesa','','2023-09-17 18:17:30','','0','6','2023-09-17 18:17:30','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','61694963849','Cleared','6','2023-09-17 19:45:08','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3193,'XTUO','Mpesa','','2023-09-17 18:17:41','','0','6','2023-09-17 18:17:41','','0','700','1','retail','0','700','1','0','0','0','0','700','0','printed','','','','0','61694963859','Cleared','6','2023-09-17 20:33:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3194,'WSVP','Mpesa','','2023-09-17 19:30:55','','0','6','2023-09-17 19:30:55','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61694968253','Cleared','6','2023-09-17 21:16:39','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3195,'4BXG','Mpesa','','2023-09-17 20:09:04','','0','6','2023-09-17 20:09:04','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61694970542','Cleared','6','2023-09-17 20:09:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3196,'','Cash','','2023-09-18 13:12:20','','0','6','2023-09-18 13:12:20','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','61695031938','Cleared','6','2023-09-18 13:46:36','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3197,'f4ss','Mpesa','','2023-09-18 18:38:41','','0','4','2023-09-18 18:38:41','','0','700','1','retail','0','700','1','0','0','0','0','700','0','printed','','','','0','41695051514','Cleared','4','2023-09-18 20:09:23','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3198,'','Voucher','','2023-09-18 20:56:53','','0','4','2023-09-18 20:56:53','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','mzae','','','0','41695059811','Cleared','4','2023-09-18 20:57:17','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3199,'FGZ0','Mpesa','','2023-09-19 10:53:06','','0','6','2023-09-19 10:53:06','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61695109985','Cleared','6','2023-09-19 10:55:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3200,'','Voucher','','2023-09-19 10:53:34','','0','6','2023-09-19 10:53:34','','0','800','1','retail','0','800','1','0','800','0','0','0','0','printed','Evaline','','','0','61695110005','Cleared','6','2023-09-19 10:54:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3201,'','Voucher','','2023-09-19 12:42:48','','0','6','2023-09-19 12:42:48','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','Dad mato','','','0','61695116567','Cleared','6','2023-09-19 12:43:24','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3202,'1FXK','Mpesa','','2023-09-19 13:28:49','','0','6','2023-09-19 13:28:49','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61695119328','Cleared','6','2023-09-19 13:29:40','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3203,'','Voucher','','2023-09-19 13:31:06','','0','6','2023-09-19 13:31:06','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','Claudia','','','0','61695119465','Cleared','6','2023-09-19 13:31:38','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3204,'','Cash','','2023-09-19 14:13:39','','0','6','2023-09-19 14:13:39','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed','','','','0','61695122018','Cleared','6','2023-09-19 14:14:08','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3205,'','Voucher','','2023-09-19 16:07:11','','0','4','2023-09-19 16:07:11','','0','350','1','retail','0','350','1','0','350','0','0','0','0','printed','manager','','','0','41695128830','Cleared','4','2023-09-19 18:23:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3206,'5mwf','Mpesa','','2023-09-19 18:23:39','','0','4','2023-09-19 18:23:39','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41695137015','Cleared','4','2023-09-19 18:24:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3207,'mo76','Mpesa','','2023-09-19 19:26:48','','0','4','2023-09-19 19:26:48','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41695140807','Cleared','4','2023-09-19 22:04:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3208,'','Cash','','2023-09-19 19:58:21','','0','4','2023-09-19 19:58:21','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed','','','','0','41695142698','Cleared','4','2023-09-19 22:16:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3209,'','Delivery','','2023-09-19 21:27:31','','0','4','2023-09-19 21:27:31','','0','300','1','retail','0','300','1','0','0','300','0','0','0','printed','ubereats','','','0','41695148049','Cleared','4','2023-09-19 22:17:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3210,'','Voucher','','2023-09-19 22:17:40','','0','4','2023-09-19 22:17:40','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','pure','','','0','41695151059','Cleared','4','2023-09-19 22:18:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3211,'','Voucher','','2023-09-19 22:30:44','','0','4','2023-09-19 22:30:44','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','mzae','','','0','41695151843','Cleared','4','2023-09-19 22:31:17','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3212,'4W7K','Mpesa','','2023-09-20 11:37:11','','0','6','2023-09-20 11:37:11','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','61695199029','Cleared','6','2023-09-20 12:19:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3213,'3HW0','Mpesa','','2023-09-20 12:18:32','','0','6','2023-09-20 12:18:32','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','61695201511','Cleared','6','2023-09-20 14:07:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3214,'980K','Mpesa','','2023-09-20 14:29:22','','0','6','2023-09-20 14:29:22','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','61695209361','Cleared','6','2023-09-20 18:19:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3215,'EDY6','Mpesa','','2023-09-20 18:18:12','','0','6','2023-09-20 18:18:12','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','61695223091','Cleared','6','2023-09-20 18:19:48','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3216,'1G8T','Mpesa','','2023-09-20 18:18:24','','0','6','2023-09-20 18:18:24','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','61695223103','Cleared','6','2023-09-20 18:20:15','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3217,'5SC4','Mpesa','','2023-09-20 18:18:35','','0','6','2023-09-20 18:18:35','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61695223114','Cleared','6','2023-09-20 18:20:40','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3218,'O0JF','Mpesa','','2023-09-20 18:59:28','','0','6','2023-09-20 18:59:28','','0','700','1','retail','0','700','1','0','0','0','0','700','0','printed','','','','0','61695225566','Cleared','6','2023-09-20 20:58:57','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3219,'XOX7','Mpesa','','2023-09-20 18:59:37','','0','6','2023-09-20 18:59:38','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61695225576','Cleared','6','2023-09-20 20:59:21','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3220,'L0U5','Mpesa','','2023-09-20 18:59:49','','0','6','2023-09-20 18:59:49','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61695225587','Cleared','6','2023-09-20 19:00:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3221,'','Voucher','','2023-09-20 20:14:48','','0','6','2023-09-20 20:14:48','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','George','','','0','61695230087','Cleared','6','2023-09-20 20:56:49','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3222,'','Voucher','','2023-09-20 20:15:10','','0','6','2023-09-20 20:15:10','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','Manager','','','0','61695230109','Cleared','6','2023-09-20 20:57:10','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3223,'RR89','Mpesa','','2023-09-20 20:55:55','','0','6','2023-09-20 20:55:55','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','61695232551','Cleared','6','2023-09-20 20:58:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3224,'','Voucher','','2023-09-20 20:56:05','','0','6','2023-09-20 20:56:05','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','Director','','','0','61695232564','Cleared','6','2023-09-20 20:57:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3225,'','Cash','','2023-09-20 21:45:39','','0','6','2023-09-20 21:45:39','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','61695235534','Cleared','6','2023-09-20 22:14:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3226,'3KFT','Mpesa','','2023-09-21 10:29:07','','0','6','2023-09-21 10:29:07','','0','600','1','retail','0','600','1','0','0','0','0','600','0','printed','','','','0','61695281346','Cleared','6','2023-09-21 13:45:59','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3227,'I8NU','Mpesa','','2023-09-21 10:29:18','','0','6','2023-09-21 10:29:18','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','61695281356','Cleared','6','2023-09-21 13:46:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3228,'7DWN','Mpesa','','2023-09-21 13:01:22','','0','6','2023-09-21 13:01:22','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','61695290481','Cleared','6','2023-09-21 13:46:56','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3229,'3WUB','Mpesa','','2023-09-21 13:44:47','','0','6','2023-09-21 13:44:47','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61695293086','Cleared','6','2023-09-21 13:47:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3230,'WNGT','Mpesa','','2023-09-21 18:10:58','','0','4','2023-09-21 18:10:58','','0','600','1','retail','0','600','1','0','0','0','0','600','0','printed','','','','0','41695309036','Cleared','4','2023-09-21 21:53:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3231,'','Voucher','','2023-09-21 18:54:58','','0','4','2023-09-21 18:54:58','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','MZAE','','','0','41695311697','Cleared','4','2023-09-21 18:55:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3232,'','Voucher','','2023-09-21 20:57:45','','0','4','2023-09-21 20:57:45','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','MANAGER','','','0','41695319064','Cleared','4','2023-09-21 21:54:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3233,'XV1O','Mpesa','','2023-09-22 16:05:24','','0','6','2023-09-22 16:05:24','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','61695387922','Cleared','6','2023-09-22 16:06:02','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3234,'IOVS','Mpesa','','2023-09-22 16:20:25','','0','4','2023-09-22 16:20:25','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41695388824','Cleared','4','2023-09-22 17:36:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3235,'1K8E','Mpesa','','2023-09-22 16:48:08','','0','4','2023-09-22 16:48:08','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41695390487','Cleared','4','2023-09-22 18:18:16','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3236,'1K8E','Mpesa','','2023-09-22 18:17:40','','0','4','2023-09-22 18:17:40','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41695395859','Cleared','4','2023-09-22 18:18:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3237,'1K8E','Mpesa','','2023-09-22 18:22:14','','0','4','2023-09-22 18:22:14','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41695396133','Cleared','4','2023-09-22 18:22:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3238,'vs8h','Mpesa','','2023-09-22 19:52:20','','0','4','2023-09-22 19:52:20','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41695401538','Cleared','4','2023-09-22 20:09:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3239,'','Voucher','','2023-09-22 22:07:41','','0','4','2023-09-22 22:07:41','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','george','','','0','41695409660','Cleared','4','2023-09-22 22:09:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3240,'','Voucher','','2023-09-22 22:08:06','','0','4','2023-09-22 22:08:06','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','mnager','','','0','41695409685','Cleared','4','2023-09-22 22:10:02','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3241,'3isz','Mpesa','','2023-09-22 22:33:01','','0','4','2023-09-22 22:33:01','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41695411180','Cleared','4','2023-09-22 22:34:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3242,'X3RX','Mpesa','','2023-09-23 10:45:04','','0','6','2023-09-23 10:45:04','','0','1240','1','retail','0','1240','1','0','0','0','0','1240','0','printed','','','','0','61695455070','Cleared','6','2023-09-23 10:49:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3243,'S3NT','Mpesa','','2023-09-23 13:08:09','','0','6','2023-09-23 13:08:09','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','61695463688','Cleared','6','2023-09-23 14:59:29','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3244,'SBWG','Mpesa','','2023-09-23 13:08:25','','0','6','2023-09-23 13:08:25','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','61695463703','Cleared','6','2023-09-23 14:00:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3245,'AD5N','Mpesa','','2023-09-23 16:45:27','','0','4','2023-09-23 16:45:27','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41695476726','Cleared','4','2023-09-23 17:47:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3246,'OB1M','Mpesa','','2023-09-23 17:24:45','','0','4','2023-09-23 17:24:45','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41695479084','Cleared','4','2023-09-23 17:46:43','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3247,'','Voucher','','2023-09-23 17:35:00','','0','4','2023-09-23 17:35:00','','0','350','1','retail','0','350','1','0','350','0','0','0','0','printed','CLAUDIA','','','0','41695479693','Cleared','4','2023-09-23 17:37:29','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3248,'8XO6','Mpesa','','2023-09-23 18:27:40','','0','4','2023-09-23 18:27:40','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41695482858','Cleared','4','2023-09-23 18:46:32','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3249,'','Delivery','','2023-09-23 21:55:47','','0','4','2023-09-23 21:55:47','','0','350','1','retail','0','350','1','0','0','350','0','0','0','printed','ubereats','','','0','41695495346','Cleared','4','2023-09-23 21:56:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3250,'','Voucher','','2023-09-23 21:56:41','','0','4','2023-09-23 21:56:41','','0','560','1','retail','0','560','1','0','560','0','0','0','0','printed','martin','','','0','41695495397','Cleared','4','2023-09-23 21:57:27','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3251,'','Voucher','','2023-09-23 21:57:01','','0','4','2023-09-23 21:57:01','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','purity','','','0','41695495420','Cleared','4','2023-09-23 21:57:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3252,'h454','Mpesa','','2023-09-24 13:20:49','','0','4','2023-09-24 13:20:49','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41695550848','Cleared','4','2023-09-24 14:28:38','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3253,'','Cash','','2023-09-24 16:39:22','','0','4','2023-09-24 16:39:22','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41695562761','Cleared','4','2023-09-24 17:47:05','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3254,'tdo1','Mpesa','','2023-09-24 18:05:54','','0','4','2023-09-24 18:05:54','','0','480','1','retail','0','480','1','0','0','0','0','480','0','printed','','','','0','41695567948','Cleared','4','2023-09-24 18:40:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3255,'','Cash','','2023-09-24 18:40:40','','0','4','2023-09-24 18:40:40','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','41695570032','Cleared','4','2023-09-24 20:14:49','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3256,'','Voucher','','2023-09-24 21:53:59','','0','4','2023-09-24 21:53:59','','0','560','1','retail','0','560','1','0','560','0','0','0','0','printed','martin','','','0','41695581636','Cleared','4','2023-09-24 21:54:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3257,'','Voucher','','2023-09-24 21:54:11','','0','4','2023-09-24 21:54:11','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','purity','','','0','41695581650','Cleared','4','2023-09-24 21:55:00','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3258,'k9og','Mpesa','','2023-09-25 11:50:12','','0','4','2023-09-25 11:50:12','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41695631811','Cleared','4','2023-09-25 12:02:10','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3259,'','Voucher','','2023-09-25 12:32:43','','0','4','2023-09-25 12:32:43','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','purity','','','0','41695634362','Cleared','4','2023-09-25 14:07:15','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3260,'','Delivery','','2023-09-25 14:06:35','','0','4','2023-09-25 14:06:35','','0','400','1','retail','0','400','1','0','0','400','0','0','0','printed','ubereats','','','0','41695639991','Cleared','4','2023-09-25 14:07:37','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3261,'','Delivery','','2023-09-25 14:28:27','','0','4','2023-09-25 14:28:27','','0','350','1','retail','0','350','1','0','0','350','0','0','0','printed','ubereats','','','0','41695641305','Cleared','4','2023-09-25 14:29:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3262,'','Cash','','2023-09-25 16:07:01','','0','4','2023-09-25 16:07:01','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41695647220','Cleared','4','2023-09-25 16:16:12','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3263,'','Cash','','2023-09-25 16:15:42','','0','4','2023-09-25 16:15:42','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41695647741','Cleared','4','2023-09-25 16:16:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3264,'','Cash','','2023-09-25 16:39:41','','0','4','2023-09-25 16:39:41','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41695649180','Cleared','4','2023-09-25 16:53:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3265,'','Voucher','','2023-09-25 16:39:59','','0','4','2023-09-25 16:39:59','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','manager','','','0','41695649198','Cleared','4','2023-09-25 16:53:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3266,'','Cash','','2023-09-25 17:04:24','','0','4','2023-09-25 17:04:24','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41695650662','Cleared','4','2023-09-25 17:04:35','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3267,'','Delivery','','2023-09-25 21:10:36','','0','6','2023-09-25 21:10:36','','0','350','1','retail','0','350','1','0','0','350','0','0','0','printed','ubereats','','','0','61695665435','Cleared','6','2023-09-25 21:13:56','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3268,'','Delivery','','2023-09-25 21:52:34','','0','6','2023-09-25 21:52:34','','0','350','1','retail','0','350','1','0','0','350','0','0','0','printed','ubereats','','','0','61695667953','Cleared','6','2023-09-25 22:00:07','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3269,'','Cash','','2023-09-26 10:39:33','','0','4','2023-09-26 10:39:33','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed','','','','0','41695713966','Cleared','4','2023-09-26 15:15:02','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3270,'','Cash','','2023-09-26 11:00:01','','0','4','2023-09-26 11:00:01','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41695715200','Cleared','4','2023-09-26 15:08:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3271,'','Voucher','','2023-09-26 18:02:11','','0','6','2023-09-26 18:02:11','','0','350','1','retail','0','350','1','0','350','0','0','0','0','printed','claudia','','','0','61695740530','Cleared','6','2023-09-26 19:56:45','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3272,'HQW9','Mpesa','','2023-09-26 18:23:31','','0','6','2023-09-26 18:23:31','','0','700','1','retail','0','700','1','0','0','0','0','700','0','printed','','','','0','61695741809','Cleared','6','2023-09-26 19:58:34','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3273,'','Cash','','2023-09-26 18:32:17','','0','6','2023-09-26 18:32:17','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','61695742336','Cleared','6','2023-09-26 19:58:48','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3274,'942D','Mpesa','','2023-09-26 19:10:01','','0','6','2023-09-26 19:10:01','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','61695744599','Cleared','6','2023-09-26 19:59:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3275,'','Cash','','2023-09-26 20:18:09','','0','6','2023-09-26 20:18:09','','480','480','1','retail','0','480','1','0','0','0','0','0','0','printed','','','','0','61695748682','Cleared','6','2023-09-26 20:41:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3276,'','Delivery','','2023-09-26 20:41:32','','0','6','2023-09-26 20:41:32','','0','200','1','retail','0','200','1','0','0','200','0','0','0','printed','Ubereats','','','0','61695750091','Cleared','6','2023-09-26 20:41:56','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3277,'','Cash','','2023-09-26 21:41:50','','0','6','2023-09-26 21:41:50','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','61695753708','Cleared','6','2023-09-26 22:25:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3278,'','Delivery','','2023-09-27 10:57:38','','0','6','2023-09-27 10:57:38','','0','350','1','retail','0','350','1','0','0','350','0','0','0','printed','ubereats','','','0','61695801457','Cleared','6','2023-09-27 10:59:05','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3279,'','Voucher','','2023-09-27 10:58:25','','0','6','2023-09-27 10:58:25','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','Claudia','','','0','61695801504','Cleared','6','2023-09-27 20:05:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3280,'','Cash','','2023-09-27 15:50:52','','0','6','2023-09-27 15:50:52','','280','280','1','retail','0','280','1','0','0','0','0','0','0','printed','','','','0','61695819051','Cleared','6','2023-09-27 16:06:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3281,'','Cash','','2023-09-27 17:51:10','','0','6','2023-09-27 17:51:10','','280','280','1','retail','0','280','1','0','0','0','0','0','0','printed','','','','0','61695826268','Cleared','6','2023-09-27 20:04:35','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3282,'SWTF','Mpesa','','2023-09-27 18:04:12','','0','6','2023-09-27 18:04:12','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61695827051','Cleared','6','2023-09-27 20:04:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3283,'ACOS','Mpesa','','2023-09-27 18:04:27','','0','6','2023-09-27 18:04:27','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','61695827066','Cleared','6','2023-09-27 20:02:42','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3284,'SWTF','Mpesa','','2023-09-27 20:06:32','','0','6','2023-09-27 20:06:32','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','61695834391','Cleared','6','2023-09-27 20:07:04','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3285,'PW1R','Mpesa','','2023-09-28 10:05:58','','0','6','2023-09-28 10:05:58','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61695884756','Cleared','6','2023-09-28 13:18:33','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3286,'XYGS','Mpesa','','2023-09-28 11:42:53','','0','6','2023-09-28 11:42:53','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61695890572','Cleared','6','2023-09-28 11:43:32','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3287,'VP9G','Mpesa','','2023-09-28 12:22:57','','0','6','2023-09-28 12:22:57','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','61695892976','Cleared','6','2023-09-28 12:23:34','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3288,'','Voucher','','2023-09-28 17:47:50','','0','6','2023-09-28 17:47:50','','0','400','1','retail','0','400','1','0','400','0','0','0','0','printed','Martin','','','0','61695912467','Cleared','6','2023-09-28 17:48:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3289,'d69z','Mpesa','','2023-09-28 17:55:10','','0','4','2023-09-28 17:55:10','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41695912909','Cleared','4','2023-09-28 19:04:45','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3290,'w3oh','Mpesa','','2023-09-28 19:53:47','','0','4','2023-09-28 19:53:47','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41695920026','Cleared','4','2023-09-28 20:34:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3291,'','Cash','','2023-09-28 21:15:26','','0','4','2023-09-28 21:15:26','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','41695924903','Cleared','4','2023-09-28 21:33:56','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3292,'','Voucher','','2023-09-28 21:34:06','','0','4','2023-09-28 21:34:06','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','manager','','','0','41695926045','Cleared','4','2023-09-28 21:34:34','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3293,'','Voucher','','2023-09-28 21:42:30','','0','4','2023-09-28 21:42:30','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','purity','','','0','41695926549','Cleared','4','2023-09-28 21:42:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3294,'','Cash','','2023-09-28 22:15:22','','0','4','2023-09-28 22:15:22','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','41695928521','Cleared','4','2023-09-28 22:18:38','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3295,'lxn4','Mpesa','','2023-09-29 09:02:30','','0','4','2023-09-29 09:02:30','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41695967349','Cleared','4','2023-09-29 09:03:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3296,'','Voucher','','2023-09-29 09:39:38','','0','4','2023-09-29 09:39:38','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','purity','','','0','41695969577','Cleared','4','2023-09-29 09:40:11','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3297,'bivp','Mpesa','','2023-09-29 10:52:41','','0','4','2023-09-29 10:52:41','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41695973960','Cleared','4','2023-09-29 14:47:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3298,'','Voucher','','2023-09-29 16:35:03','','0','4','2023-09-29 16:35:03','','0','350','1','retail','0','350','1','0','350','0','0','0','0','printed','uncle','','','0','41695994502','Cleared','4','2023-09-29 16:35:42','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3299,'','Cash','','2023-09-29 17:05:57','','0','6','2023-09-29 17:05:57','','450','450','1','retail','0','450','1','0','0','0','0','0','0','printed','','','','0','61695996348','Cleared','6','2023-09-29 17:10:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3300,'','Cash','','2023-09-29 18:11:49','','0','6','2023-09-29 18:11:49','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','61696000307','Cleared','6','2023-09-29 18:25:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3301,'LWBY','Mpesa','','2023-09-29 18:12:01','','0','6','2023-09-29 18:12:01','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61696000320','Cleared','6','2023-09-29 19:20:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3302,'','Cash','','2023-09-29 18:12:24','','0','6','2023-09-29 18:12:24','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed','','','','0','61696000337','Cleared','6','2023-09-29 18:26:00','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3303,'FYRL','Mpesa','','2023-09-29 18:12:42','','0','6','2023-09-29 18:12:42','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','61696000355','Cleared','6','2023-09-29 18:26:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3304,'0KZT','Mpesa','','2023-09-29 18:38:17','','0','6','2023-09-29 18:38:17','','0','450','1','retail','0','450','1','0','0','0','0','450','0','printed','','','','0','61696001891','Cleared','6','2023-09-29 19:02:42','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3305,'8MBQ','Mpesa','','2023-09-29 18:45:06','','0','6','2023-09-29 18:45:06','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','61696002303','Cleared','6','2023-09-29 19:25:40','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3306,'9C3T','Mpesa','','2023-09-29 19:21:22','','0','6','2023-09-29 19:21:22','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','8MBQ','','','0','61696004473','Cleared','6','2023-09-29 19:25:16','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3307,'PQWF','Mpesa','','2023-09-29 20:13:01','','0','6','2023-09-29 20:13:01','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','PQWF','','','0','61696007580','Cleared','6','2023-09-29 20:53:23','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3308,'','Cash','','2023-09-29 22:27:10','','0','6','2023-09-29 21:12:39','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed','','','','0','61696011158','Cleared','6','2023-09-29 22:57:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3309,'','Voucher','','2023-09-29 21:57:42','','0','6','2023-09-29 21:57:42','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','Manager','','','0','61696013860','Cleared','6','2023-09-29 21:58:15','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3310,'jrow','Mpesa','','2023-09-30 10:37:34','','0','4','2023-09-30 10:37:34','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41696059453','Cleared','4','2023-09-30 15:17:00','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3311,'sij3','Mpesa','','2023-09-30 12:50:23','','0','4','2023-09-30 12:50:23','','0','330','1','retail','0','330','1','0','0','0','0','330','0','printed','','','','0','41696067422','Cleared','4','2023-09-30 12:52:47','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3312,'tqec','Mpesa','','2023-09-30 12:51:06','','0','4','2023-09-30 12:51:06','','0','600','1','retail','0','600','1','0','0','0','0','600','0','printed','','','','0','41696067465','Cleared','4','2023-09-30 12:53:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3313,'bmm2','Mpesa','','2023-09-30 13:46:35','','0','4','2023-09-30 13:46:35','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','41696070794','Cleared','4','2023-09-30 13:47:16','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3314,'','Cash','','2023-09-30 16:46:17','','0','6','2023-09-30 16:46:17','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','61696081576','Cleared','6','2023-09-30 16:55:49','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3315,'','Cash','','2023-09-30 16:52:44','','0','4','2023-09-30 16:52:44','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41696081963','Cleared','4','2023-09-30 16:52:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3316,'','Voucher','','2023-09-30 19:23:31','','0','6','2023-09-30 19:23:31','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','manager','','','0','61696091010','Cleared','6','2023-09-30 19:24:07','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3317,'CLSG','Mpesa','','2023-09-30 21:52:02','','0','6','2023-09-30 21:52:02','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61696099921','Cleared','6','2023-09-30 21:52:43','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3318,'','Delivery','','2023-10-01 10:24:29','','0','4','2023-10-01 10:24:29','','0','150','1','retail','0','150','1','0','0','150','0','0','0','printed','ubereats','','','0','41696145068','Cleared','4','2023-10-01 10:25:34','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3319,'rypp','Mpesa','','2023-10-01 13:44:04','','0','4','2023-10-01 13:44:04','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41696157043','Cleared','4','2023-10-01 13:45:47','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3320,'ecth','Mpesa','','2023-10-01 13:45:03','','0','4','2023-10-01 13:45:03','','0','560','1','retail','0','560','1','0','0','0','0','560','0','printed','','','','0','41696157099','Cleared','4','2023-10-01 13:46:16','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3321,'','Voucher','','2023-10-01 16:51:33','','0','4','2023-10-01 16:51:33','','0','400','1','retail','0','400','1','0','400','0','0','0','0','printed','purity','','','0','41696168254','Cleared','4','2023-10-01 18:03:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3322,'hy7h','Mpesa','','2023-10-01 18:02:55','','0','4','2023-10-01 18:02:55','','0','600','1','retail','0','600','1','0','0','0','0','600','0','printed','','','','0','41696172571','Cleared','4','2023-10-01 18:51:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3323,'hy7h','Mpesa','','2023-10-01 18:03:06','','0','4','2023-10-01 18:03:06','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41696172585','Cleared','4','2023-10-01 18:52:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3324,'bqni','Mpesa','','2023-10-01 18:31:34','','0','4','2023-10-01 18:31:34','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41696174293','Cleared','4','2023-10-01 18:32:38','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3325,'','Voucher','','2023-10-01 19:34:38','','0','4','2023-10-01 19:34:38','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','manager','','','0','41696178077','Cleared','4','2023-10-01 20:20:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3326,'fw4w','Mpesa','','2023-10-01 19:51:14','','0','4','2023-10-01 19:51:14','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41696179072','Cleared','4','2023-10-01 21:57:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3327,'t86l','Mpesa','','2023-10-02 10:44:56','','0','4','2023-10-02 10:44:56','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41696232695','Cleared','4','2023-10-02 11:43:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3328,'evtg','Mpesa','','2023-10-02 14:53:32','','0','4','2023-10-02 14:53:32','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41696247611','Cleared','4','2023-10-02 16:27:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3329,'0F4V','Cash','','2023-10-02 17:45:56','','0','6','2023-10-02 17:45:56','','200','280','1','retail','0','280','1','0','0','0','0','80','0','printed','','','','0','61696257955','Cleared','6','2023-10-02 18:03:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3330,'','Cash','','2023-10-02 18:02:22','','0','6','2023-10-02 18:02:22','','250','250','1','retail','0','250','1','0','0','0','0','0','0','new',' ','','','0','61696258940','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3331,'','Voucher','','2023-10-02 19:46:15','','0','6','2023-10-02 19:46:15','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','Manager','','','0','61696265174','Cleared','6','2023-10-02 19:46:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3332,'OYSD','Mpesa','','2023-10-03 12:18:43','','0','6','2023-10-03 12:18:43','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61696324722','Cleared','6','2023-10-03 15:03:07','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3333,'H34F','Mpesa','','2023-10-03 17:59:27','','0','4','2023-10-03 17:59:27','','0','380','1','retail','0','380','1','0','0','0','0','380','0','printed','','','','0','41696345158','Cleared','4','2023-10-03 18:00:15','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3334,'SMVW','Mpesa','','2023-10-03 17:59:37','','0','4','2023-10-03 17:59:37','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41696345175','Cleared','4','2023-10-03 18:14:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3335,'EMOX','Mpesa','','2023-10-03 19:09:00','','0','4','2023-10-03 19:09:00','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41696349339','Cleared','4','2023-10-03 19:30:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3336,'','Voucher','','2023-10-03 19:29:38','','0','4','2023-10-03 19:29:38','','0','380','1','retail','0','380','1','0','380','0','0','0','0','printed','PURITY','','','0','41696350202','Cleared','4','2023-10-03 19:35:32','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3337,'','Voucher','','2023-10-03 19:35:10','','0','4','2023-10-03 19:35:10','','0','350','1','retail','0','350','1','0','350','0','0','0','0','printed','MANAGER','','','0','41696350909','Cleared','4','2023-10-03 19:35:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3338,'RJ9Q','Mpesa','','2023-10-03 21:30:20','','0','4','2023-10-03 21:30:20','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41696357819','Cleared','4','2023-10-03 21:30:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3339,'G0O5','Mpesa','','2023-10-04 10:36:59','','0','6','2023-10-04 10:36:59','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','61696405017','Cleared','6','2023-10-04 10:38:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3340,'','Voucher','','2023-10-04 10:37:32','','0','6','2023-10-04 10:37:32','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','Claudia','','','0','61696405051','Cleared','6','2023-10-04 17:48:36','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3341,'RGFL','Mpesa','','2023-10-04 17:28:27','','0','6','2023-10-04 17:28:27','','0','1350','1','retail','0','1350','1','0','0','0','0','1350','0','printed','','','','0','61696429696','Cleared','6','2023-10-04 17:41:27','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3342,'','Mpesa','','2023-10-04 17:40:36','','0','6','2023-10-04 17:40:37','','50','250','1','retail','0','250','1','0','0','0','0','200','0','printed','','','','0','61696430435','Cleared','6','2023-10-04 18:08:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3343,'','Cash','','2023-10-04 18:42:23','','0','6','2023-10-04 18:07:11','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed','','','','0','61696432030','Cleared','6','2023-10-04 19:09:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3344,'','Voucher','','2023-10-05 12:14:50','','0','6','2023-10-05 12:14:50','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','claudia','','','0','61696497289','Cleared','6','2023-10-05 15:27:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3345,'','Cash','','2023-10-05 14:37:55','','0','6','2023-10-05 14:37:55','','280','280','1','retail','0','280','1','0','0','0','0','0','0','printed','','','','0','61696505874','Cleared','6','2023-10-05 14:38:23','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3346,'','Voucher','','2023-10-05 15:25:03','','0','6','2023-10-05 15:25:03','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','uncle','','','0','61696508702','Cleared','6','2023-10-05 15:26:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3347,'11hk','Mpesa','','2023-10-05 15:25:42','','0','6','2023-10-05 15:25:42','','0','700','1','retail','0','700','1','0','0','0','0','700','0','printed','','','','0','61696508740','Cleared','4','2023-10-05 21:27:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3348,'G6A9','Mpesa','','2023-10-05 15:48:02','','0','6','2023-10-05 15:48:02','','0','600','1','retail','0','600','1','0','0','0','0','600','0','printed','','','','0','61696510081','Cleared','6','2023-10-05 17:21:39','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3349,'','Delivery','','2023-10-05 16:14:36','','0','4','2023-10-05 16:14:36','','0','100','1','retail','0','100','1','0','0','100','0','0','0','printed','glovo','','','0','41696511675','Cleared','4','2023-10-05 16:15:10','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3350,'','Voucher','','2023-10-05 18:21:28','','0','4','2023-10-05 18:21:28','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','mzae','','','0','41696519286','Cleared','4','2023-10-05 18:21:59','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3351,'','Voucher','','2023-10-05 20:26:37','','0','4','2023-10-05 20:26:37','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','manager','','','0','41696526795','Cleared','4','2023-10-05 21:36:16','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3352,'waj0','Mpesa','','2023-10-05 21:36:28','','0','4','2023-10-05 21:36:28','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41696530987','Cleared','4','2023-10-05 22:07:23','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3353,'','Voucher','','2023-10-05 22:06:46','','0','4','2023-10-05 22:06:46','','0','600','1','retail','0','600','1','0','600','0','0','0','0','printed','dad','','','0','41696532805','Cleared','4','2023-10-05 22:07:40','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3354,'TI4Y','Mpesa','','2023-10-06 10:39:53','','0','6','2023-10-06 10:39:53','','0','560','1','retail','0','560','1','0','0','0','0','560','0','printed','','','','0','61696577991','Cleared','6','2023-10-06 11:47:48','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3355,'P35Q','Mpesa','','2023-10-06 10:40:18','','0','6','2023-10-06 10:40:18','','0','450','1','retail','0','450','1','0','0','0','0','450','0','printed','','','','0','61696578011','Cleared','6','2023-10-06 11:47:16','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3356,'TI4Y','Mpesa','','2023-10-06 11:12:49','','0','6','2023-10-06 11:12:49','','0','800','1','retail','0','800','1','0','0','0','0','800','0','printed','','','','0','61696579968','Cleared','6','2023-10-06 11:48:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3357,'','Cash','','2023-10-06 17:14:00','','0','6','2023-10-06 17:14:00','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','61696601639','Cleared','6','2023-10-06 17:15:33','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3358,'JV73','Mpesa','','2023-10-06 17:58:54','','0','4','2023-10-06 17:58:54','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41696604333','Cleared','4','2023-10-06 20:19:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3359,'','Voucher','','2023-10-06 18:52:00','','0','4','2023-10-06 18:52:00','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','MANAGER','','','0','41696607519','Cleared','4','2023-10-06 20:00:40','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3360,'','Voucher','','2023-10-06 20:00:05','','0','4','2023-10-06 20:00:05','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','RODGERS','','','0','41696611604','Cleared','4','2023-10-06 20:01:00','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3361,'JV73','Mpesa','','2023-10-06 20:17:31','','0','4','2023-10-06 20:17:31','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41696612650','Cleared','4','2023-10-06 20:20:07','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3362,'KTSZ','Mpesa','','2023-10-06 21:39:18','','0','4','2023-10-06 21:39:18','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41696617557','Cleared','4','2023-10-06 21:39:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3363,'2UF2','Mpesa','','2023-10-06 22:15:44','','0','4','2023-10-06 22:15:44','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41696619742','Cleared','4','2023-10-06 22:16:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3364,'CYV6','Mpesa','','2023-10-07 11:20:01','','0','6','2023-10-07 11:20:01','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61696666799','Cleared','6','2023-10-07 17:37:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3365,'1RQP','Mpesa','','2023-10-07 11:42:58','','0','6','2023-10-07 11:42:58','','0','730','1','retail','0','730','1','0','0','0','0','730','0','printed','','','','0','61696668164','Cleared','6','2023-10-07 11:45:21','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3366,'','Voucher','','2023-10-07 15:58:16','','0','6','2023-10-07 15:58:16','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','manager','','','0','61696683495','Cleared','6','2023-10-07 15:59:24','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3367,'','Voucher','','2023-10-07 17:49:39','','0','6','2023-10-07 17:49:39','','0','400','1','retail','0','400','1','0','400','0','0','0','0','printed','Claudia','','','0','61696690172','Cleared','6','2023-10-07 17:50:12','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3368,'zyoi','Mpesa','','2023-10-07 18:19:56','','0','4','2023-10-07 18:19:56','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41696691992','Cleared','4','2023-10-07 20:16:23','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3369,'ktlj','Mpesa','','2023-10-07 18:52:45','','0','4','2023-10-07 18:52:45','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41696693964','Cleared','4','2023-10-07 20:15:21','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3370,'','Cash','','2023-10-07 19:50:41','','0','4','2023-10-07 19:50:41','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41696697439','Cleared','4','2023-10-07 20:21:38','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3371,'26ru','Mpesa','','2023-10-07 21:38:50','','0','4','2023-10-07 21:38:50','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41696703928','Cleared','4','2023-10-07 22:06:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3372,'','Voucher','','2023-10-09 10:01:12','','0','4','2023-10-09 10:01:12','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','purity','','','0','41696834871','Cleared','4','2023-10-09 10:02:16','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3373,'','Voucher','','2023-10-09 10:02:43','','0','4','2023-10-09 10:02:43','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','janet','','','0','41696834962','Cleared','4','2023-10-09 10:04:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3374,'','Cash','','2023-10-09 10:17:38','','0','4','2023-10-09 10:17:38','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed','','','','0','41696835844','Cleared','4','2023-10-09 10:35:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3375,'','Voucher','','2023-10-09 13:43:00','','0','4','2023-10-09 13:43:00','','0','480','1','retail','0','480','1','0','480','0','0','0','0','printed','purity janet','','','0','41696848155','Cleared','4','2023-10-09 13:45:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3376,'03uv','Mpesa','','2023-10-09 13:45:44','','0','4','2023-10-09 13:45:44','','0','430','1','retail','0','430','1','0','0','0','0','430','0','printed','','','','0','41696848335','Cleared','4','2023-10-09 13:50:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3377,'HXC3','Mpesa','','2023-10-09 18:42:06','','0','6','2023-10-09 18:42:06','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61696866124','Cleared','6','2023-10-09 18:42:35','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3378,'76L8','Mpesa','','2023-10-09 18:52:58','','0','6','2023-10-09 18:52:58','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61696866776','Cleared','6','2023-10-09 18:53:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3379,'PPTA','Mpesa','','2023-10-09 19:07:18','','0','6','2023-10-09 19:07:18','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','61696867637','Cleared','6','2023-10-09 19:30:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3380,'','Voucher','','2023-10-10 10:43:45','','0','4','2023-10-10 10:43:46','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','purity','','','0','41696923824','Cleared','4','2023-10-10 10:44:36','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3381,'','Voucher','','2023-10-10 10:44:03','','0','4','2023-10-10 10:44:03','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','purity','','','0','41696923842','Cleared','4','2023-10-10 11:19:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3382,'','Voucher','','2023-10-10 10:45:22','','0','4','2023-10-10 10:45:22','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','janet','','','0','41696923921','Cleared','4','2023-10-10 10:45:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3383,'okg6','Mpesa','','2023-10-10 11:20:15','','0','4','2023-10-10 11:20:15','','0','680','1','retail','0','680','1','0','0','0','0','680','0','printed','','','','0','41696926003','Cleared','4','2023-10-10 11:50:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3384,'gciy','Mpesa','','2023-10-10 16:00:50','','0','4','2023-10-10 16:00:50','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41696942848','Cleared','4','2023-10-10 16:22:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3385,'FUAK','Mpesa','','2023-10-10 21:59:27','','0','6','2023-10-10 21:59:27','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61696964366','Cleared','6','2023-10-10 22:03:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3386,'8L47','Mpesa','','2023-10-11 13:57:35','','0','6','2023-10-11 13:57:35','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','61697021853','Cleared','6','2023-10-11 14:45:56','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3387,'BOMQ','Mpesa','','2023-10-11 14:43:43','','0','6','2023-10-11 14:43:43','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61697024621','Cleared','6','2023-10-11 16:50:49','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3388,'WA4D','Mpesa','','2023-10-11 16:50:16','','0','6','2023-10-11 16:50:16','','0','530','1','retail','0','530','1','0','0','0','0','530','0','printed','','','','0','61697032212','Cleared','6','2023-10-11 17:14:40','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3389,'HN4V','Mpesa','','2023-10-11 18:54:17','','0','6','2023-10-11 18:54:17','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','HN4V','','','0','61697039656','Cleared','6','2023-10-11 22:16:43','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3390,'4SB0','Mpesa','','2023-10-11 18:54:42','','0','6','2023-10-11 18:54:42','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','61697039681','Cleared','6','2023-10-11 19:44:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3391,'','Voucher','','2023-10-11 19:45:06','','0','6','2023-10-11 19:45:06','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','Mzae','','','0','61697042705','Cleared','6','2023-10-11 19:45:49','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3392,'','Voucher','','2023-10-11 19:45:19','','0','6','2023-10-11 19:45:19','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','janet','','','0','61697042718','Cleared','6','2023-10-11 19:46:05','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3393,'K4OL','Mpesa','','2023-10-12 11:42:32','','0','6','2023-10-12 11:42:32','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61697100150','Cleared','6','2023-10-12 13:17:15','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3394,'Dad','Voucher','','2023-10-12 12:29:03','','0','6','2023-10-12 12:29:03','','0','400','1','retail','0','400','1','0','400','0','0','0','0','printed','','','','0','61697102937','Cleared','6','2023-10-12 12:29:39','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3395,'2T97','Mpesa','','2023-10-12 13:16:28','','0','6','2023-10-12 13:16:28','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61697105777','Cleared','6','2023-10-12 16:26:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3396,'KTK3','Mpesa','','2023-10-12 15:50:59','','0','6','2023-10-12 15:50:59','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','61697115058','Cleared','6','2023-10-12 16:56:38','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3397,'','Voucher','','2023-10-12 17:06:48','','0','6','2023-10-12 17:06:48','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','Janet','','','0','61697119607','Cleared','6','2023-10-12 17:07:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3398,'','Voucher','','2023-10-12 17:06:58','','0','6','2023-10-12 17:06:58','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','claudia','','','0','61697119617','Cleared','6','2023-10-12 17:07:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3399,'','Cash','','2023-10-12 21:10:31','','0','4','2023-10-12 21:10:31','','1240','1240','1','retail','0','1240','1','0','0','0','0','0','0','printed','','','','0','41697134195','Cleared','4','2023-10-12 21:21:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3400,'','Voucher','','2023-10-12 21:34:21','','0','4','2023-10-12 21:34:21','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','manager','','','0','41697135660','Cleared','4','2023-10-12 21:34:47','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3401,'','Voucher','','2023-10-12 21:34:58','','0','4','2023-10-12 21:34:58','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','purity','','','0','41697135697','Cleared','4','2023-10-12 21:35:32','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3402,'g77m','Cash','','2023-10-13 09:26:43','','0','4','2023-10-13 09:26:43','','500','600','1','retail','0','600','1','0','0','0','0','100','0','printed','','','','0','41697178399','Cleared','4','2023-10-13 10:46:10','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3403,'','Cash','','2023-10-13 10:25:34','','0','4','2023-10-13 10:25:34','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41697181933','Cleared','4','2023-10-13 11:41:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3404,'','Voucher','','2023-10-13 10:30:33','','0','4','2023-10-13 10:30:33','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','','','','0','41697182232','Cleared','4','2023-10-13 10:31:21','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3405,'','Voucher','','2023-10-13 10:32:07','','0','4','2023-10-13 10:32:07','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','','','','0','41697182326','Cleared','4','2023-10-13 10:33:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3406,'c5ca','Mpesa','','2023-10-13 10:43:50','','0','4','2023-10-13 10:43:50','','0','550','1','retail','0','550','1','0','0','0','0','550','0','printed','','','','0','41697182985','Cleared','4','2023-10-13 11:41:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3407,'nza8','Mpesa','','2023-10-13 14:07:31','','0','4','2023-10-13 14:07:31','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41697195250','Cleared','4','2023-10-13 14:43:49','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3408,'','Voucher','','2023-10-13 14:09:05','','0','4','2023-10-13 14:09:05','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','','','','0','41697195344','Cleared','4','2023-10-13 14:10:02','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3409,'UAKP','Mpesa','','2023-10-13 17:48:07','','0','6','2023-10-13 17:48:07','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','61697208486','Cleared','6','2023-10-13 17:49:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3410,'3kgp','Mpesa','','2023-10-14 10:20:29','','0','4','2023-10-14 10:20:29','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41697268028','Cleared','4','2023-10-14 14:46:10','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3411,'','Cash','','2023-10-14 19:23:10','','0','6','2023-10-14 19:23:11','','280','280','1','retail','0','280','1','0','0','0','0','0','0','printed','','','','0','61697300589','Cleared','6','2023-10-14 21:38:11','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3412,'TVZJ','Mpesa','','2023-10-14 21:37:42','','0','6','2023-10-14 21:37:42','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','61697308661','Cleared','6','2023-10-14 23:02:08','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3413,'5D4H','Mpesa','','2023-10-14 22:18:12','','0','6','2023-10-14 22:18:12','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','61697311091','Cleared','6','2023-10-14 22:18:38','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3414,'LHIF','Mpesa','','2023-10-14 22:34:11','','0','6','2023-10-14 22:34:11','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61697312050','Cleared','6','2023-10-14 22:35:08','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3415,'k310','Mpesa','','2023-10-15 10:14:42','','0','4','2023-10-15 10:14:42','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41697354081','Cleared','4','2023-10-15 11:17:35','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3416,'','Voucher','','2023-10-15 10:15:16','','0','4','2023-10-15 10:15:16','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','Rojas','','','0','41697354115','Cleared','4','2023-10-15 10:30:11','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3417,'','Voucher','','2023-10-15 10:27:45','','0','4','2023-10-15 10:27:45','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','janet','','','0','41697354864','Cleared','4','2023-10-15 16:56:10','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3418,'qkd2','Mpesa','','2023-10-15 13:03:33','','0','4','2023-10-15 13:03:33','','0','1150','1','retail','0','1150','1','0','0','0','0','1150','0','printed','','','','0','41697364197','Cleared','4','2023-10-15 13:14:59','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3419,'rgmv','Mpesa','','2023-10-15 14:14:28','','0','4','2023-10-15 14:14:28','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41697368467','Cleared','4','2023-10-15 14:18:59','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3420,'','Cash','','2023-10-15 19:51:01','','0','4','2023-10-15 19:51:01','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed','','','','0','41697388642','Cleared','4','2023-10-15 20:40:32','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3421,'6xvn','Mpesa','','2023-10-15 20:02:15','','0','4','2023-10-15 20:02:15','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41697389334','Cleared','4','2023-10-15 21:02:16','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3422,'','Voucher','','2023-10-15 20:41:24','','0','4','2023-10-15 20:41:24','','0','330','1','retail','0','330','1','0','330','0','0','0','0','printed','purity','','','0','41697391682','Cleared','4','2023-10-15 20:42:02','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3423,'ekcf','Mpesa','','2023-10-16 08:56:07','','0','4','2023-10-16 08:56:07','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41697435766','Cleared','4','2023-10-16 09:31:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3424,'','Voucher','','2023-10-16 09:10:41','','0','4','2023-10-16 09:10:41','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','purity\r\n','','','0','41697436640','Cleared','4','2023-10-16 09:13:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3425,'','Voucher','','2023-10-16 09:10:59','','0','4','2023-10-16 09:10:59','','0','500','1','retail','0','500','1','0','500','0','0','0','0','printed','janet','','','0','41697436656','Cleared','4','2023-10-16 09:13:04','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3426,'h4re','Mpesa','','2023-10-16 10:18:40','','0','4','2023-10-16 10:18:40','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41697440719','Cleared','4','2023-10-16 11:50:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3427,'7paa','Mpesa','','2023-10-16 14:35:30','','0','4','2023-10-16 14:35:30','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41697456128','Cleared','4','2023-10-16 14:36:47','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3428,'84E5','Mpesa','','2023-10-16 16:43:35','','0','4','2023-10-16 16:43:35','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41697463814','Cleared','4','2023-10-16 20:46:23','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3429,'7VQR','Mpesa','','2023-10-16 17:42:32','','0','6','2023-10-16 17:42:32','','0','480','1','retail','0','480','1','0','0','0','0','480','0','printed','','','','0','61697467339','Cleared','6','2023-10-16 17:55:12','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3430,'JF41','Mpesa','','2023-10-16 21:19:10','','0','6','2023-10-16 21:19:10','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','61697480349','Cleared','6','2023-10-16 21:31:48','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3431,'515i','Mpesa','','2023-10-17 10:25:04','','0','6','2023-10-17 10:25:04','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61697527503','Cleared','6','2023-10-17 16:27:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3432,'','Cash','','2023-10-17 10:28:47','','0','6','2023-10-17 10:28:47','','450','450','1','retail','0','450','1','0','0','0','0','0','0','printed','','','','0','61697527717','Cleared','6','2023-10-17 11:40:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3433,'6tb1','Mpesa','','2023-10-17 12:34:38','','0','6','2023-10-17 12:34:38','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61697535277','Cleared','6','2023-10-17 14:53:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3434,'','Voucher','','2023-10-17 17:05:21','','0','6','2023-10-17 17:05:21','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','claudia','','','0','61697551519','Cleared','6','2023-10-17 17:06:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3435,'','Voucher','','2023-10-17 17:05:35','','0','6','2023-10-17 17:05:35','','0','400','1','retail','0','400','1','0','400','0','0','0','0','printed','martin','','','0','61697551532','Cleared','6','2023-10-17 17:06:49','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3436,'','Voucher','','2023-10-17 17:05:53','','0','6','2023-10-17 17:05:53','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','janet','','','0','61697551551','Cleared','6','2023-10-17 17:07:04','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3437,'','Voucher','','2023-10-17 19:40:44','','0','4','2023-10-17 19:40:44','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','mzae','','','0','41697560842','Cleared','4','2023-10-17 19:41:05','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3438,'2shr','Mpesa','','2023-10-17 19:49:13','','0','4','2023-10-17 19:49:13','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','2shr','','','0','41697561352','Cleared','4','2023-10-17 20:30:29','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3439,'2shr','Mpesa','','2023-10-17 20:02:29','','0','4','2023-10-17 20:02:29','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','41697562147','Cleared','4','2023-10-17 20:30:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3440,'','Voucher','','2023-10-17 21:43:15','','0','4','2023-10-17 21:43:15','','0','330','1','retail','0','330','1','0','330','0','0','0','0','printed','purity','','','0','41697568193','Cleared','4','2023-10-17 21:46:43','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3441,'8PJ7','Mpesa','','2023-10-29 18:10:18','','0','4','2023-10-29 18:10:18','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41698592217','Cleared','4','2023-10-29 18:18:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3442,'','Voucher','','2023-10-29 20:03:17','','0','4','2023-10-29 20:03:17','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','MANAGER','','','0','41698598995','Cleared','4','2023-10-29 20:03:42','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3443,'E1SK','Mpesa','','2023-10-30 11:05:02','','0','4','2023-10-30 11:04:24','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41698653063','Cleared','4','2023-10-30 11:21:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3444,'rglq','Mpesa','','2023-10-30 11:05:39','','0','4','2023-10-30 11:05:39','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41698653138','Cleared','4','2023-10-30 11:11:49','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3445,'E1SK','Mpesa','','2023-10-30 11:05:55','','0','4','2023-10-30 11:05:55','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41698653153','Cleared','4','2023-10-30 11:20:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3446,'','Voucher','','2023-10-30 13:49:22','','0','4','2023-10-30 13:49:22','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','peter','','','0','41698662961','Cleared','4','2023-10-30 13:50:39','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3447,'E2RT','Mpesa','','2023-10-30 18:03:26','','0','6','2023-10-30 18:03:26','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61698678205','Cleared','6','2023-10-30 20:08:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3448,'PLGA','Mpesa','','2023-10-30 18:48:54','','0','6','2023-10-30 18:48:54','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','61698680932','Cleared','6','2023-10-30 19:10:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3449,'512D','Mpesa','','2023-10-30 18:49:05','','0','6','2023-10-30 18:49:05','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','61698680943','Cleared','6','2023-10-30 19:02:04','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3450,'E2RT','Mpesa','','2023-10-30 18:49:19','','0','6','2023-10-30 18:49:19','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61698680958','Cleared','6','2023-10-30 20:07:17','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3451,'','Voucher','','2023-10-30 19:11:11','','0','6','2023-10-30 19:11:11','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','Claudia','','','0','61698682270','Cleared','6','2023-10-30 20:08:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3452,'UE0O','Mpesa','','2023-10-30 20:06:13','','0','6','2023-10-30 20:06:13','','0','800','1','retail','0','800','1','0','0','0','0','800','0','printed','','','','0','61698685558','Cleared','6','2023-10-30 20:06:49','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3453,'Y3QK','Mpesa','','2023-10-30 21:11:20','','0','6','2023-10-30 21:11:20','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','61698689478','Cleared','6','2023-10-30 22:14:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3454,'14R5','Mpesa','','2023-10-31 09:46:12','','0','6','2023-10-31 09:46:12','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61698734771','Cleared','6','2023-10-31 17:36:04','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3455,'','Voucher','','2023-10-31 10:14:29','','0','6','2023-10-31 10:14:29','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','peter','','','0','61698736467','Cleared','6','2023-10-31 10:15:32','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3456,'9UMG','Mpesa','','2023-10-31 13:24:26','','0','6','2023-10-31 13:24:27','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61698747865','Cleared','6','2023-10-31 13:30:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3457,'2QQU\\4IA4','Mpesa','','2023-10-31 16:52:37','','0','4','2023-10-31 16:52:37','','0','700','1','retail','0','700','1','0','0','0','0','700','0','printed','','','','0','41698760354','Cleared','4','2023-10-31 19:31:35','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3458,'','Cash','','2023-10-31 17:17:38','','0','6','2023-10-31 17:17:38','','280','280','1','retail','0','280','1','0','0','0','0','0','0','printed','','','','0','61698761856','Cleared','6','2023-10-31 17:35:37','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3459,'','Cash','','2023-10-31 17:34:57','','0','6','2023-10-31 17:34:57','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','61698762896','Cleared','6','2023-10-31 17:35:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3460,'','Cash','','2023-10-31 17:36:44','','0','4','2023-10-31 17:36:44','','480','480','1','retail','0','480','1','0','0','0','0','0','0','printed','','','','0','41698762998','Cleared','4','2023-10-31 17:37:04','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3461,'1VIV','Mpesa','','2023-10-31 21:12:35','','0','4','2023-10-31 21:12:35','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41698775953','Cleared','4','2023-10-31 21:13:00','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3462,'4IA4','Cash','','2023-10-31 21:32:08','','0','6','2023-10-31 21:32:08','','130','280','1','retail','0','280','1','0','0','0','0','150','0','printed','','','','0','61698777127','Cleared','4','2023-10-31 22:05:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3463,'','Cash','','2023-11-01 09:56:56','','0','6','2023-11-01 09:56:56','','580','580','1','retail','0','580','1','0','0','0','0','0','0','printed','','','','0','61698821812','Cleared','6','2023-11-01 10:58:27','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3464,'42SE','Mpesa','','2023-11-01 09:57:22','','0','6','2023-11-01 09:57:22','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61698821841','Cleared','6','2023-11-01 22:04:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3465,'','Voucher','','2023-11-01 10:25:33','','0','6','2023-11-01 10:25:33','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','Peter','','','0','61698823532','Cleared','6','2023-11-01 17:32:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3466,'GCW9','Mpesa','','2023-11-01 11:21:12','','0','6','2023-11-01 11:21:12','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','61698826871','Cleared','6','2023-11-01 13:28:10','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3467,'HSU9','Mpesa','','2023-11-01 14:26:20','','0','6','2023-11-01 14:26:20','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','61698837979','Cleared','6','2023-11-01 14:30:23','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3468,'Y4G1','Mpesa','','2023-11-01 16:44:06','','0','6','2023-11-01 16:44:06','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','61698846245','Cleared','6','2023-11-01 16:45:16','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3469,'Q9OM','Mpesa','','2023-11-01 17:17:47','','0','6','2023-11-01 17:17:47','','0','630','1','retail','0','630','1','0','0','0','0','630','0','printed','','','','0','61698848261','Cleared','6','2023-11-01 17:24:37','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3470,'R6PY','Mpesa','','2023-11-01 19:45:45','','0','6','2023-11-01 19:45:45','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','61698857144','Cleared','6','2023-11-01 20:39:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3471,'DLNM','Mpesa','','2023-11-01 22:35:44','','0','6','2023-11-01 22:35:44','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','61698867340','Cleared','6','2023-11-01 22:42:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3472,'','Cash','','2023-11-01 22:36:02','','0','6','2023-11-01 22:36:02','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','61698867352','Cleared','6','2023-11-01 22:43:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3473,'m9gp','Mpesa','','2023-11-02 19:40:47','','0','4','2023-11-02 19:40:47','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41698943245','Cleared','4','2023-11-02 19:47:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3474,'QVEO','Mpesa','','2023-11-02 20:26:46','','0','4','2023-11-02 20:26:46','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41698946005','Cleared','4','2023-11-02 21:53:56','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3475,'','Cash','','2023-11-02 20:51:41','','0','4','2023-11-02 20:51:41','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41698947500','Cleared','4','2023-11-02 20:51:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3476,'','Voucher','','2023-11-02 20:52:04','','0','4','2023-11-02 20:52:04','','0','350','1','retail','0','350','1','0','350','0','0','0','0','printed','EVELYN','','','0','41698947523','Cleared','4','2023-11-02 20:52:33','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3477,'','Voucher','','2023-11-02 21:07:29','','0','4','2023-11-02 21:07:29','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','MANAGER','','','0','41698948447','Cleared','4','2023-11-02 21:41:24','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3478,'','Cash','','2023-11-02 21:40:16','','0','4','2023-11-02 21:40:16','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41698950414','Cleared','4','2023-11-02 22:17:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3479,'','Voucher','','2023-11-02 21:52:29','','0','4','2023-11-02 21:52:29','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','MARTIN','','','0','41698951148','Cleared','4','2023-11-02 21:53:17','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3480,'GZS5','Mpesa','','2023-11-03 10:48:19','','0','6','2023-11-03 10:48:19','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61698997698','Cleared','6','2023-11-03 16:57:00','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3481,'GXOD','Mpesa','','2023-11-03 10:48:28','','0','6','2023-11-03 10:48:28','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61698997707','Cleared','6','2023-11-03 11:44:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3482,'','Cash','','2023-11-03 10:48:37','','0','6','2023-11-03 10:48:37','','200','200','1','retail','0','200','1','0','0','0','0','0','0','new',' ','','','0','61698997716','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3483,'CG5Y','Mpesa','','2023-11-03 13:07:30','','0','6','2023-11-03 13:07:30','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','61699006049','Cleared','6','2023-11-03 13:07:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3484,'2YO8','Mpesa','','2023-11-03 14:27:07','','0','6','2023-11-03 14:27:07','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61699010826','Cleared','6','2023-11-03 16:56:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3485,'YCWB','Mpesa','','2023-11-03 15:41:14','','0','4','2023-11-03 15:41:14','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41699015273','Cleared','4','2023-11-03 17:29:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3486,'UZM3','Mpesa','','2023-11-03 16:48:15','','0','6','2023-11-03 16:48:15','','0','100','1','retail','0','100','1','0','0','0','0','100','0','printed','','','','0','61699019293','Cleared','6','2023-11-03 17:17:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3487,'YCWB','Mpesa','','2023-11-03 17:00:32','','0','4','2023-11-03 17:00:32','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41699020031','Cleared','4','2023-11-03 17:30:00','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3488,'VL6Q','Mpesa','','2023-11-03 17:19:28','','0','4','2023-11-03 17:19:28','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41699021166','Cleared','4','2023-11-03 18:46:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3489,'VL6Q','Mpesa','','2023-11-03 18:12:20','','0','4','2023-11-03 18:12:20','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41699024339','Cleared','4','2023-11-03 18:47:10','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3490,'VL6Q','Mpesa','','2023-11-03 18:46:12','','0','4','2023-11-03 18:46:12','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41699026371','Cleared','4','2023-11-03 18:47:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3491,'','Voucher','','2023-11-03 21:40:16','','0','4','2023-11-03 21:40:16','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','GEORGE','','','0','41699036814','Cleared','4','2023-11-03 21:40:42','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3492,'QTSS','Mpesa','','2023-11-04 12:03:35','','0','6','2023-11-04 12:03:35','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','61699088612','Cleared','6','2023-11-04 12:04:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3493,'S71E','Mpesa','','2023-11-04 12:03:43','','0','6','2023-11-04 12:03:43','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61699088622','Cleared','6','2023-11-04 12:04:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3494,'I224','Mpesa','','2023-11-04 13:25:25','','0','6','2023-11-04 13:25:25','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','61699093524','Cleared','6','2023-11-04 13:25:49','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3495,'8HYE','Mpesa','','2023-11-04 14:04:09','','0','6','2023-11-04 14:04:09','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61699095848','Cleared','6','2023-11-04 14:05:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3496,'8HYE','Mpesa','','2023-11-04 14:04:20','','0','6','2023-11-04 14:04:20','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','61699095859','Cleared','6','2023-11-04 14:05:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3497,'','Voucher','','2023-11-04 15:00:36','','0','6','2023-11-04 15:00:36','','0','500','1','retail','0','500','1','0','500','0','0','0','0','printed','Evelyn','','','0','61699099234','Cleared','6','2023-11-04 15:01:11','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3498,'','Voucher','','2023-11-04 15:40:46','','0','4','2023-11-04 15:40:46','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','mzae','','','0','41699101645','Cleared','4','2023-11-04 15:41:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3499,'','Voucher','','2023-11-04 19:29:06','','0','4','2023-11-04 19:29:06','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','GEORGE','','','0','41699115345','Cleared','4','2023-11-04 19:31:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3500,'8702','Mpesa','','2023-11-04 19:35:42','','0','4','2023-11-04 19:35:42','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41699115741','Cleared','4','2023-11-04 19:36:08','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3501,'ZN1V','Mpesa','','2023-11-04 21:17:30','','0','4','2023-11-04 21:17:30','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41699121849','Cleared','4','2023-11-04 21:32:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3502,'','Cash','','2023-11-04 21:31:47','','0','4','2023-11-04 21:31:47','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','41699122706','Cleared','4','2023-11-04 21:47:10','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3503,'c649','Mpesa','','2023-11-05 13:49:24','','0','4','2023-11-05 13:49:24','','0','700','1','retail','0','700','1','0','0','0','0','700','0','printed','','','','0','41699181358','Cleared','4','2023-11-05 15:09:15','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3504,'9h6a','Mpesa','','2023-11-05 15:07:43','','0','4','2023-11-05 15:07:43','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41699186062','Cleared','4','2023-11-05 16:18:23','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3505,'99GU','Mpesa','','2023-11-05 18:36:20','','0','4','2023-11-05 18:36:20','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41699198576','Cleared','4','2023-11-05 19:53:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3506,'0U0I','Mpesa','','2023-11-05 19:09:01','','0','4','2023-11-05 19:09:01','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41699200540','Cleared','4','2023-11-05 20:23:10','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3507,'M6QB','Mpesa','','2023-11-05 19:53:01','','0','4','2023-11-05 19:53:01','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41699203180','Cleared','4','2023-11-05 20:24:04','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3508,'M6QB','Mpesa','','2023-11-05 20:22:22','','0','4','2023-11-05 20:22:22','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41699204941','Cleared','4','2023-11-05 20:27:02','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3509,'','Voucher','','2023-11-05 20:24:30','','0','4','2023-11-05 20:24:30','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','PURITY','','','0','41699205069','Cleared','4','2023-11-05 20:26:16','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3510,'','Voucher','','2023-11-05 21:19:09','','0','4','2023-11-05 21:19:09','','0','350','1','retail','0','350','1','0','350','0','0','0','0','printed','MZAE','','','0','41699208338','Cleared','4','2023-11-05 21:31:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3511,'0z97','Mpesa','','2023-11-06 13:51:17','','0','4','2023-11-06 13:51:17','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41699267876','Cleared','4','2023-11-06 14:57:56','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3512,'','Cash','','2023-11-06 15:40:32','','0','4','2023-11-06 15:40:32','','400','560','1','retail','0','560','1','0','0','0','0','160','0','printed','','','','0','41699274429','Cleared','4','2023-11-06 17:19:45','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3513,'1QFZ','Mpesa','','2023-11-06 17:01:41','','0','4','2023-11-06 17:01:41','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41699279300','Cleared','4','2023-11-06 18:00:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3514,'1QFZ','Mpesa','','2023-11-06 17:49:02','','0','6','2023-11-06 17:49:02','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','61699282141','Cleared','6','2023-11-06 17:59:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3515,'','Cash','','2023-11-06 20:05:30','','0','6','2023-11-06 20:05:30','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','61699290328','Cleared','6','2023-11-06 21:25:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3516,'','Voucher','','2023-11-06 20:05:40','','0','6','2023-11-06 20:05:40','','0','400','1','retail','0','400','1','0','400','0','0','0','0','printed','Mzae','','','0','61699290337','Cleared','6','2023-11-06 20:28:42','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3517,'','Cash','','2023-11-06 20:11:13','','0','6','2023-11-06 20:11:13','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','61699290672','Cleared','6','2023-11-06 20:17:56','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3518,'','Cash','','2023-11-06 20:11:32','','0','6','2023-11-06 20:11:32','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','61699290691','Cleared','6','2023-11-06 21:25:56','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3519,'','Cash','','2023-11-06 20:11:42','','0','6','2023-11-06 20:11:42','','280','280','1','retail','0','280','1','0','0','0','0','0','0','printed','','','','0','61699290701','Cleared','6','2023-11-06 20:41:12','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3520,'55DP','Mpesa','','2023-11-07 11:04:16','','0','4','2023-11-07 11:04:16','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41699344255','Cleared','4','2023-11-07 14:37:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3521,'QZ1X','Mpesa','','2023-11-07 11:22:19','','0','4','2023-11-07 11:22:19','','0','480','1','retail','0','480','1','0','0','0','0','480','0','printed','','','','0','41699345335','Cleared','4','2023-11-07 12:54:33','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3522,'','Cash','','2023-11-07 13:14:25','','0','4','2023-11-07 13:14:25','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41699352064','Cleared','4','2023-11-07 13:41:42','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3523,'HGW6','Mpesa','','2023-11-07 14:33:51','','0','4','2023-11-07 14:33:51','','0','630','1','retail','0','630','1','0','0','0','0','630','0','printed','','','','0','41699356823','Cleared','4','2023-11-07 15:35:40','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3524,'','Cash','','2023-11-07 16:36:50','','0','4','2023-11-07 16:36:51','','280','280','1','retail','0','280','1','0','0','0','0','0','0','printed','','','','0','41699364209','Cleared','4','2023-11-07 16:45:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3525,'XBVH','Mpesa','','2023-11-07 17:50:40','','0','6','2023-11-07 17:50:40','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','61699368639','Cleared','6','2023-11-07 17:51:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3526,'B152','Mpesa','','2023-11-07 18:13:18','','0','6','2023-11-07 18:13:18','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','61699369997','Cleared','6','2023-11-07 18:30:32','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3527,'THLH','Mpesa','','2023-11-07 19:38:15','','0','6','2023-11-07 19:38:15','','0','700','1','retail','0','700','1','0','0','0','0','700','0','printed','','','','0','61699375093','Cleared','6','2023-11-07 20:15:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3528,'3ZLX','Mpesa','','2023-11-07 20:14:40','','0','6','2023-11-07 20:14:40','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61699377279','Cleared','6','2023-11-07 20:32:42','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3529,'M6BO','Mpesa','','2023-11-07 20:14:49','','0','6','2023-11-07 20:14:49','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61699377287','Cleared','6','2023-11-07 20:15:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3530,'','Voucher','','2023-11-07 20:16:09','','0','6','2023-11-07 20:16:09','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','George','','','0','61699377368','Cleared','6','2023-11-07 20:16:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3531,'','Voucher','','2023-11-07 20:27:47','','0','6','2023-11-07 20:27:47','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','manager','','','0','61699378066','Cleared','6','2023-11-07 20:28:08','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3532,'','Cash','','2023-11-07 21:03:59','','0','6','2023-11-07 21:03:59','','200','200','1','retail','0','200','1','0','0','0','0','0','0','new',' ','','','0','61699380238','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3533,'0R4J','Mpesa','','2023-11-07 21:21:30','','0','6','2023-11-07 21:21:30','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61699381289','Cleared','6','2023-11-07 21:55:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3534,'39sxc','Mpesa','','2023-11-08 12:10:47','','0','4','2023-11-08 12:10:47','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41699434646','Cleared','4','2023-11-08 12:12:00','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3535,'6Y21','Mpesa','','2023-11-08 14:29:16','','0','4','2023-11-08 14:29:16','','0','680','1','retail','0','680','1','0','0','0','0','680','0','printed','','','','0','41699442934','Cleared','4','2023-11-08 16:29:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3536,'','Delivery','','2023-11-08 15:17:41','','0','4','2023-11-08 15:17:41','','0','500','1','retail','0','500','1','0','0','500','0','0','0','printed','GLOVO','','','0','41699445855','Cleared','4','2023-11-08 16:29:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3537,'8GEF','Mpesa','','2023-11-08 16:06:36','','0','4','2023-11-08 16:06:36','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','8GEF','','','0','41699448795','Cleared','4','2023-11-08 16:28:57','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3538,'','Cash','','2023-11-08 16:30:06','','0','4','2023-11-08 16:30:06','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41699450205','Cleared','4','2023-11-08 16:30:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3539,'PYWG','Mpesa','','2023-11-08 16:44:52','','0','4','2023-11-08 16:44:52','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41699451090','Cleared','4','2023-11-08 17:21:43','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3540,'ATWA','Mpesa','','2023-11-08 17:02:59','','0','4','2023-11-08 17:02:59','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41699452178','Cleared','4','2023-11-08 17:26:00','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3541,'','Cash','','2023-11-08 17:09:35','','0','4','2023-11-08 17:09:35','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41699452574','Cleared','4','2023-11-08 17:09:47','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3542,'77ZQ','Mpesa','','2023-11-08 18:22:37','','0','4','2023-11-08 18:22:37','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41699456956','Cleared','4','2023-11-08 18:50:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3543,'','Cash','','2023-11-08 18:36:12','','0','4','2023-11-08 18:36:12','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41699457771','Cleared','4','2023-11-08 19:22:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3544,'1GCC','Mpesa','','2023-11-08 19:18:03','','0','4','2023-11-08 19:18:03','','0','630','1','retail','0','630','1','0','0','0','0','630','0','printed','','','','0','41699460277','Cleared','4','2023-11-08 19:18:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3545,'','Cash','','2023-11-08 19:18:56','','0','4','2023-11-08 19:18:56','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41699460335','Cleared','4','2023-11-08 19:22:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3546,'','Voucher','','2023-11-08 20:34:28','','0','4','2023-11-08 20:34:28','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','ALBERT','','','0','41699464867','Cleared','4','2023-11-08 20:35:47','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3547,'','Voucher','','2023-11-08 20:35:16','','0','4','2023-11-08 20:35:16','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','PURITY','','','0','41699464915','Cleared','4','2023-11-08 20:36:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3548,'','Cash','','2023-11-08 20:39:24','','0','4','2023-11-08 20:39:24','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','41699465163','Cleared','4','2023-11-08 21:33:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3549,'','Delivery','','2023-11-09 10:13:07','','0','4','2023-11-09 10:13:07','','0','380','1','retail','0','380','1','0','0','380','0','0','0','printed','ubereats','','','0','41699513981','Cleared','4','2023-11-09 10:27:43','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3550,'','Delivery','','2023-11-09 10:13:32','','0','4','2023-11-09 10:13:32','','0','580','1','retail','0','580','1','0','0','580','0','0','0','printed','ubereats','','','0','41699513998','Cleared','4','2023-11-09 10:28:17','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3551,'','Delivery','','2023-11-09 10:13:48','','0','4','2023-11-09 10:13:48','','0','350','1','retail','0','350','1','0','0','350','0','0','0','printed','ubereats','','','0','41699514027','Cleared','4','2023-11-09 10:28:48','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3552,'h1pa','Mpesa','','2023-11-09 10:44:05','','0','4','2023-11-09 10:44:05','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41699515844','Cleared','4','2023-11-09 10:44:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3553,'AQTC','Mpesa','','2023-11-09 12:51:45','','0','4','2023-11-09 12:51:45','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41699523504','Cleared','4','2023-11-09 16:18:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3554,'2d95','Mpesa','','2023-11-09 13:16:48','','0','4','2023-11-09 13:16:48','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41699525007','Cleared','4','2023-11-09 14:08:40','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3555,'','Cash','','2023-11-09 16:13:43','','0','4','2023-11-09 16:13:43','','280','280','1','retail','0','280','1','0','0','0','0','0','0','printed','','','','0','41699535614','Cleared','4','2023-11-09 16:14:07','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3556,'','Cash','','2023-11-09 16:39:46','','0','4','2023-11-09 16:39:46','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','41699537185','Cleared','4','2023-11-09 17:06:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3557,'','Voucher','','2023-11-09 17:36:59','','0','4','2023-11-09 17:36:59','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','MZAE','','','0','41699540618','Cleared','4','2023-11-09 17:39:32','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3558,'','Cash','','2023-11-09 17:55:48','','0','4','2023-11-09 17:55:48','','560','560','1','retail','0','560','1','0','0','0','0','0','0','printed','','','','0','41699541737','Cleared','4','2023-11-09 18:53:32','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3559,'2LKK','Mpesa','','2023-11-09 17:56:03','','0','4','2023-11-09 17:56:03','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','41699541760','Cleared','4','2023-11-09 17:56:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3560,'','Cash','','2023-11-09 19:23:14','','0','4','2023-11-09 19:23:14','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','41699546993','Cleared','4','2023-11-09 19:30:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3561,'','Cash','','2023-11-09 20:54:19','','0','4','2023-11-09 20:54:19','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','41699552458','Cleared','4','2023-11-09 21:23:11','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3562,'','Cash','','2023-11-09 20:54:33','','0','4','2023-11-09 20:54:33','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','41699552472','Cleared','4','2023-11-09 21:22:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3563,'','Voucher','','2023-11-09 21:22:15','','0','4','2023-11-09 21:22:15','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','MANAGER','','','0','41699554134','Cleared','4','2023-11-09 21:23:32','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3564,'','Voucher','','2023-11-09 21:22:30','','0','4','2023-11-09 21:22:30','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','ALBERT','','','0','41699554149','Cleared','4','2023-11-09 21:23:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3565,'4cg7','Mpesa','','2023-11-10 11:19:10','','0','4','2023-11-10 11:19:10','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41699604349','Cleared','4','2023-11-10 11:19:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3566,'','Cash','','2023-11-10 12:51:54','','0','4','2023-11-10 12:51:54','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed','','','','0','41699609910','Cleared','4','2023-11-10 12:52:15','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3567,'','Cash','','2023-11-10 14:13:34','','0','4','2023-11-10 14:13:34','','560','560','1','retail','0','560','1','0','0','0','0','0','0','printed','','','','0','41699614809','Cleared','4','2023-11-10 15:00:11','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3568,'s809','Mpesa','','2023-11-10 16:12:56','','0','4','2023-11-10 16:12:56','','0','1200','1','retail','0','1200','1','0','0','0','0','1200','0','printed','','','','0','41699621972','Cleared','4','2023-11-10 17:49:42','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3569,'','Cash','','2023-11-10 16:32:34','','0','4','2023-11-10 16:32:34','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41699623153','Cleared','4','2023-11-10 21:57:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3570,'s809','Mpesa','','2023-11-10 16:32:45','','0','4','2023-11-10 16:32:45','','0','600','1','retail','0','600','1','0','0','0','0','600','0','printed','','','','0','41699623164','Cleared','4','2023-11-10 17:50:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3571,'vvz0','Mpesa','','2023-11-10 17:50:29','','0','4','2023-11-10 17:50:29','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41699627828','Cleared','4','2023-11-10 18:16:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3572,'B7EB','Mpesa','','2023-11-10 17:50:39','','0','4','2023-11-10 17:50:39','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41699627837','Cleared','4','2023-11-10 18:30:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3573,'','Cash','','2023-11-10 18:30:15','','0','4','2023-11-10 18:30:15','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41699630214','Cleared','4','2023-11-10 21:57:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3574,'zkuo','Mpesa','','2023-11-10 20:58:54','','0','4','2023-11-10 20:58:54','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41699639116','Cleared','4','2023-11-10 20:59:47','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3575,'','Cash','','2023-11-10 21:19:28','','0','4','2023-11-10 21:19:28','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41699640367','Cleared','4','2023-11-10 21:57:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3576,'','Voucher','','2023-11-10 21:19:38','','0','4','2023-11-10 21:19:38','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','mzae','','','0','41699640376','Cleared','4','2023-11-10 21:20:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3577,'','Voucher','','2023-11-10 21:20:26','','0','4','2023-11-10 21:20:26','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','purity','','','0','41699640425','Cleared','4','2023-11-10 21:21:23','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3578,'','Cash','','2023-11-10 21:22:20','','0','4','2023-11-10 21:22:20','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed','','','','0','41699640539','Cleared','4','2023-11-10 21:58:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3579,'','Cash','','2023-11-10 21:38:49','','0','4','2023-11-10 21:38:49','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed','','','','0','41699641526','Cleared','4','2023-11-10 21:45:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3580,'p8d6','Mpesa','','2023-11-11 12:17:12','','0','4','2023-11-11 12:17:12','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','41699694224','Cleared','4','2023-11-11 13:14:00','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3581,'p8d6','Mpesa','','2023-11-11 13:13:29','','0','4','2023-11-11 13:13:29','','0','600','1','retail','0','600','1','0','0','0','0','600','0','printed','','','','0','41699695684','Cleared','4','2023-11-11 13:14:21','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3582,'ob25','Mpesa','','2023-11-11 15:50:01','','0','4','2023-11-11 15:50:01','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41699707000','Cleared','4','2023-11-11 16:56:33','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3583,'OB25','Mpesa','','2023-11-11 16:55:33','','0','4','2023-11-11 16:55:33','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41699710932','Cleared','4','2023-11-11 16:57:02','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3584,'','Voucher','','2023-11-11 17:21:00','','0','4','2023-11-11 17:21:00','','0','400','1','retail','0','400','1','0','400','0','0','0','0','printed','ALBERT','','','0','41699712456','Cleared','4','2023-11-11 19:03:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3585,'PIU0','Mpesa','','2023-11-11 18:20:35','','0','4','2023-11-11 18:20:35','','0','430','1','retail','0','430','1','0','0','0','0','430','0','printed','','','','0','41699716027','Cleared','4','2023-11-11 18:25:32','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3586,'','Cash','','2023-11-11 18:20:46','','0','4','2023-11-11 18:20:46','','350','350','1','retail','0','350','1','0','0','0','0','0','0','new',' ','','','0','41699716044','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3587,'MA30','Mpesa','','2023-11-11 19:03:32','','0','4','2023-11-11 19:03:32','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41699718610','Cleared','4','2023-11-11 19:04:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3588,'wc1f','Mpesa','','2023-11-12 14:15:54','','0','4','2023-11-12 14:15:54','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41699787753','Cleared','4','2023-11-12 16:15:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3589,'','Voucher','','2023-11-12 19:11:03','','0','4','2023-11-12 19:11:03','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','manager','','','0','41699805462','Cleared','4','2023-11-12 19:12:00','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3590,'','Voucher','','2023-11-12 19:40:35','','0','4','2023-11-12 19:40:35','','0','600','1','retail','0','600','1','0','600','0','0','0','0','printed','albert','','','0','41699807224','Cleared','4','2023-11-12 19:41:04','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3591,'spve','Mpesa','','2023-11-12 20:53:52','','0','4','2023-11-12 20:53:52','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41699811631','Cleared','4','2023-11-12 20:54:37','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3592,'r8tk','Mpesa','','2023-11-13 11:58:31','','0','4','2023-11-13 11:58:31','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','8','','','0','41699865909','Cleared','4','2023-11-13 12:18:00','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3593,'','Cash','','2023-11-13 15:01:32','','0','4','2023-11-13 15:01:32','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed','','','','0','41699876890','Cleared','4','2023-11-13 18:50:34','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3594,'FQZN','Cash','','2023-11-13 18:50:07','','0','4','2023-11-13 18:50:07','','650','950','1','retail','0','950','1','0','0','0','0','300','0','printed','','','','0','41699890588','Cleared','4','2023-11-13 20:12:02','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3595,'','Cash','','2023-11-13 20:50:47','','0','4','2023-11-13 20:50:47','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','41699897846','Cleared','4','2023-11-13 21:04:00','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3596,'','Delivery','','2023-11-14 10:14:43','','0','4','2023-11-14 10:14:43','','0','700','1','retail','0','700','1','0','0','700','0','0','0','printed','glovo','','','0','41699946066','Cleared','4','2023-11-14 10:15:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3597,'TR1L','Mpesa','','2023-11-14 13:42:37','','0','4','2023-11-14 13:42:37','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','t','','','0','41699958556','Cleared','4','2023-11-14 15:46:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3598,'khqg','Mpesa','','2023-11-14 15:28:45','','0','4','2023-11-14 15:28:45','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','41699964921','Cleared','4','2023-11-14 15:31:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3599,'','Voucher','','2023-11-14 17:16:33','','0','4','2023-11-14 17:16:33','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','PURITY','','','0','41699971392','Cleared','4','2023-11-14 17:17:02','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3600,'','Voucher','','2023-11-14 18:45:04','','0','4','2023-11-14 18:45:04','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','MZAE','','','0','41699976699','Cleared','4','2023-11-14 19:07:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3601,'3ay2','Mpesa','','2023-11-14 19:36:09','','0','4','2023-11-14 19:36:09','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','41699979768','Cleared','4','2023-11-14 19:56:27','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3602,'ukip','Mpesa','','2023-11-14 19:56:59','','0','4','2023-11-14 19:56:59','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41699981018','Cleared','4','2023-11-14 20:02:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3603,'','Voucher','','2023-11-14 20:11:14','','0','4','2023-11-14 20:11:14','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','manager','','','0','41699981873','Cleared','4','2023-11-14 20:13:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3604,'','Cash','','2023-11-14 20:37:20','','0','4','2023-11-14 20:37:20','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','41699983439','Cleared','4','2023-11-14 21:13:56','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3605,'','Voucher','','2023-11-15 10:17:26','','0','4','2023-11-15 10:17:26','','0','350','1','retail','0','350','1','0','350','0','0','0','0','printed','PURITY','','','0','41700032645','Cleared','4','2023-11-15 21:03:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3606,'','Delivery','','2023-11-15 10:52:03','','0','4','2023-11-15 10:52:03','','0','600','1','retail','0','600','1','0','0','600','0','0','0','printed','ubereats','','','0','41700034722','Cleared','4','2023-11-15 10:52:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3607,'O7O1','Mpesa','','2023-11-15 12:36:34','','0','4','2023-11-15 12:36:34','','0','560','1','retail','0','560','1','0','0','0','0','560','0','printed','','','','0','41700040992','Cleared','4','2023-11-15 12:37:35','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3608,'','Voucher','','2023-11-15 14:56:35','','0','4','2023-11-15 14:56:35','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','MZAE','','','0','41700049394','Cleared','4','2023-11-15 14:57:02','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3609,'BTUF','Mpesa','','2023-11-15 16:53:31','','0','4','2023-11-15 16:53:31','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41700056410','Cleared','4','2023-11-15 17:02:43','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3610,'ARSP','Mpesa','','2023-11-15 17:57:57','','0','4','2023-11-15 17:57:57','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41700060275','Cleared','4','2023-11-15 18:00:34','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3611,'6AY3','Mpesa','','2023-11-15 19:18:25','','0','4','2023-11-15 19:18:25','','0','500','1','retail','0','500','1','0','0','0','0','500','0','printed','','','','0','41700065101','Cleared','4','2023-11-15 19:53:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3612,'U1E6','Mpesa','','2023-11-15 20:36:11','','0','4','2023-11-15 20:36:11','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41700069769','Cleared','4','2023-11-15 20:58:21','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3613,'','Voucher','','2023-11-15 21:03:43','','0','4','2023-11-15 21:03:43','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','ALBERT','','','0','41700071422','Cleared','4','2023-11-15 21:04:24','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3614,'','Voucher','','2023-11-15 21:03:56','','0','4','2023-11-15 21:03:56','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','MAN AGER','','','0','41700071435','Cleared','4','2023-11-15 21:04:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3615,'','Cash','','2023-11-16 19:18:14','','0','4','2023-11-16 19:18:14','','200','200','1','retail','0','200','1','0','0','0','0','0','0','new',' ','','','0','41700151493','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3616,'XT1J','Mpesa','','2023-11-16 20:33:51','','0','4','2023-11-16 20:33:51','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41700156030','Cleared','4','2023-11-16 21:46:48','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3617,'','Voucher','','2023-11-16 20:43:30','','0','4','2023-11-16 20:43:30','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','PURITY','','','0','41700156609','Cleared','4','2023-11-16 21:47:08','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3618,'','Voucher','','2023-11-16 21:46:04','','0','4','2023-11-16 21:46:04','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','ALBERT','','','0','41700160362','Cleared','4','2023-11-16 21:47:33','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3619,'MRN5','Mpesa','','2023-11-17 09:03:36','','0','4','2023-11-17 09:03:36','','0','560','1','retail','0','560','1','0','0','0','0','560','0','printed','','','','0','41700201011','Cleared','4','2023-11-17 09:14:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3620,'','Cash','','2023-11-17 12:31:51','','0','4','2023-11-17 12:31:51','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','41700213510','Cleared','4','2023-11-17 20:12:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3621,'AW1L','Mpesa','','2023-11-17 14:49:56','','0','4','2023-11-17 14:49:56','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41700221795','Cleared','4','2023-11-17 19:04:33','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3622,'AW1L','Mpesa','','2023-11-17 15:28:31','','0','4','2023-11-17 15:28:31','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41700224110','Cleared','4','2023-11-17 19:04:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3623,'AW1L','Mpesa','','2023-11-17 15:28:45','','0','4','2023-11-17 15:28:45','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41700224124','Cleared','4','2023-11-17 19:05:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3624,'AW1L','Mpesa','','2023-11-17 16:22:10','','0','4','2023-11-17 16:22:10','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41700227329','Cleared','4','2023-11-17 19:06:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3625,'AW1L','Mpesa','','2023-11-17 18:23:35','','0','4','2023-11-17 18:23:35','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41700234614','Cleared','4','2023-11-17 19:06:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3626,'','Voucher','','2023-11-17 20:18:33','','0','4','2023-11-17 20:18:33','','0','350','1','retail','0','350','1','0','350','0','0','0','0','printed','ALBERT','','','0','41700241512','Cleared','4','2023-11-17 20:29:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3627,'','Voucher','','2023-11-17 20:18:59','','0','4','2023-11-17 20:18:59','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','PURITY','','','0','41700241538','Cleared','4','2023-11-17 20:29:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3628,'7FQ8','Mpesa','','2023-11-17 20:28:16','','0','4','2023-11-17 20:28:16','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41700242095','Cleared','4','2023-11-17 20:30:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3629,'T5QU','Mpesa','','2023-11-17 21:23:35','','0','4','2023-11-17 21:23:35','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41700245414','Cleared','4','2023-11-17 21:24:17','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3630,'VG7P','Cash','','2023-11-18 17:03:44','','0','4','2023-11-18 17:03:44','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','41700316223','Cleared','4','2023-11-18 19:50:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3631,'62PM','Mpesa','','2023-11-18 18:31:34','','0','4','2023-11-18 18:31:34','','0','950','1','retail','0','950','1','0','0','0','0','950','0','printed','','','','0','41700319530','Cleared','4','2023-11-18 19:57:32','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3632,'62PM','Mpesa','','2023-11-18 18:33:35','','0','4','2023-11-18 18:33:35','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41700321613','Cleared','4','2023-11-18 19:54:11','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3633,'F82V','Cash','','2023-11-18 20:23:14','','0','4','2023-11-18 20:23:14','','3000','3000','1','retail','0','3000','1','0','0','0','0','0','0','printed','','','','0','41700321629','Cleared','4','2023-11-18 20:35:47','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3634,'6GXU','Mpesa','','2023-11-18 20:42:46','','0','4','2023-11-18 20:42:46','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41700329365','Cleared','4','2023-11-18 20:48:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3635,'','Cash','','2023-11-18 21:08:16','','0','4','2023-11-18 21:08:16','','350','350','1','retail','0','350','1','0','0','0','0','0','0','new',' ','','','0','41700329984','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3636,'','Cash','','2023-11-18 21:54:09','','0','4','2023-11-18 21:54:09','','400','400','1','retail','0','400','1','0','0','0','0','0','0','new',' ','','','0','41700331612','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3637,'CA0P','Cash','','2023-11-19 11:19:24','','0','4','2023-11-19 11:19:24','','280','280','1','retail','0','280','1','0','0','0','0','0','0','printed','CA0P','','','0','41700381963','Cleared','4','2023-11-19 13:35:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3638,'CA0P','Cash','','2023-11-19 11:19:49','','0','4','2023-11-19 11:19:49','','280','280','1','retail','0','280','1','0','0','0','0','0','0','printed','','','','0','41700381988','Cleared','4','2023-11-19 11:26:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3639,'CA0P','Cash','','2023-11-19 11:20:22','','0','4','2023-11-19 11:20:22','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed','','','','0','41700382021','Cleared','4','2023-11-19 11:24:24','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3640,'','Cash','','2023-11-19 13:34:48','','0','4','2023-11-19 13:34:48','','280','280','1','retail','0','280','1','0','0','0','0','0','0','new',' ','','','0','41700390087','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3641,'3X10','Mpesa','','2023-11-19 14:32:13','','0','4','2023-11-19 14:32:13','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41700393531','Cleared','4','2023-11-19 15:49:29','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3642,'','Cash','','2023-11-19 14:34:52','','0','4','2023-11-19 14:34:52','','200','200','1','retail','0','200','1','0','0','0','0','0','0','new',' ','','','0','41700393690','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3643,'','Cash','','2023-11-19 17:35:10','','0','4','2023-11-19 17:35:10','','560','560','1','retail','0','560','1','0','0','0','0','0','0','new',' ','','','0','41700404500','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3644,'1GVO','Mpesa','','2023-11-19 18:48:49','','0','4','2023-11-19 18:48:49','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41700408928','Cleared','4','2023-11-19 18:50:10','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3645,'UTC0','Mpesa','','2023-11-19 18:50:49','','0','4','2023-11-19 18:50:49','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41700409048','Cleared','4','2023-11-19 19:12:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3646,'UTC0','Mpesa','','2023-11-19 18:51:48','','0','4','2023-11-19 18:51:48','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41700409107','Cleared','4','2023-11-19 19:15:08','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3647,'','Voucher','','2023-11-20 13:57:48','','0','4','2023-11-20 13:57:48','','0','480','1','retail','0','480','1','0','480','0','0','0','0','printed','DAD','','','0','41700477861','Cleared','4','2023-11-20 13:58:36','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3648,'','Voucher','','2023-11-20 17:44:17','','0','4','2023-11-20 17:44:17','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','PURITY','','','0','41700491456','Cleared','4','2023-11-20 17:44:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3649,'4WD1','Mpesa','','2023-11-20 20:57:34','','0','4','2023-11-20 20:57:35','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41700503053','Cleared','4','2023-11-20 22:48:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3650,'4WD1','Mpesa','','2023-11-20 20:58:05','','0','4','2023-11-20 20:58:05','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41700503084','Cleared','4','2023-11-20 22:45:35','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3651,'4WD1','Mpesa','','2023-11-20 20:58:41','','0','4','2023-11-20 20:58:41','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41700503120','Cleared','4','2023-11-20 22:44:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3652,'','Cash','','2023-11-20 22:59:19','','0','4','2023-11-20 22:59:19','','200','200','1','retail','0','200','1','0','0','0','0','0','0','new',' ','','','0','41700510358','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3653,'','Cash','','2023-11-20 22:59:48','','0','4','2023-11-20 22:59:48','','300','300','1','retail','0','300','1','0','0','0','0','0','0','new',' ','','','0','41700510387','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3654,'','Cash','','2023-11-20 23:02:05','','0','4','2023-11-20 23:02:05','','200','200','1','retail','0','200','1','0','0','0','0','0','0','new',' ','','','0','41700510524','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3655,'L5PV','Mpesa','','2023-11-21 14:27:25','','0','4','2023-11-21 14:27:25','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','41700566040','Cleared','4','2023-11-21 14:29:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3656,'U646','Mpesa','','2023-11-21 15:28:16','','0','4','2023-11-21 15:28:16','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41700569694','Cleared','4','2023-11-21 15:29:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3657,'UB47','Mpesa','','2023-11-21 17:27:23','','0','4','2023-11-21 17:27:23','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41700576842','Cleared','4','2023-11-21 20:22:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3658,'UB47','Mpesa','','2023-11-21 19:31:35','','0','4','2023-11-21 19:31:35','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41700584294','Cleared','4','2023-11-21 20:21:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3659,'HC71','Mpesa','','2023-11-21 20:04:38','','0','4','2023-11-21 20:04:38','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41700586277','Cleared','4','2023-11-21 20:19:43','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3660,'R9K9','Mpesa','','2023-11-21 20:08:35','','0','4','2023-11-21 20:08:35','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41700586514','Cleared','4','2023-11-21 20:18:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3661,'R9K9','Mpesa','','2023-11-21 20:08:49','','0','4','2023-11-21 20:08:49','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41700586528','Cleared','4','2023-11-21 20:17:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3662,'R9K9','Mpesa','','2023-11-21 20:10:07','','0','4','2023-11-21 20:10:07','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41700586606','Cleared','4','2023-11-21 20:15:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3663,'HKW8','Mpesa','','2023-11-21 20:42:38','','0','4','2023-11-21 20:42:38','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41700588557','Cleared','4','2023-11-21 20:43:59','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3664,'AYEX','Mpesa','','2023-11-21 22:50:05','','0','4','2023-11-21 22:50:05','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41700596204','Cleared','4','2023-11-21 22:51:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3665,'','Delivery','','2023-11-22 09:41:11','','0','4','2023-11-22 09:41:11','','0','1000','1','retail','0','1000','1','0','0','1000','0','0','0','printed','ubereats','','','0','41700635261','Cleared','4','2023-11-22 09:41:38','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3666,'bsy6','Mpesa','','2023-11-22 17:14:40','','0','4','2023-11-22 17:14:40','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41700662479','Cleared','4','2023-11-22 17:15:10','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3667,'61T0','Mpesa','','2023-11-22 18:00:43','','0','4','2023-11-22 18:00:43','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41700665242','Cleared','4','2023-11-22 18:38:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3668,'','Voucher','','2023-11-22 19:35:55','','0','4','2023-11-22 19:35:55','','0','350','1','retail','0','350','1','0','350','0','0','0','0','printed','GEORGE','','','0','41700670943','Cleared','4','2023-11-22 19:36:36','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3669,'YFQV','Mpesa','','2023-11-22 19:36:05','','0','4','2023-11-22 19:36:05','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41700670964','Cleared','4','2023-11-22 20:51:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3670,'YFQV','Mpesa','','2023-11-22 20:50:51','','0','4','2023-11-22 20:50:51','','0','600','1','retail','0','600','1','0','0','0','0','600','0','printed','','','','0','41700675450','Cleared','4','2023-11-22 20:51:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3671,'hwa6','Mpesa','','2023-11-23 13:33:33','','0','4','2023-11-23 13:33:33','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41700735611','Cleared','4','2023-11-23 15:09:12','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3672,'HWA6','Mpesa','','2023-11-23 14:50:11','','0','4','2023-11-23 14:50:11','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41700740210','Cleared','4','2023-11-23 15:09:40','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3673,'M4WJ','Mpesa','','2023-11-23 15:08:31','','0','4','2023-11-23 15:08:31','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41700741310','Cleared','4','2023-11-23 15:10:12','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3674,'','Cash','','2023-11-23 17:02:50','','0','4','2023-11-23 17:02:50','','280','280','1','retail','0','280','1','0','0','0','0','0','0','printed','','','','0','41700748169','Cleared','4','2023-11-23 18:10:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3675,'HD6E','Mpesa','','2023-11-23 19:23:53','','0','4','2023-11-23 19:23:53','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41700756632','Cleared','4','2023-11-23 19:44:16','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3676,'86KQ','Mpesa','','2023-11-23 20:48:22','','0','4','2023-11-23 20:48:22','','0','600','1','retail','0','600','1','0','0','0','0','600','0','printed','','','','0','41700761690','Cleared','4','2023-11-23 20:51:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3677,'UPPK','Mpesa','','2023-11-24 13:51:10','','0','4','2023-11-24 13:51:10','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41700823069','Cleared','4','2023-11-24 17:19:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3678,'','Cash','','2023-11-24 16:33:44','','0','4','2023-11-24 16:33:44','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed','','','','0','41700832818','Cleared','4','2023-11-24 23:08:16','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3679,'','Cash','','2023-11-24 17:23:53','','0','4','2023-11-24 17:23:53','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41700835832','Cleared','4','2023-11-24 22:08:11','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3680,'','Cash','','2023-11-24 17:26:20','','0','4','2023-11-24 17:26:20','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41700835979','Cleared','4','2023-11-24 22:07:40','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3681,'39OG','Mpesa','','2023-11-24 18:20:05','','0','4','2023-11-24 18:20:05','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41700839204','Cleared','4','2023-11-24 18:22:42','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3682,'ZDUQ','Mpesa','','2023-11-24 18:41:09','','0','4','2023-11-24 18:41:09','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41700840468','Cleared','4','2023-11-24 19:02:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3683,'EOJC','Mpesa','','2023-11-24 19:43:28','','0','4','2023-11-24 19:43:28','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','EOJC','','','0','41700844207','Cleared','4','2023-11-24 19:47:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3684,'SK20','Mpesa','','2023-11-24 22:15:34','','0','4','2023-11-24 22:15:34','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41700853333','Cleared','4','2023-11-24 22:22:33','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3685,'','Voucher','','2023-11-25 13:05:47','','0','4','2023-11-25 13:05:47','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','purity','','','0','41700906746','Cleared','4','2023-11-25 13:06:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3686,'','Cash','','2023-11-25 20:41:59','','0','4','2023-11-25 20:41:59','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41700934118','Cleared','4','2023-11-25 20:42:35','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3687,'TICP','Mpesa','','2023-11-25 21:27:52','','0','4','2023-11-25 21:27:52','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','TICP','','','0','41700936871','Cleared','4','2023-11-25 21:29:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3688,'LTHQ','Mpesa','','2023-11-25 21:28:05','','0','4','2023-11-25 21:28:05','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41700936883','Cleared','4','2023-11-25 21:29:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3689,'UHS8','Mpesa','','2023-11-25 22:32:55','','0','4','2023-11-25 22:32:55','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41700940774','Cleared','4','2023-11-25 22:34:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3690,'','Cash','','2023-11-25 22:44:49','','0','4','2023-11-25 22:44:49','','200','200','1','retail','0','200','1','0','0','0','0','0','0','new',' ','','','0','41700941488','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3691,'','Cash','','2023-11-26 14:40:03','','0','4','2023-11-26 14:40:03','','280','280','1','retail','0','280','1','0','0','0','0','0','0','new',' ','','','0','41700998802','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3692,'','Cash','','2023-11-26 14:40:35','','0','4','2023-11-26 14:40:35','','200','200','1','retail','0','200','1','0','0','0','0','0','0','new',' ','','','0','41700998834','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3693,'4DVT','Mpesa','','2023-11-27 10:22:54','','0','4','2023-11-27 10:22:54','','0','100','1','retail','0','100','1','0','0','0','0','100','0','printed','','','','0','41701069773','Cleared','4','2023-11-27 10:23:49','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3694,'6WEG','Mpesa','','2023-11-27 13:56:22','','0','4','2023-11-27 13:56:22','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41701082581','Cleared','4','2023-11-27 14:43:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3695,'BM9Q','Mpesa','','2023-11-27 15:50:30','','0','4','2023-11-27 15:50:30','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41701089429','Cleared','4','2023-11-27 15:55:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3696,'BM9Q','Mpesa','','2023-11-27 15:51:32','','0','4','2023-11-27 15:51:32','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41701089486','Cleared','4','2023-11-27 15:55:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3697,'BM9Q','Mpesa','','2023-11-27 15:52:29','','0','4','2023-11-27 15:52:29','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41701089548','Cleared','4','2023-11-27 15:56:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3698,'','Voucher','','2023-11-27 15:53:47','','0','4','2023-11-27 15:53:47','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','ALBERT','','','0','41701089626','Cleared','4','2023-11-27 15:56:40','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3699,'LHBX','Cash','','2023-11-27 17:18:38','','0','4','2023-11-27 17:18:38','','280','280','1','retail','0','280','1','0','0','0','0','0','0','printed','LHBX','','','0','41701094717','Cleared','4','2023-11-27 17:20:49','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3700,'LHBX','Mpesa','','2023-11-27 17:18:53','','0','4','2023-11-27 17:18:53','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41701094732','Cleared','4','2023-11-27 17:20:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3701,'6CCP','Mpesa','','2023-11-27 19:53:11','','0','4','2023-11-27 19:53:11','','0','350','1','retail','0','350','1','0','0','0','0','350','','printed','','','','0','41701103990','Cleared','4','2023-11-27 20:46:36','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3702,'47JA','Mpesa','','2023-11-27 19:54:25','','0','4','2023-11-27 19:54:25','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41701104064','Cleared','4','2023-11-27 20:07:23','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3703,'6CCP','Mpesa','','2023-11-27 19:55:32','','0','4','2023-11-27 19:55:32','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','6CCP','','','0','41701104131','Cleared','4','2023-11-27 20:47:32','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3704,'','Cash','','2023-11-27 20:09:42','','0','4','2023-11-27 20:09:42','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed','','','','0','41701104981','Cleared','4','2023-11-27 20:10:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3705,'','Cash','','2023-11-27 20:10:03','','0','4','2023-11-27 20:10:03','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41701105002','Cleared','4','2023-11-27 20:12:32','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3706,'O17B','Mpesa','','2023-11-27 22:18:08','','0','4','2023-11-27 22:18:08','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41701112687','Cleared','4','2023-11-27 22:19:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3707,'3INE','Mpesa','','2023-11-28 09:56:47','','0','4','2023-11-28 09:56:47','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','41701154605','Cleared','4','2023-11-28 19:24:02','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3708,'3INE','Mpesa','','2023-11-28 11:48:27','','0','4','2023-11-28 11:48:27','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41701161306','Cleared','4','2023-11-28 19:23:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3709,'0B3P','Mpesa','','2023-11-28 19:45:29','','0','4','2023-11-28 19:45:29','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41701189928','Cleared','4','2023-11-28 21:35:08','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3710,'C57U','Mpesa','','2023-11-28 20:27:23','','0','4','2023-11-28 20:27:23','','0','280','1','retail','0','280','1','0','0','0','0','280','','printed','','','','0','41701192442','Cleared','4','2023-11-28 20:31:39','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3711,'0B3P','Cash','','2023-11-28 21:44:54','','0','4','2023-11-28 21:44:54','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed','','','','0','41701197093','Cleared','4','2023-11-28 21:48:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3712,'','Cash','','2023-11-29 13:56:42','','0','4','2023-11-29 13:56:42','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41701255401','Cleared','4','2023-11-29 15:47:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3713,'','Cash','','2023-11-29 15:11:47','','0','4','2023-11-29 15:11:47','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41701259906','Cleared','4','2023-11-29 15:47:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3714,'','Cash','','2023-11-29 16:12:37','','0','4','2023-11-29 16:12:37','','480','480','1','retail','0','480','1','0','0','0','0','0','0','printed','','','','0','41701263550','Cleared','4','2023-11-29 17:22:17','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3715,'','Cash','','2023-11-29 17:21:55','','0','4','2023-11-29 17:21:55','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41701267714','Cleared','4','2023-11-29 18:29:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3716,'','Voucher','','2023-11-29 18:17:55','','0','4','2023-11-29 18:17:55','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','mzae','','','0','41701271074','Cleared','4','2023-11-29 18:29:05','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3717,'','Cash','','2023-11-29 18:28:41','','0','4','2023-11-29 18:28:41','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','41701271720','Cleared','4','2023-11-29 20:49:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3718,'','Voucher','','2023-11-29 20:50:10','','0','4','2023-11-29 20:50:10','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','purity','','','0','41701280209','Cleared','4','2023-11-29 20:50:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3719,'','Voucher','','2023-11-30 13:34:29','','0','4','2023-11-30 13:34:29','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','fatuma','','','0','41701340468','Cleared','4','2023-11-30 13:37:21','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3720,'','Voucher','','2023-11-30 13:38:47','','0','4','2023-11-30 13:38:47','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','purity','','','0','41701340726','Cleared','4','2023-11-30 13:41:08','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3721,'','Cash','','2023-11-30 13:50:39','','0','4','2023-11-30 13:50:39','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41701341438','Cleared','4','2023-11-30 15:55:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3722,'','Cash','','2023-11-30 15:05:13','','0','4','2023-11-30 15:05:13','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed','','','','0','41701345912','Cleared','4','2023-11-30 15:56:15','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3723,'','Voucher','','2023-11-30 17:24:42','','0','4','2023-11-30 17:24:42','','0','350','1','retail','0','350','1','0','350','0','0','0','0','printed','manager','','','0','41701354280','Cleared','4','2023-11-30 17:25:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3724,'CSG2','Mpesa','','2023-11-30 18:22:00','','0','4','2023-11-30 18:22:00','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41701357718','Cleared','4','2023-11-30 19:32:21','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3725,'VU3T','Mpesa','','2023-11-30 19:14:20','','0','4','2023-11-30 19:14:20','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41701360859','Cleared','4','2023-11-30 20:44:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3726,'KZ1U','Mpesa','','2023-11-30 20:22:00','','0','4','2023-11-30 20:22:00','','0','600','1','retail','0','600','1','0','0','0','0','600','0','printed','','','','0','41701364902','Cleared','4','2023-11-30 20:47:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3727,'ODZD','Mpesa','','2023-11-30 20:34:42','','0','4','2023-11-30 20:34:42','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41701365680','Cleared','4','2023-11-30 21:18:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3728,'','Voucher','','2023-12-01 10:19:22','','0','4','2023-12-01 10:19:22','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','purity','','','0','41701415160','Cleared','4','2023-12-01 13:23:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3729,'EHRL','Mpesa','','2023-12-01 11:06:04','','0','4','2023-12-01 11:06:04','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','ehrk','','','0','41701417963','Cleared','4','2023-12-01 13:24:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3730,'','Voucher','','2023-12-01 12:01:49','','0','4','2023-12-01 12:01:49','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','DAD','','','0','41701421308','Cleared','4','2023-12-01 13:25:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3731,'H4WK','Mpesa','','2023-12-01 14:00:44','','0','4','2023-12-01 14:00:44','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41701428443','Cleared','4','2023-12-01 14:56:59','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3732,'','Cash','','2023-12-01 14:38:15','','0','4','2023-12-01 14:38:15','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41701430694','Cleared','4','2023-12-01 15:09:04','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3733,'WBF8','Mpesa','','2023-12-01 15:06:04','','0','4','2023-12-01 15:06:04','','0','600','1','retail','0','600','1','0','0','0','0','600','0','printed','','','','0','41701432363','Cleared','4','2023-12-01 15:08:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3734,'','Cash','','2023-12-01 16:35:25','','0','4','2023-12-01 16:35:25','','400','400','1','retail','0','400','1','0','0','0','0','0','0','new',' ','','','0','41701437723','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3735,'66HC','Mpesa','','2023-12-01 17:36:19','','0','4','2023-12-01 17:36:19','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','41701441375','Cleared','4','2023-12-01 18:33:42','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3736,'P3LR','Mpesa','','2023-12-01 18:31:13','','0','4','2023-12-01 18:31:14','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41701444672','Cleared','4','2023-12-01 18:34:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3737,'','Voucher','','2023-12-01 19:52:29','','0','4','2023-12-01 19:52:29','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','PURITY','','','0','41701449548','Cleared','4','2023-12-01 21:02:36','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3738,'ZIPE','Mpesa','','2023-12-01 20:14:32','','0','4','2023-12-01 20:14:32','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41701450871','Cleared','4','2023-12-01 21:02:05','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3739,'','Cash','','2023-12-02 10:02:32','','0','4','2023-12-02 10:02:32','','280','280','1','retail','0','280','1','0','0','0','0','0','0','printed','','','','0','41701500551','Cleared','4','2023-12-02 14:02:56','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3740,'','Cash','','2023-12-02 12:43:04','','0','4','2023-12-02 12:43:04','','280','280','1','retail','0','280','1','0','0','0','0','0','0','printed','','','','0','41701510183','Cleared','4','2023-12-02 14:01:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3741,'','Cash','','2023-12-02 12:49:40','','0','4','2023-12-02 12:49:40','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41701510579','Cleared','4','2023-12-02 14:02:24','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3742,'hya0','Mpesa','','2023-12-02 13:28:00','','0','4','2023-12-02 13:28:00','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','41701512878','Cleared','4','2023-12-02 14:00:00','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3743,'','Voucher','','2023-12-02 14:05:17','','0','4','2023-12-02 14:05:17','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','','','','0','41701515115','Cleared','4','2023-12-02 14:07:23','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3744,'','Voucher','','2023-12-02 14:08:47','','0','4','2023-12-02 14:08:47','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','','','','0','41701515326','Cleared','4','2023-12-02 14:09:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3745,'0cnt','Mpesa','','2023-12-02 14:26:13','','0','4','2023-12-02 14:26:13','','0','600','1','retail','0','600','1','0','0','0','0','600','0','printed','','','','0','41701516371','Cleared','4','2023-12-02 14:28:40','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3746,'','Cash','','2023-12-02 14:48:07','','0','4','2023-12-02 14:48:07','','280','280','1','retail','0','280','1','0','0','0','0','0','0','printed','','','','0','41701517686','Cleared','4','2023-12-02 14:59:16','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3747,'5uc7','Mpesa','','2023-12-02 17:40:17','','0','4','2023-12-02 17:40:17','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41701528016','Cleared','4','2023-12-02 18:16:57','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3748,'zhhh','Mpesa','','2023-12-02 17:46:29','','0','4','2023-12-02 17:46:29','','0','1100','1','retail','0','1100','1','0','0','0','0','1100','0','printed','','','','0','41701528313','Cleared','4','2023-12-02 18:24:05','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3749,'2tyv','Mpesa','','2023-12-02 18:02:17','','0','4','2023-12-02 18:02:17','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41701529336','Cleared','4','2023-12-02 18:57:10','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3750,'lv2r','Mpesa','','2023-12-02 18:58:14','','0','4','2023-12-02 18:58:14','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41701532693','Cleared','4','2023-12-02 18:59:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3751,'','Cash','','2023-12-02 20:04:31','','0','4','2023-12-02 20:04:31','','250','250','1','retail','0','250','1','0','0','0','0','0','0','new',' ','','','0','41701536670','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3752,'vqje','Mpesa','','2023-12-02 20:05:33','','0','4','2023-12-02 20:05:33','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','41701536732','Cleared','4','2023-12-02 21:37:08','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3753,'vqje','Mpesa','','2023-12-02 20:20:26','','0','4','2023-12-02 20:20:26','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41701537624','Cleared','4','2023-12-02 21:36:23','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3754,'8had','Mpesa','','2023-12-02 21:27:07','','0','4','2023-12-02 21:27:07','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41701541625','Cleared','4','2023-12-02 21:29:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3755,'','Voucher','','2023-12-03 10:36:51','','0','4','2023-12-03 10:36:51','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','','','','0','41701589010','Cleared','4','2023-12-03 10:39:57','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3756,'','Cash','','2023-12-03 12:50:25','','0','4','2023-12-03 12:50:25','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41701597024','Cleared','4','2023-12-03 14:30:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3757,'','Cash','','2023-12-03 12:51:55','','0','4','2023-12-03 12:51:55','','280','280','1','retail','0','280','1','0','0','0','0','0','0','printed','','','','0','41701597113','Cleared','4','2023-12-03 14:32:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3758,'le1f','Mpesa','','2023-12-03 16:44:56','','0','4','2023-12-03 16:44:56','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','41701611091','Cleared','4','2023-12-03 17:33:23','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3759,'3fys','Mpesa','','2023-12-03 19:00:41','','0','4','2023-12-03 19:00:41','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41701619240','Cleared','4','2023-12-03 19:55:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3760,'17q0','Mpesa','','2023-12-03 19:01:26','','0','4','2023-12-03 19:01:26','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41701619285','Cleared','4','2023-12-03 22:22:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3761,'','Voucher','','2023-12-03 19:56:17','','0','4','2023-12-03 19:56:17','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','','','','0','41701622576','Cleared','4','2023-12-03 19:57:11','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3762,'lxqe','Mpesa','','2023-12-03 20:03:45','','0','4','2023-12-03 20:03:45','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','lxqe','','','0','41701623023','Cleared','4','2023-12-03 20:08:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3763,'','Cash','','2023-12-03 21:50:19','','0','4','2023-12-03 21:50:19','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed','','','','0','41701629415','Cleared','4','2023-12-03 23:04:39','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3764,'','Cash','','2023-12-03 21:51:37','','0','4','2023-12-03 21:51:37','','400','400','1','retail','0','400','1','0','0','0','0','0','0','printed','','','','0','41701629493','Cleared','4','2023-12-03 23:05:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3765,'','Voucher','','2023-12-03 22:07:07','','0','4','2023-12-03 22:07:07','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','','','','0','41701630426','Cleared','4','2023-12-03 22:22:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3766,'bb0n','Cash','','2023-12-03 22:36:47','','0','4','2023-12-03 22:36:47','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41701632206','Cleared','4','2023-12-03 22:45:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3767,'oexi','Mpesa','','2023-12-04 12:03:06','','0','4','2023-12-04 12:03:06','','0','560','1','retail','0','560','1','0','0','0','0','560','0','printed','','','','0','41701680581','Cleared','4','2023-12-04 12:58:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3768,'il6k','Mpesa','','2023-12-04 12:47:48','','0','4','2023-12-04 12:47:48','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41701683267','Cleared','4','2023-12-04 12:59:35','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3769,'q3v3','Mpesa','','2023-12-04 12:49:30','','0','4','2023-12-04 12:49:30','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41701683369','Cleared','4','2023-12-04 18:08:33','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3770,'q3v3','Mpesa','','2023-12-04 16:01:40','','0','4','2023-12-04 16:01:40','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41701694899','Cleared','4','2023-12-04 18:08:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3771,'','Voucher','','2023-12-04 19:17:03','','0','4','2023-12-04 19:17:03','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','mzae','','','0','41701706622','Cleared','4','2023-12-04 20:22:04','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3772,'','Voucher','','2023-12-04 20:24:26','','0','4','2023-12-04 20:24:26','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','fatuma','','','0','41701710665','Cleared','4','2023-12-04 20:25:08','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3773,'','Voucher','','2023-12-04 20:24:44','','0','4','2023-12-04 20:24:44','','0','300','1','retail','0','300','1','0','300','0','0','0','0','printed','purity','','','0','41701710683','Cleared','4','2023-12-04 20:26:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3774,'q3v3','Mpesa','','2023-12-04 20:51:12','','0','4','2023-12-04 20:51:12','','0','430','1','retail','0','430','1','0','0','0','0','430','0','printed','','','','0','41701712259','Cleared','4','2023-12-04 20:52:16','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3775,'CDFI','Mpesa','','2023-12-04 21:20:21','','0','4','2023-12-04 21:20:21','','0','500','1','retail','0','500','1','0','0','0','0','500','0','printed','','','','0','41701714016','Cleared','4','2023-12-04 21:44:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3776,'','Voucher','','2023-12-05 10:56:21','','0','4','2023-12-05 10:56:21','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','fatuma','','','0','41701762980','Cleared','4','2023-12-05 17:51:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3777,'4PUD','Mpesa','','2023-12-05 11:29:45','','0','4','2023-12-05 11:29:45','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41701764984','Cleared','4','2023-12-05 19:17:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3778,'3lal','Mpesa','','2023-12-05 16:35:21','','0','4','2023-12-05 16:35:21','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41701783320','Cleared','4','2023-12-05 17:07:32','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3779,'3lal','Mpesa','','2023-12-05 16:36:23','','0','4','2023-12-05 16:36:23','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','3lal','','','0','41701783382','Cleared','4','2023-12-05 17:49:57','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3780,'','Voucher','','2023-12-05 16:52:54','','0','4','2023-12-05 16:52:54','','0','250','1','retail','0','250','1','0','250','0','0','0','0','printed','FATUMA','','','0','41701784373','Cleared','4','2023-12-05 17:52:02','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3781,'QO58','Mpesa','','2023-12-05 17:52:16','','0','4','2023-12-05 17:52:16','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41701787935','Cleared','4','2023-12-05 19:06:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3782,'','Voucher','','2023-12-05 17:52:31','','0','4','2023-12-05 17:52:31','','0','400','1','retail','0','400','1','0','400','0','0','0','0','printed','manager\\mzae','','','0','41701787946','Cleared','4','2023-12-05 20:35:00','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3783,'','Cash','','2023-12-05 19:13:12','','0','4','2023-12-05 19:13:12','','280','280','1','retail','0','280','1','0','0','0','0','0','0','printed','','','','0','41701792791','Cleared','4','2023-12-05 20:17:05','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3784,'vcb2','Mpesa','','2023-12-05 19:57:11','','0','4','2023-12-05 19:57:11','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41701795429','Cleared','4','2023-12-05 21:54:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3785,'','Voucher','','2023-12-05 20:12:45','','0','4','2023-12-05 20:12:45','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','purity','','','0','41701796364','Cleared','4','2023-12-05 20:17:44','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3786,'qz6e','Mpesa','','2023-12-06 13:59:08','','0','4','2023-12-06 13:59:08','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','41701860344','Cleared','4','2023-12-06 14:13:23','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3787,'','Voucher','','2023-12-06 17:22:27','','0','4','2023-12-06 17:22:27','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','mzae','','','0','41701872545','Cleared','4','2023-12-06 17:22:57','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3788,'Z6RJ','Mpesa','','2023-12-06 17:41:21','','0','4','2023-12-06 17:41:21','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41701873680','Cleared','4','2023-12-06 18:51:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3789,'','Cash','','2023-12-06 18:29:29','','0','4','2023-12-06 18:29:29','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed','','','','0','41701876568','Cleared','4','2023-12-06 19:25:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3790,'32sf','Mpesa','','2023-12-06 18:46:24','','0','4','2023-12-06 18:46:24','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41701877583','Cleared','4','2023-12-06 19:24:25','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3791,'zr7e','Mpesa','','2023-12-06 18:47:17','','0','4','2023-12-06 18:47:17','','0','650','1','retail','0','650','1','0','0','0','0','650','0','printed','','','','0','41701877609','Cleared','4','2023-12-06 19:24:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3792,'ikmt','Mpesa','','2023-12-06 21:04:02','','0','4','2023-12-06 21:04:02','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41701885841','Cleared','4','2023-12-06 21:10:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3793,'nhgi','Mpesa','','2023-12-07 10:44:30','','0','4','2023-12-07 10:44:30','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41701935069','Cleared','4','2023-12-07 10:46:47','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3794,'','Voucher','','2023-12-07 16:43:35','','0','4','2023-12-07 16:43:35','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','','','','0','41701956614','Cleared','4','2023-12-07 16:45:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3795,'amiw','Mpesa','','2023-12-07 16:45:42','','0','4','2023-12-07 16:45:42','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41701956741','Cleared','4','2023-12-07 17:36:29','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3796,'ibn8','Mpesa','','2023-12-07 17:49:51','','0','4','2023-12-07 17:49:51','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41701960590','Cleared','4','2023-12-07 17:59:29','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3797,'','Voucher','','2023-12-07 18:34:35','','0','4','2023-12-07 18:34:35','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','','','','0','41701963273','Cleared','4','2023-12-07 18:35:47','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3798,'tie7','Mpesa','','2023-12-08 16:23:17','','0','4','2023-12-08 16:23:17','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','41702041792','Cleared','4','2023-12-08 16:26:42','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00); INSERT INTO `sales` VALUES (3799,'6ea8','Mpesa','','2023-12-08 16:24:01','','0','4','2023-12-08 16:24:01','','0','530','1','retail','0','530','1','0','0','0','0','530','0','printed','','','','0','41702041831','Cleared','4','2023-12-08 16:27:34','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3800,'inmr','Mpesa','','2023-12-08 17:29:20','','0','4','2023-12-08 17:29:20','','0','600','1','retail','0','600','1','0','0','0','0','600','0','printed','','','','0','41702045752','Cleared','4','2023-12-08 19:00:23','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3801,'XBEE','Mpesa','','2023-12-08 19:29:19','','0','4','2023-12-08 19:29:19','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41702052958','Cleared','4','2023-12-08 19:48:27','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3802,'1W4I','Mpesa','','2023-12-08 19:57:29','','0','4','2023-12-08 19:57:29','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41702054648','Cleared','4','2023-12-08 21:33:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3803,'s0oz','Mpesa','','2023-12-09 09:54:21','','0','4','2023-12-09 09:54:21','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41702104859','Cleared','4','2023-12-09 18:08:07','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3804,'x7n8','Mpesa','','2023-12-09 10:34:20','','0','4','2023-12-09 10:34:20','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','41702107238','Cleared','4','2023-12-09 15:11:02','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3805,'eluo','Mpesa','','2023-12-09 10:51:22','','0','4','2023-12-09 10:51:22','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','41702108273','Cleared','4','2023-12-09 11:30:40','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3806,'x7n8','Cash','','2023-12-09 10:51:44','','0','4','2023-12-09 10:51:44','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41702108303','Cleared','4','2023-12-09 15:11:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3807,'','Voucher','','2023-12-09 12:21:45','','0','4','2023-12-09 12:21:45','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','','','','0','41702113704','Cleared','4','2023-12-09 12:23:30','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3808,'wph8','Mpesa','','2023-12-09 13:09:10','','0','4','2023-12-09 13:09:10','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41702116549','Cleared','4','2023-12-09 14:33:45','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3809,'wph8','Mpesa','','2023-12-09 13:46:42','','0','4','2023-12-09 13:46:42','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41702118801','Cleared','4','2023-12-09 14:32:36','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3810,'','Cash','','2023-12-09 16:54:35','','0','4','2023-12-09 16:54:35','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41702130074','Cleared','4','2023-12-09 16:56:27','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3811,'','Cash','','2023-12-09 20:53:03','','0','4','2023-12-09 20:53:04','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed','','','','0','41702144382','Cleared','4','2023-12-09 20:53:21','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3812,'','Cash','','2023-12-10 12:07:56','','0','4','2023-12-10 12:07:56','','200','200','1','retail','0','200','1','0','0','0','0','0','0','new',' ','','','0','41702199275','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3813,'vl71','Mpesa','','2023-12-10 14:21:39','','0','4','2023-12-10 14:21:39','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41702207298','Cleared','4','2023-12-10 14:28:17','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3814,'cha5','Mpesa','','2023-12-10 15:02:37','','0','4','2023-12-10 15:02:37','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41702209755','Cleared','4','2023-12-10 15:08:37','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3815,'qame','Mpesa','','2023-12-10 15:27:55','','0','4','2023-12-10 15:27:55','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41702211274','Cleared','4','2023-12-10 15:39:24','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3816,'','Cash','','2023-12-11 12:02:13','','0','4','2023-12-11 12:02:13','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed','','','','0','41702285332','Cleared','4','2023-12-11 14:30:43','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3817,'','Voucher','','2023-12-11 16:46:37','','0','4','2023-12-11 16:46:37','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','purity','','','0','41702302396','Cleared','4','2023-12-11 20:26:37','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3818,'uxlu','Mpesa','','2023-12-11 20:26:10','','0','4','2023-12-11 20:26:10','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41702315569','Cleared','4','2023-12-11 21:34:23','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3819,'','Delivery','','2023-12-12 12:27:21','','0','4','2023-12-12 12:27:21','','0','350','1','retail','0','350','1','0','0','350','0','0','0','printed','ubereats','','','0','41702373240','Cleared','4','2023-12-12 12:28:07','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3820,'3rgx','Mpesa','','2023-12-12 13:11:05','','0','4','2023-12-12 13:11:05','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41702375864','Cleared','4','2023-12-12 13:13:11','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3821,'','Voucher','','2023-12-12 14:07:51','','0','4','2023-12-12 14:07:51','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','purity','','','0','41702379270','Cleared','4','2023-12-12 15:43:39','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3822,'wp0g','Mpesa','','2023-12-12 15:43:04','','0','4','2023-12-12 15:43:04','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41702384982','Cleared','4','2023-12-12 16:06:56','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3823,'wp0g','Mpesa','','2023-12-12 15:45:40','','0','4','2023-12-12 15:45:40','','0','30','1','retail','0','30','1','0','0','0','0','30','0','printed','','','','0','41702385138','Cleared','4','2023-12-12 16:07:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3824,'i3ii','Mpesa','','2023-12-12 19:51:18','','0','4','2023-12-12 19:51:18','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41702399877','Cleared','4','2023-12-12 19:56:04','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3825,'y646','Mpesa','','2023-12-12 19:52:13','','0','4','2023-12-12 19:52:13','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41702399932','Cleared','4','2023-12-12 20:18:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3826,'mkpf','Mpesa','','2023-12-13 10:29:27','','0','4','2023-12-13 10:29:27','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41702452566','Cleared','4','2023-12-13 11:06:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3827,'mkpf','Mpesa','','2023-12-13 10:29:48','','0','4','2023-12-13 10:29:48','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41702452587','Cleared','4','2023-12-13 11:07:07','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3828,'','Voucher','','2023-12-13 20:21:57','','0','4','2023-12-13 20:21:57','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','','','','0','41702488116','Cleared','4','2023-12-13 21:21:24','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3829,'37o5','Mpesa','','2023-12-13 20:46:50','','0','4','2023-12-13 20:46:50','','0','600','1','retail','0','600','1','0','0','0','0','600','0','printed','','','','0','41702489608','Cleared','4','2023-12-13 21:20:16','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3830,'','Cash','','2023-12-14 16:27:36','','0','4','2023-12-14 16:27:36','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41702560455','Cleared','4','2023-12-14 16:54:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3831,'ke63','Mpesa','','2023-12-14 17:05:12','','0','4','2023-12-14 17:05:12','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41702562711','Cleared','4','2023-12-14 17:13:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3832,'pe51','Mpesa','','2023-12-14 17:14:08','','0','4','2023-12-14 17:14:08','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41702563247','Cleared','4','2023-12-14 17:15:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3833,'nzxd','Mpesa','','2023-12-14 18:14:45','','0','4','2023-12-14 18:14:45','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41702566884','Cleared','4','2023-12-14 19:13:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3834,'chbq','Mpesa','','2023-12-14 18:39:13','','0','4','2023-12-14 18:39:13','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41702568352','Cleared','4','2023-12-14 22:40:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3835,'','Cash','','2023-12-14 18:55:27','','0','4','2023-12-14 18:55:27','','500','500','1','retail','0','500','1','0','0','0','0','0','0','printed','','','','0','41702569322','Cleared','4','2023-12-14 19:11:17','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3836,'0jqi','Mpesa','','2023-12-14 19:26:23','','0','4','2023-12-14 19:26:23','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41702571182','Cleared','4','2023-12-14 19:42:36','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3837,'','Cash','','2023-12-14 20:29:28','','0','4','2023-12-14 20:29:28','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41702574967','Cleared','4','2023-12-14 20:34:49','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3838,'chbq','Mpesa','','2023-12-14 22:27:56','','0','4','2023-12-14 22:27:56','','0','600','1','retail','0','600','1','0','0','0','0','600','0','printed','','','','0','41702582063','Cleared','4','2023-12-14 22:39:57','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3839,'chbq','Mpesa','','2023-12-14 22:30:26','','0','4','2023-12-14 22:30:26','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41702582225','Cleared','4','2023-12-14 22:41:34','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3840,'XKIS','Mpesa','','2023-12-15 10:05:22','','0','4','2023-12-15 10:05:22','','0','450','1','retail','0','450','1','0','0','0','0','450','0','printed','','','','0','41702623917','Cleared','4','2023-12-15 12:30:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3841,'WV5W','Mpesa','','2023-12-15 14:43:59','','0','4','2023-12-15 14:43:59','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41702640638','Cleared','4','2023-12-15 14:46:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3842,'UVPQ','Mpesa','','2023-12-15 17:20:55','','0','4','2023-12-15 17:20:55','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41702650054','Cleared','4','2023-12-15 17:22:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3843,'PBAF','Mpesa','','2023-12-15 17:24:44','','0','4','2023-12-15 17:24:44','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41702650283','Cleared','4','2023-12-15 18:04:23','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3844,'YJJJ','Mpesa','','2023-12-15 18:01:30','','0','4','2023-12-15 18:01:30','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41702652489','Cleared','4','2023-12-15 18:05:21','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3845,'G6VE','Mpesa','','2023-12-15 18:05:56','','0','4','2023-12-15 18:05:56','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41702652755','Cleared','4','2023-12-15 18:07:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3846,'20X3','Mpesa','','2023-12-15 22:28:00','','0','4','2023-12-15 22:28:00','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41702668479','Cleared','4','2023-12-15 22:46:47','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3847,'XOMV','Mpesa','','2023-12-15 22:28:43','','0','4','2023-12-15 22:28:43','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41702668522','Cleared','4','2023-12-15 23:08:34','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3848,'tvmt','Mpesa','','2023-12-16 10:32:39','','0','4','2023-12-16 10:32:39','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41702711958','Cleared','4','2023-12-16 11:50:34','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3849,'7al4','Mpesa','','2023-12-16 11:49:49','','0','4','2023-12-16 11:49:49','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41702716588','Cleared','4','2023-12-16 11:51:15','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3850,'5m7o','Cash','','2023-12-16 19:06:35','','0','6','2023-12-16 19:06:35','','1440','1440','1','retail','0','1440','1','0','0','0','0','0','0','printed','','','','0','61702742740','Cleared','6','2023-12-16 19:31:49','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3851,'','Cash','','2023-12-16 19:27:00','','0','6','2023-12-16 19:27:00','','480','480','1','retail','0','480','1','0','0','0','0','0','0','printed','','','','0','61702743987','Cleared','6','2023-12-16 21:31:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3852,'','Voucher','','2023-12-16 20:17:03','','0','6','2023-12-16 20:17:03','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','','','','0','61702747022','Cleared','6','2023-12-16 21:30:56','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3853,'2qod','Cash','','2023-12-16 21:24:12','','0','6','2023-12-16 21:24:12','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','61702751051','Cleared','6','2023-12-16 22:21:13','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3854,'6TZZ','Mpesa','','2023-12-17 10:16:12','','0','4','2023-12-17 10:16:12','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41702797370','Cleared','4','2023-12-17 11:38:57','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3855,'4A5E','Mpesa','','2023-12-17 12:50:56','','0','4','2023-12-17 12:50:56','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41702806655','Cleared','4','2023-12-17 15:23:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3856,'JVUD','Mpesa','','2023-12-17 13:21:45','','0','4','2023-12-17 13:21:45','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41702808504','Cleared','4','2023-12-17 15:27:29','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3857,'','Cash','','2023-12-17 15:35:42','','0','4','2023-12-17 15:35:42','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41702816540','Cleared','4','2023-12-17 17:20:08','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3858,'JU5P','Mpesa','','2023-12-17 17:15:18','','0','4','2023-12-17 17:15:18','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41702822517','Cleared','4','2023-12-17 17:41:43','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3859,'F6PX','Mpesa','','2023-12-17 17:36:42','','0','4','2023-12-17 17:36:42','','0','700','1','retail','0','700','1','0','0','0','0','700','0','printed','','','','0','41702823798','Cleared','4','2023-12-17 18:12:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3860,'UHDK','Mpesa','','2023-12-17 18:13:21','','0','4','2023-12-17 18:13:21','','0','700','1','retail','0','700','1','0','0','0','0','700','0','printed','UHDK','','','0','41702825997','Cleared','4','2023-12-17 21:09:15','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3861,'KMK1','Mpesa','','2023-12-17 18:14:48','','0','4','2023-12-17 18:14:48','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','KMK1','','','0','41702826087','Cleared','4','2023-12-17 21:09:43','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3862,'s57j','Mpesa','','2023-12-18 11:35:21','','0','4','2023-12-18 11:35:21','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41702888520','Cleared','4','2023-12-18 11:35:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3863,'TX83','Mpesa','','2023-12-18 13:00:24','','0','4','2023-12-18 13:00:24','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41702893622','Cleared','4','2023-12-18 13:58:24','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3864,'U0JR','Mpesa','','2023-12-18 13:40:16','','0','4','2023-12-18 13:40:16','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41702896015','Cleared','4','2023-12-18 13:41:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3865,'fxx4','Mpesa','','2023-12-18 17:31:03','','0','4','2023-12-18 17:31:03','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41702909862','Cleared','4','2023-12-18 18:19:04','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3866,'HQT5','Mpesa','','2023-12-18 18:18:23','','0','4','2023-12-18 18:18:23','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41702912702','Cleared','4','2023-12-18 18:19:36','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3867,'3WQR','Mpesa','','2023-12-18 20:41:23','','0','4','2023-12-18 20:41:23','','0','30','1','retail','0','30','1','0','0','0','0','30','0','printed','','','','0','41702921282','Cleared','4','2023-12-18 20:42:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3868,'','Voucher','','2023-12-18 20:47:10','','0','4','2023-12-18 20:47:10','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','PURITY','','','0','41702921629','Cleared','4','2023-12-18 21:40:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3869,'','Voucher','','2023-12-18 20:49:27','','0','4','2023-12-18 20:49:27','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','FATUMA','','','0','41702921765','Cleared','4','2023-12-18 21:40:40','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3870,'7GDB','Mpesa','','2023-12-18 21:09:23','','0','4','2023-12-18 21:09:23','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41702922962','Cleared','4','2023-12-18 21:41:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3871,'7GDB','Mpesa','','2023-12-18 21:22:02','','0','4','2023-12-18 21:22:02','','0','530','1','retail','0','530','1','0','0','0','0','530','0','printed','','','','0','41702923715','Cleared','4','2023-12-18 21:41:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3872,'OPCG','Mpesa','','2023-12-18 21:42:03','','0','4','2023-12-18 21:42:03','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41702924922','Cleared','4','2023-12-18 21:42:36','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3873,'S4A8','Mpesa','','2023-12-18 21:57:21','','0','4','2023-12-18 21:57:21','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','41702925837','Cleared','4','2023-12-18 22:00:59','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3874,'U1F0','Mpesa','','2023-12-19 09:57:47','','0','4','2023-12-19 09:57:47','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41702969066','Cleared','4','2023-12-19 10:35:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3875,'','Delivery','','2023-12-19 10:34:49','','0','4','2023-12-19 10:34:49','','0','1200','1','retail','0','1200','1','0','0','1200','0','0','0','printed','UBEREATS','','','0','41702971252','Cleared','4','2023-12-19 10:36:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3876,'','Cash','','2023-12-19 16:17:21','','0','4','2023-12-19 16:17:21','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed','','','','0','41702991840','Cleared','4','2023-12-19 19:48:39','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3877,'ojz6','Mpesa','','2023-12-19 16:17:42','','0','4','2023-12-19 16:17:42','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41702991860','Cleared','4','2023-12-19 20:21:49','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3878,'h5bf','Mpesa','','2023-12-19 16:57:13','','0','4','2023-12-19 16:57:13','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','41702994232','Cleared','4','2023-12-19 16:58:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3879,'','Cash','','2023-12-19 17:00:51','','0','4','2023-12-19 17:00:51','','600','600','1','retail','0','600','1','0','0','0','0','0','0','printed','','','','0','41702994450','Cleared','4','2023-12-19 19:49:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3880,'dkeb','Mpesa','','2023-12-19 19:10:49','','0','4','2023-12-19 19:10:49','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41703002248','Cleared','4','2023-12-19 19:49:43','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3881,'1q9z','Mpesa','','2023-12-19 19:42:42','','0','4','2023-12-19 19:42:42','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41703004160','Cleared','4','2023-12-19 20:56:35','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3882,'','Voucher','','2023-12-19 19:43:03','','0','4','2023-12-19 19:43:03','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','','','','0','41703004182','Cleared','4','2023-12-19 20:22:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3883,'mba1','Mpesa','','2023-12-20 10:28:38','','0','4','2023-12-20 10:28:38','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41703057317','Cleared','4','2023-12-20 19:04:45','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3884,'','Delivery','','2023-12-20 11:12:11','','0','4','2023-12-20 11:12:11','','0','1000','1','retail','0','1000','1','0','0','1000','0','0','0','printed','','','','0','41703059911','Cleared','4','2023-12-20 11:15:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3885,'vs52','Mpesa','','2023-12-20 16:13:12','','0','4','2023-12-20 16:13:12','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41703077991','Cleared','4','2023-12-20 16:14:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3886,'f4lg','Mpesa','','2023-12-20 16:15:13','','0','4','2023-12-20 16:15:13','','0','1050','1','retail','0','1050','1','0','0','0','0','1050','0','printed','','','','0','41703078105','Cleared','4','2023-12-20 20:28:38','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3887,'e7lc','Mpesa','','2023-12-20 16:46:14','','0','4','2023-12-20 16:46:14','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41703079973','Cleared','4','2023-12-20 16:48:23','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3888,'f4lg','Mpesa','','2023-12-20 17:36:27','','0','4','2023-12-20 17:36:27','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41703082986','Cleared','4','2023-12-20 20:29:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3889,'','Cash','','2023-12-20 17:37:27','','0','4','2023-12-20 17:37:27','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed','','','','0','41703083046','Cleared','4','2023-12-20 17:50:04','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3890,'','Cash','','2023-12-20 17:46:31','','0','4','2023-12-20 17:46:31','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed','','','','0','41703083589','Cleared','4','2023-12-20 17:49:47','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3891,'y0fq','Mpesa','','2023-12-20 18:15:42','','0','4','2023-12-20 18:15:42','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41703085340','Cleared','4','2023-12-20 19:11:38','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3892,'f4lg','Mpesa','','2023-12-20 20:30:52','','0','4','2023-12-20 20:30:52','','0','550','1','retail','0','550','1','0','0','0','0','550','0','printed','','','','0','41703093436','Cleared','4','2023-12-20 20:32:02','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3893,'l3qq','Mpesa','','2023-12-21 12:47:19','','0','4','2023-12-21 12:47:19','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','41703152034','Cleared','4','2023-12-21 18:31:39','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3894,'XIO1','Mpesa','','2023-12-21 18:12:50','','0','4','2023-12-21 18:12:50','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41703171569','Cleared','4','2023-12-21 19:33:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3895,'ZYQ8','Mpesa','','2023-12-21 20:18:05','','0','4','2023-12-21 20:18:05','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41703179084','Cleared','4','2023-12-21 20:57:50','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3896,'','Voucher','','2023-12-21 20:47:34','','0','4','2023-12-21 20:47:34','','0','350','1','retail','0','350','1','0','350','0','0','0','0','printed','FATUMA','','','0','41703179372','Cleared','4','2023-12-21 20:58:23','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3897,'ZYQ8','Mpesa','','2023-12-21 20:57:09','','0','4','2023-12-21 20:57:09','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41703181428','Cleared','4','2023-12-21 20:58:55','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3898,'mapv','Mpesa','','2023-12-22 10:53:17','','0','4','2023-12-22 10:53:17','','0','560','1','retail','0','560','1','0','0','0','0','560','0','printed','','','','0','41703231587','Cleared','4','2023-12-22 11:05:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3899,'mapv','Mpesa','','2023-12-22 10:53:44','','0','4','2023-12-22 10:53:44','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed','','','','0','41703231623','Cleared','4','2023-12-22 11:06:27','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3900,'ws6z','Mpesa','','2023-12-22 11:07:30','','0','4','2023-12-22 11:07:30','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41703232449','Cleared','4','2023-12-22 11:08:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3901,'2oca','Mpesa','','2023-12-22 17:44:29','','0','4','2023-12-22 17:44:29','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41703256268','Cleared','4','2023-12-22 17:45:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3902,'','Cash','','2023-12-22 17:48:25','','0','4','2023-12-22 17:48:25','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41703256504','Cleared','4','2023-12-22 18:12:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3903,'6kmx','Mpesa','','2023-12-23 11:07:32','','0','4','2023-12-23 11:07:32','','0','500','1','retail','0','500','1','0','0','0','0','500','0','printed','','','','0','41703318843','Cleared','4','2023-12-23 11:34:52','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3904,'kkvm','Mpesa','','2023-12-23 11:07:51','','0','4','2023-12-23 11:07:51','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41703318870','Cleared','4','2023-12-23 11:36:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3905,'nyrh','Mpesa','','2023-12-23 11:31:19','','0','4','2023-12-23 11:31:19','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41703320278','Cleared','4','2023-12-23 17:54:40','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3906,'oedz','Mpesa','','2023-12-23 15:45:07','','0','4','2023-12-23 15:45:07','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','oedz','','','0','41703335506','Cleared','4','2023-12-23 21:50:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3907,'','Cash','','2023-12-23 16:49:59','','0','4','2023-12-23 16:49:59','','830','830','1','retail','0','830','1','0','0','0','0','0','0','printed','','','','0','41703339366','Cleared','4','2023-12-23 16:51:41','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3908,'f5l6','Mpesa','','2023-12-23 17:41:47','','0','4','2023-12-23 17:41:47','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','f5l6','','','0','41703342505','Cleared','4','2023-12-23 21:49:46','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3909,'NDXW','Mpesa','','2023-12-23 21:48:45','','0','4','2023-12-23 21:48:45','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41703357324','Cleared','4','2023-12-23 21:49:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3910,'LJMX','Mpesa','','2023-12-24 16:57:01','','0','4','2023-12-24 16:57:01','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41703426220','Cleared','4','2023-12-24 19:36:36','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3911,'Y1VX','Mpesa','','2023-12-24 16:57:25','','0','4','2023-12-24 16:57:25','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41703426238','Cleared','4','2023-12-24 16:57:58','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3912,'DEMO','Mpesa','','2023-12-24 19:14:46','','0','4','2023-12-24 19:14:46','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41703434481','Cleared','4','2023-12-24 19:15:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3913,'8RE5','Mpesa','','2023-12-24 19:37:02','','0','4','2023-12-24 19:37:02','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41703435821','Cleared','4','2023-12-24 19:47:26','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3914,'','Cash','','2023-12-25 12:20:37','','0','4','2023-12-25 12:20:37','','200','200','1','retail','0','200','1','0','0','0','0','0','0','new',' ','','','0','41703496035','No','','','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3915,'','Cash','','2023-12-26 18:28:44','','0','4','2023-12-26 18:28:44','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41703604523','Cleared','4','2023-12-26 18:29:42','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3916,'6agb','Mpesa','','2023-12-26 18:55:25','','0','4','2023-12-26 18:55:25','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41703606124','Cleared','4','2023-12-26 18:58:43','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3917,'','Delivery','','2023-12-26 18:56:23','','0','4','2023-12-26 18:56:23','','0','1500','1','retail','0','1500','1','0','0','1500','0','0','0','printed','ubereats','','','0','41703606154','Cleared','4','2023-12-26 18:58:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3918,'','Voucher','','2023-12-26 19:54:25','','0','4','2023-12-26 19:54:25','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','','','','0','41703609663','Cleared','4','2023-12-26 19:58:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3919,'','Voucher','','2023-12-26 19:54:54','','0','4','2023-12-26 19:54:54','4','0','350','1','retail','0','350','1','0','350','0','0','0','0','printed','','','','0','41703609693','Cleared','4','2023-12-26 19:57:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3920,'oj8k','Mpesa','','2023-12-26 21:18:05','','0','4','2023-12-26 21:18:06','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41703614684','Cleared','4','2023-12-26 21:25:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3921,'9c2h','Mpesa','','2023-12-27 11:43:10','','0','4','2023-12-27 11:43:10','','0','600','1','retail','0','600','1','0','0','0','0','600','0','printed','','','','0','41703666589','Cleared','4','2023-12-27 11:46:03','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3922,'aa9t','Mpesa','','2023-12-27 11:44:40','','0','4','2023-12-27 11:44:40','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','aa9t','','','0','41703666669','Cleared','4','2023-12-27 20:52:33','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3923,'','Voucher','','2023-12-27 11:49:51','','0','4','2023-12-27 11:49:51','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','','','','0','41703666990','Cleared','4','2023-12-27 12:42:04','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3924,'','Voucher','','2023-12-27 11:50:10','','0','4','2023-12-27 11:50:10','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','','','','0','41703667009','Cleared','4','2023-12-27 12:41:24','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3925,'','Voucher','','2023-12-27 14:56:14','','0','4','2023-12-27 14:56:14','','0','150','1','retail','0','150','1','0','150','0','0','0','0','printed','','','','0','41703678173','Cleared','4','2023-12-27 18:55:05','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3926,'3uzr','Mpesa','','2023-12-27 18:44:24','','0','4','2023-12-27 18:44:24','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41703691863','Cleared','4','2023-12-27 20:03:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3927,'j2ns','Mpesa','','2023-12-27 18:53:32','','0','4','2023-12-27 18:53:32','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed','','','','0','41703692406','Cleared','4','2023-12-27 19:25:31','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3928,'','Cash','','2023-12-27 19:11:54','','0','4','2023-12-27 19:11:54','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41703693512','Cleared','4','2023-12-27 19:33:32','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3929,'j2ns','Mpesa','','2023-12-27 19:23:42','','0','4','2023-12-27 19:23:42','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','j2ns','','','0','41703694221','Cleared','4','2023-12-27 19:26:33','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3930,'7px7','Mpesa','','2023-12-27 19:59:19','','0','4','2023-12-27 19:59:19','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41703696358','Cleared','4','2023-12-27 20:45:39','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3931,'mc9u','Mpesa','','2023-12-27 20:34:38','','0','4','2023-12-27 20:34:38','','0','500','1','retail','0','500','1','0','0','0','0','500','0','printed','','','','0','41703698470','Cleared','4','2023-12-27 20:40:04','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3932,'','Cash','','2023-12-27 21:29:43','','0','4','2023-12-27 21:29:43','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','41703701782','Cleared','4','2023-12-27 22:01:19','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3933,'rq3q','Mpesa','','2023-12-27 22:00:38','','0','4','2023-12-27 22:00:38','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41703703637','Cleared','4','2023-12-27 22:38:45','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3934,'QI4V','Mpesa','','2023-12-28 12:13:45','','0','4','2023-12-28 12:13:45','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41703754824','Cleared','4','2023-12-28 15:41:11','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3935,'yi5t','Mpesa','','2023-12-28 15:05:28','','0','4','2023-12-28 15:05:28','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','41703765127','Cleared','4','2023-12-28 15:06:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3936,'','Voucher','','2023-12-28 16:20:17','','0','4','2023-12-28 16:20:17','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','FATUMA','','','0','41703769615','Cleared','4','2023-12-28 16:58:12','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3937,'','Voucher','','2023-12-28 16:57:22','','0','4','2023-12-28 16:57:22','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','MZAE','','','0','41703771841','Cleared','4','2023-12-28 16:58:42','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3938,'','Cash','','2023-12-28 17:20:51','','0','4','2023-12-28 17:20:51','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41703773249','Cleared','4','2023-12-28 19:56:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3939,'','Delivery','','2023-12-29 10:05:26','','0','4','2023-12-29 10:05:26','','0','600','1','retail','0','600','1','0','0','600','0','0','0','printed','UBEREATS','','','0','41703833515','Cleared','4','2023-12-29 10:06:04','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3940,'HOOA','Mpesa','','2023-12-29 15:10:38','','0','4','2023-12-29 15:10:38','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41703851837','Cleared','4','2023-12-29 15:36:02','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3941,'','Cash','','2023-12-29 16:44:34','','0','4','2023-12-29 16:44:34','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','41703857473','Cleared','4','2023-12-29 17:10:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3942,'','Cash','','2023-12-30 10:52:21','','0','4','2023-12-30 10:52:21','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41703922740','Cleared','4','2023-12-30 10:53:01','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3943,'','Voucher','','2023-12-30 11:23:13','','0','4','2023-12-30 11:23:13','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','ge3orge','','','0','41703924592','Cleared','4','2023-12-30 11:23:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3944,'YXJV','Mpesa','','2023-12-30 14:29:12','','0','4','2023-12-30 14:29:12','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41703935751','Cleared','4','2023-12-30 14:59:16','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3945,'ISHV','Mpesa','','2023-12-30 16:15:08','','0','4','2023-12-30 16:15:08','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed','','','','0','41703942106','Cleared','4','2023-12-30 16:47:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3946,'PIGW','Mpesa','','2023-12-30 17:20:19','','0','4','2023-12-30 17:20:19','','0','600','1','retail','0','600','1','0','0','0','0','600','0','printed','','','','0','41703946018','Cleared','4','2023-12-30 17:21:10','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3947,'','Voucher','','2023-12-30 18:31:55','','0','4','2023-12-30 18:31:55','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','MZAE','','','0','41703950314','Cleared','4','2023-12-30 18:33:20','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3948,'','Voucher','','2023-12-30 18:57:08','','0','4','2023-12-30 18:57:08','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','','','','0','41703951827','Cleared','4','2023-12-30 20:37:33','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3949,'','Cash','','2023-12-30 20:05:18','','0','4','2023-12-30 20:05:18','','560','560','1','retail','0','560','1','0','0','0','0','0','0','printed','','','','0','41703955913','Cleared','4','2023-12-30 20:24:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3950,'','Voucher','','2023-12-31 10:35:25','','0','4','2023-12-31 10:35:25','','0','960','1','retail','0','960','1','0','960','0','0','0','0','printed','EVELYN','','','0','41704008109','Cleared','4','2023-12-31 10:36:02','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3951,'NEX5','Mpesa','','2023-12-31 11:25:10','','0','4','2023-12-31 11:25:10','','0','450','1','retail','0','450','1','0','0','0','0','450','0','printed','','','','0','41704011103','Cleared','4','2023-12-31 11:30:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3952,'','Cash','','2023-12-31 14:53:51','','0','4','2023-12-31 14:53:51','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','41704023630','Cleared','4','2023-12-31 14:54:14','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3953,'','Cash','','2023-12-31 15:06:06','','0','4','2023-12-31 15:06:06','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','41704024365','Cleared','4','2023-12-31 15:25:18','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3954,'','Cash','','2023-12-31 15:23:41','','0','4','2023-12-31 15:23:41','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed','','','','0','41704025420','Cleared','4','2023-12-31 15:25:36','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3955,'','Voucher','','2023-12-31 17:10:03','','0','4','2023-12-31 17:10:03','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','PURITY','','','0','41704031802','Cleared','4','2023-12-31 17:10:32','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3956,'','Cash','','2024-01-01 14:16:43','','0','4','2024-01-01 14:16:43','','700','700','1','retail','0','700','1','0','0','0','0','0','0','printed','','','','0','41704107801','Cleared','4','2024-01-01 15:19:56','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3957,'9gvu','Mpesa','','2024-01-01 15:33:08','','0','4','2024-01-01 15:33:08','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41704112387','Cleared','4','2024-01-01 20:11:15','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3958,'','Cash','','2024-01-01 16:20:46','','0','4','2024-01-01 16:20:46','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','41704115245','Cleared','4','2024-01-01 16:57:57','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3959,'','Cash','','2024-01-01 16:59:42','','0','4','2024-01-01 16:59:42','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed','','','','0','41704117581','Cleared','4','2024-01-01 20:21:53','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3960,'','Cash','','2024-01-01 19:43:34','','0','4','2024-01-01 19:43:34','','280','280','1','retail','0','280','1','0','0','0','0','0','0','printed','','','','0','41704127413','Cleared','4','2024-01-01 20:22:04','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3961,'9gvu','Mpesa','','2024-01-01 19:43:48','','0','4','2024-01-01 19:43:48','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41704127427','Cleared','4','2024-01-01 20:11:38','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3962,'chup','Mpesa','','2024-01-01 19:43:56','','0','4','2024-01-01 19:43:56','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','41704127435','Cleared','4','2024-01-01 20:12:12','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3963,'jvg5','Mpesa','','2024-01-01 20:45:55','','0','4','2024-01-01 20:45:55','','0','780','1','retail','0','780','1','0','0','0','0','780','0','printed','','','','0','41704131130','Cleared','4','2024-01-01 21:00:35','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3964,'55FE','Mpesa','','2024-01-02 11:07:07','','0','4','2024-01-02 11:07:07','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','41704182826','Cleared','4','2024-01-02 11:26:06','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3965,'55FE','Mpesa','','2024-01-02 11:07:24','','0','4','2024-01-02 11:07:24','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed','','','','0','41704182843','Cleared','4','2024-01-02 11:26:24','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3966,'OZL2','Mpesa','','2024-01-02 14:18:09','','0','4','2024-01-02 14:18:09','','0','700','1','retail','0','700','1','0','0','0','0','700','0','printed','','','','0','41704194284','Cleared','4','2024-01-02 20:39:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3967,'','Delivery','','2024-01-02 15:39:28','','0','4','2024-01-02 15:39:28','','0','300','1','retail','0','300','1','0','0','300','0','0','0','printed','UBEREATS','','','0','41704199167','Cleared','4','2024-01-02 20:40:51','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3968,'','Cash','','2024-01-02 18:55:33','','0','6','2024-01-02 18:55:33','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed','','','','0','61704210932','Cleared','6','2024-01-02 22:58:11','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3969,'','Cash','','2024-01-02 18:56:11','','0','6','2024-01-02 18:56:11','','750','750','1','retail','0','750','1','0','0','0','0','0','0','printed','','','','0','61704210963','Cleared','6','2024-01-02 22:58:28','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3970,'','Cash','','2024-01-02 19:11:03','','0','6','2024-01-02 19:11:03','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','61704211862','Cleared','6','2024-01-02 22:58:49','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3971,'0KK2','Mpesa','','2024-01-02 21:05:21','','0','6','2024-01-02 21:05:22','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed','','','','0','61704218720','Cleared','6','2024-01-02 22:42:04','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3972,'pwfv','Mpesa','','2024-01-03 14:26:50','','0','6','2024-01-03 14:26:50','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed','','','','0','61704281209','Cleared','6','2024-01-03 14:27:43','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3973,'ajiu ','Mpesa','','2024-01-03 17:26:53','','0','6','2024-01-03 17:26:53','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','ajiu ','','','0','61704292012','Cleared','6','2024-01-03 21:29:21','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3974,'','Cash','','2024-01-03 17:29:59','','0','6','2024-01-03 17:29:59','','100','100','1','retail','0','100','1','0','0','0','0','0','0','printed','','','','0','61704292198','Cleared','6','2024-01-03 18:03:05','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3975,'','Cash','','2024-01-03 18:44:11','','0','6','2024-01-03 18:44:11','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed','','','','0','61704296650','Cleared','6','2024-01-03 20:55:09','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3976,'twyq','Mpesa','','2024-01-03 19:34:35','','0','6','2024-01-03 19:34:35','','0','700','1','retail','0','700','1','0','0','0','0','700','0','printed','','','','0','61704299660','Cleared','6','2024-01-03 20:01:54','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3977,'1qqw','Mpesa','','2024-01-03 21:18:12','','0','6','2024-01-03 21:18:12','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed','','','','0','61704305891','Cleared','6','2024-01-03 21:19:22','','','','','','',0.00,0.00,0,'',NULL,'',NULL,NULL,0.00),(3978,'O9WR','Mpesa','','2024-01-04 11:33:28','','0','6','2024-01-04 11:33:28','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed',' ','','','0','61704357207','Cleared','6','2024-01-04 15:38:19','','','','','','',0.00,0.00,0,'',NULL,'','CASH',0.00,0.00),(3979,'O9WR','Mpesa','','2024-01-04 12:08:28','','0','6','2024-01-04 12:08:28','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed',' ','','','0','61704359307','Cleared','6','2024-01-04 15:37:22','','','','','','',0.00,0.00,0,'',NULL,'','CASH',0.00,0.00),(3980,'','Cash','','2024-01-04 15:38:42','','0','6','2024-01-04 15:38:42','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','','0','61704371921','Cleared','6','2024-01-04 15:44:39','','','','','','',0.00,0.00,0,'',NULL,'','MPESA',0.00,0.00),(3981,'','Cash','','2024-01-04 16:28:35','','0','4','2024-01-04 16:28:35','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','','0','41704374914','Cleared','4','2024-01-04 17:08:14','','','','','','',0.00,0.00,0,'',NULL,'','0000',0.00,0.00),(3982,'6QB1','Mpesa','','2024-01-04 17:05:58','','0','4','2024-01-04 17:05:58','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed',' ','','','0','41704377157','Cleared','4','2024-01-04 17:22:47','','','','','','',0.00,0.00,0,'',NULL,'','0000',0.00,0.00),(3983,'XFP5','Mpesa','','2024-01-04 17:49:50','','0','4','2024-01-04 17:49:50','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','','','0','41704379789','Cleared','4','2024-01-04 18:09:00','','','','','','',0.00,0.00,0,'',NULL,'','0000',0.00,0.00),(3984,'','Voucher','','2024-01-04 19:11:03','','0','4','2024-01-04 19:11:03','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed',' EVELYN','','','0','41704384662','Cleared','4','2024-01-04 19:13:34','','','','','','',0.00,0.00,0,'',NULL,'','0000',0.00,0.00),(3985,'','Voucher','','2024-01-04 19:11:33','','0','4','2024-01-04 19:11:33','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed',' GEORGE','','','0','41704384692','Cleared','4','2024-01-04 19:14:37','','','','','','',0.00,0.00,0,'',NULL,'','0000',0.00,0.00),(3986,'H1KQ','Mpesa','','2024-01-04 20:52:38','','0','6','2024-01-04 20:52:38','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed',' ','','','0','61704390756','Cleared','6','2024-01-04 21:09:02','','','','','','',0.00,0.00,0,'',NULL,'','0000',0.00,0.00),(3987,'','Voucher','','2024-01-05 11:21:31','','0','6','2024-01-05 11:21:31','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','gorge','','','0','61704442890','Cleared','6','2024-01-05 11:22:52','','','','','','',0.00,0.00,0,'',NULL,'','0000',0.00,0.00),(3988,'we23','Mpesa','','2024-01-05 13:57:05','','0','6','2024-01-05 13:57:05','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed',' ','','','0','61704452224','Cleared','6','2024-01-05 14:02:53','','','','','','',0.00,0.00,0,'',NULL,'','0000',0.00,0.00),(3989,'KXJ6','Mpesa','','2024-01-05 16:19:12','','0','4','2024-01-05 16:19:12','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','','','0','41704460750','Cleared','4','2024-01-05 17:03:48','','','','','','',0.00,0.00,0,'',NULL,'','0000',0.00,0.00),(3990,'G40E','Mpesa','','2024-01-05 18:18:05','','0','6','2024-01-05 18:18:05','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','','','0','61704467883','Cleared','4','2024-01-05 19:03:20','','','','','','',0.00,0.00,0,'',NULL,'','0000',0.00,0.00),(3991,'6emv','Mpesa','','2024-01-05 18:57:37','','0','6','2024-01-05 18:57:38','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','','','0','61704470256','Cleared','6','2024-01-05 20:08:54','','','','','','',0.00,0.00,0,'',NULL,'','0000',0.00,0.00),(3992,'','Cash','','2024-01-05 18:59:13','','0','6','2024-01-05 18:59:13','','350','350','1','retail','0','350','1','0','0','0','0','0','0','printed',' ','','','0','61704470352','Cleared','6','2024-01-05 20:09:33','','','','','','',0.00,0.00,0,'',NULL,'','0000',0.00,0.00),(3993,'','Cash','','2024-01-05 18:59:53','','0','4','2024-01-05 18:59:53','','380','380','1','retail','0','380','1','0','0','0','0','0','0','printed',' ','','','0','41704470389','Cleared','4','2024-01-05 20:17:34','','','','','','',0.00,0.00,0,'',NULL,'','0000',0.00,0.00),(3994,'L2FR','Mpesa','','2024-01-05 19:21:18','','0','4','2024-01-05 19:21:18','','0','400','1','retail','0','400','1','0','0','0','0','400','0','printed',' ','','','0','41704471672','Cleared','4','2024-01-05 22:03:51','','','','','','',0.00,0.00,0,'',NULL,'','0000',0.00,0.00),(3995,'','Voucher','','2024-01-05 20:10:41','','0','6','2024-01-05 20:10:41','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed','manager peter ','','','0','61704474640','Cleared','6','2024-01-05 20:12:55','','','','','','',0.00,0.00,0,'',NULL,'','00',0.00,0.00),(3996,'','Cash','','2024-01-05 20:34:59','','0','4','2024-01-05 20:34:59','','200','200','1','retail','0','200','1','0','0','0','0','0','0','printed',' ','','','0','41704476098','Cleared','4','2024-01-05 22:06:09','','','','','','',0.00,0.00,0,'',NULL,'','0000',0.00,0.00),(3997,'CMYO','Mpesa','','2024-01-05 21:26:43','','0','4','2024-01-05 21:26:43','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed',' ','','','0','41704479202','Cleared','4','2024-01-05 22:01:57','','','','','','',0.00,0.00,0,'',NULL,'','0000',0.00,0.00),(3998,'','Voucher','','2024-01-05 21:28:56','','0','4','2024-01-05 21:28:56','','0','280','1','retail','0','280','1','0','280','0','0','0','0','printed','ERIC','','','0','41704479335','Cleared','4','2024-01-05 21:34:35','','','','','','',0.00,0.00,0,'',NULL,'','0000',0.00,0.00),(3999,'','Voucher','','2024-01-05 22:04:04','','0','4','2024-01-05 22:04:04','','0','200','1','retail','0','200','1','0','200','0','0','0','0','printed',' MZAE','','','0','41704481377','Cleared','4','2024-01-05 22:05:23','','','','','','',0.00,0.00,0,'',NULL,'','0000',0.00,0.00),(4000,'ngxa','Mpesa','','2024-01-06 12:19:47','','0','6','2024-01-06 12:19:47','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed',' ','','','0','61704532785','Cleared','6','2024-01-06 12:57:36','','','','','','',0.00,0.00,0,'',NULL,'','0000',0.00,0.00),(4001,'TJL9','Mpesa','','2024-01-06 17:25:33','','0','4','2024-01-06 17:25:33','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed',' ','','','0','41704551132','Cleared','4','2024-01-06 17:58:55','','','','','','',0.00,0.00,0,'',NULL,'','0000',0.00,0.00),(4002,'TLJ9','Mpesa','','2024-01-06 17:25:55','','0','4','2024-01-06 17:25:55','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed',' ','','','0','41704551154','Cleared','4','2024-01-06 18:29:50','','','','','','',0.00,0.00,0,'',NULL,'','0000',0.00,0.00),(4003,'UZE4','Mpesa','','2024-01-06 17:33:44','','0','4','2024-01-06 17:33:44','','0','150','1','retail','0','150','1','0','0','0','0','150','0','printed',' ','','','0','41704551623','Cleared','4','2024-01-06 17:34:23','','','','','','',0.00,0.00,0,'',NULL,'','0000',0.00,0.00),(4004,'MK7L','Mpesa','','2024-01-06 17:36:11','','0','6','2024-01-06 17:36:11','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed',' ','','','0','61704551769','Cleared','6','2024-01-06 18:47:16','','','','','','',0.00,0.00,0,'',NULL,'','0000',0.00,0.00),(4005,'8SUF','Mpesa','','2024-01-06 17:39:30','','0','6','2024-01-06 17:39:30','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','','','0','61704551969','Cleared','6','2024-01-06 17:40:30','','','','','','',0.00,0.00,0,'',NULL,'','0000',0.00,0.00),(4006,'','Cash','','2024-01-06 17:52:48','','0','6','2024-01-06 17:52:48','','600','600','1','retail','0','600','1','0','0','0','0','0','0','new',' ','','','0','61704552767','No','','','','','','','','',0.00,0.00,0,'',NULL,'','',0.00,0.00),(4007,'MK7L','Mpesa','','2024-01-06 17:53:30','','0','4','2024-01-06 17:53:30','','0','600','1','retail','0','600','1','0','0','0','0','600','0','printed',' ','','','0','41704552809','Cleared','4','2024-01-06 18:30:39','','','','','','',0.00,0.00,0,'',NULL,'','0000',0.00,0.00),(4008,'','Cash','','2024-01-07 10:51:10','','0','6','2024-01-06 18:42:49','','600','600','1','retail','0','600','1','0','0','0','0','0','0','new',' ','','','0','61704555768','No','6','2024-01-07 10:51:10','','','','','','',0.00,0.00,0,'',NULL,'','',0.00,0.00),(4009,'B95J','Mpesa','','2024-01-07 14:01:38','','0','4','2024-01-07 14:01:38','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','','','0','41704625297','Cleared','4','2024-01-07 16:13:25','','','','','','',0.00,0.00,0,'',NULL,'','0000',0.00,0.00),(4010,'KV5P','Mpesa','','2024-01-07 14:25:12','','0','4','2024-01-07 14:25:12','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed',' ','','','0','41704626711','Cleared','4','2024-01-07 14:26:03','','','','','','',0.00,0.00,0,'',NULL,'','0000',0.00,0.00),(4011,'','Mpesa','','2024-01-07 15:46:37','','0','6','2024-01-07 15:46:37','','0','300','1','retail','0','300','1','0','0','0','0','300','0','printed',' EXX3 ','','','0','61704631596','Cleared','6','2024-01-07 17:49:50','','','','','','',0.00,0.00,0,'',NULL,'','0000',0.00,0.00),(4012,'','Cash','','2024-01-07 16:01:48','','0','6','2024-01-07 16:01:48','','150','150','1','retail','0','150','1','0','0','0','0','0','0','printed',' ','','','0','61704632507','Cleared','6','2024-01-07 16:04:48','','','','','','',0.00,0.00,0,'',NULL,'','0000',0.00,0.00),(4013,'','','','2024-01-07 17:22:04','','0','6','2024-01-07 17:22:04','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' PETER MANAGER','','','0','61704637323','Cleared','6','2024-01-07 17:31:48','','','','','','',0.00,0.00,0,'',NULL,'','0000',0.00,0.00),(4014,'VMMG','Mpesa','','2024-01-07 18:00:18','','0','6','2024-01-07 18:00:18','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','','','0','61704639617','Cleared','6','2024-01-07 18:33:03','','','','','','',0.00,0.00,0,'',NULL,'','0000',0.00,0.00),(4015,'HPEG','Mpesa','','2024-01-07 18:35:27','','0','4','2024-01-07 18:35:27','','0','280','1','retail','0','280','1','0','0','0','0','280','0','printed',' ','','','0','41704641613','Cleared','4','2024-01-07 18:36:54','','','','','','',0.00,0.00,0,'',NULL,'','0000',0.00,0.00),(4016,'VMMG','Mpesa','','2024-01-07 18:37:15','','0','4','2024-01-07 18:37:15','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','','','0','41704641834','Cleared','4','2024-01-07 18:38:00','','','','','','',0.00,0.00,0,'',NULL,'','0000',0.00,0.00),(4017,'','','','2024-01-07 18:44:34','','0','4','2024-01-07 18:44:34','','800','800','1','retail','0','800','1','0','0','0','0','0','0','printed',' ','','','0','41704642000','Cleared','4','2024-01-07 18:48:09','','','','','','',0.00,0.00,0,'',NULL,'','0000',0.00,0.00),(4018,'','Cash','','2024-01-07 18:48:47','','0','4','2024-01-07 18:48:47','','280','280','1','retail','0','280','1','0','0','0','0','0','0','printed',' ','','','0','41704642526','Cleared','4','2024-01-07 18:49:20','','','','','','',0.00,0.00,0,'',NULL,'','0000',0.00,0.00),(4019,'','Cash','','2024-01-07 19:25:43','','0','6','2024-01-07 19:25:43','','300','300','1','retail','0','300','1','0','0','0','0','0','0','printed',' ','','','0','61704644733','Cleared','6','2024-01-07 19:26:19','','','','','','',0.00,0.00,0,'',NULL,'','0000',0.00,0.00),(4020,'','Cash','','2024-01-07 20:07:53','','0','4','2024-01-07 20:07:53','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','','0','41704647272','Cleared','4','2024-01-07 20:47:59','','','','','','',0.00,0.00,0,'',NULL,'','0000',0.00,0.00),(4021,'p3xe','Mpesa','','2024-01-08 10:56:27','','0','4','2024-01-08 10:56:27','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed',' ','','','0','41704700586','Cleared','4','2024-01-08 11:10:50','','','','','','',0.00,0.00,0,'',NULL,'','0000',0.00,0.00),(4022,'fxh2','Mpesa','','2024-01-10 16:15:10','','0','6','2024-01-10 16:15:10','','0','350','1','retail','0','350','1','0','0','0','0','350','0','printed',' ','','','0','61704892509','Cleared','6','2024-01-10 21:34:11','','','','','','',0.00,0.00,0,'',NULL,'','0000',0.00,0.00),(4023,'','','','2024-01-10 16:58:51','','0','6','2024-01-10 16:58:51','','250','250','1','retail','0','250','1','0','0','0','0','0','0','printed',' ','','','0','61704895130','Cleared','6','2024-01-10 19:58:05','','','','','','',0.00,0.00,0,'',NULL,'','0000',0.00,0.00),(4024,'','','','2024-01-10 16:59:19','','0','6','2024-01-10 16:59:19','','280','280','1','retail','0','280','1','0','0','0','0','0','0','printed',' ','','','0','61704895158','Cleared','6','2024-01-10 19:58:40','','','','','','',0.00,0.00,0,'',NULL,'','0000',0.00,0.00),(4025,'wwdq','Mpesa','','2024-01-10 17:51:17','','0','6','2024-01-10 17:51:17','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed',' ','','','0','61704898275','Cleared','6','2024-01-10 19:54:08','','','','','','',0.00,0.00,0,'',NULL,'','0000',0.00,0.00),(4026,'jw5s','Mpesa','','2024-01-10 18:45:00','','0','6','2024-01-10 18:45:00','','0','650','1','retail','0','650','1','0','0','0','0','650','0','printed',' ','','','0','61704901485','Cleared','6','2024-01-10 19:55:09','','','','','','',0.00,0.00,0,'',NULL,'','0000',0.00,0.00),(4027,'jw5s','Mpesa','','2024-01-10 19:09:30','','0','6','2024-01-10 19:09:30','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed',' ','','','0','61704902969','Cleared','6','2024-01-10 19:57:11','','','','','','',0.00,0.00,0,'',NULL,'','0000',0.00,0.00),(4028,'jw5s','Mpesa','','2024-01-10 19:18:24','','0','6','2024-01-10 19:18:24','','0','200','1','retail','0','200','1','0','0','0','0','200','0','printed',' ','','','0','61704903503','Cleared','6','2024-01-10 19:56:12','','','','','','',0.00,0.00,0,'',NULL,'','0000',0.00,0.00),(4029,'pk38','Mpesa','','2024-01-10 21:51:32','','0','6','2024-01-10 21:51:32','','0','250','1','retail','0','250','1','0','0','0','0','250','0','printed',' ','','','0','61704912691','Cleared','6','2024-01-10 21:58:53','','','','','','',0.00,0.00,0,'',NULL,'','0000',0.00,0.00); /*!40000 ALTER TABLE `sales` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_order` -- DROP TABLE IF EXISTS `sales_order`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `sales_order` ( `myinvoice` varchar(50) DEFAULT NULL, `id` int(11) NOT NULL AUTO_INCREMENT, `invoice` varchar(100) NOT NULL, `code` varchar(100) NOT NULL, `qty` varchar(10) NOT NULL, `amount` varchar(100) NOT NULL, `salestype` varchar(100) NOT NULL, `discount` varchar(100) NOT NULL, `dateposted` varchar(50) NOT NULL, `address` text NOT NULL, `description` text NOT NULL, `user` varchar(50) NOT NULL, `bprice` varchar(50) NOT NULL, `type` varchar(50) NOT NULL DEFAULT 'cash', `tax` decimal(10,2) NOT NULL, `sprice` varchar(100) NOT NULL, `balance` varchar(50) NOT NULL, `customer` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `mode` varchar(50) NOT NULL DEFAULT '16', `companyid` varchar(100) NOT NULL, `date` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), `maincategory` varchar(50) NOT NULL, `category` varchar(50) NOT NULL, `status` varchar(30) DEFAULT 'new', `branch` varchar(30) NOT NULL, `ordersales` varchar(20) NOT NULL DEFAULT 'new', `uom` varchar(30) NOT NULL, `sales` varchar(30) NOT NULL, `updatedat` varchar(50) NOT NULL, `updatedby` varchar(10) NOT NULL, `taxindicator` varchar(10) NOT NULL DEFAULT 'yes', `serial` varchar(50) DEFAULT NULL, `tax2` varchar(20) NOT NULL, `discountype` varchar(20) NOT NULL, `discountvalue` varchar(20) NOT NULL, `vattype` varchar(20) NOT NULL, `taxable` decimal(10,2) NOT NULL, `uomqty` varchar(30) NOT NULL DEFAULT '0', `stockbefore` varchar(30) NOT NULL, `stockafter` varchar(30) NOT NULL, `taxtype` varchar(30) NOT NULL DEFAULT 'Inclusive', `stock` varchar(20) NOT NULL DEFAULT 'branch', `producttype` varchar(30) NOT NULL, `assetaccount` varchar(30) NOT NULL, `salesaccount` varchar(30) NOT NULL, `expenseaccount` varchar(30) DEFAULT NULL, `start` varchar(20) NOT NULL, `close` varchar(20) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `myinvoice` (`myinvoice`) ) ENGINE=InnoDB AUTO_INCREMENT=5310 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sales_order` -- LOCK TABLES `sales_order` WRITE; /*!40000 ALTER TABLE `sales_order` DISABLE KEYS */; INSERT INTO `sales_order` VALUES ('316755986222503336',1,'31675598621','23','1.00','250','retail','0','2023-02-05 15:03:41','','','','0','Cash',0.00,'250','','','3','','1','2023-02-05 12:03:49','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-1.00','-2','Inclusive','branch','Inventory','','','','',''),('416755988112861352',2,'41675598810','3','1.00','200','retail','0','2023-02-05 15:06:50','','','','0','Cash',0.00,'200','','','4','','1','2023-02-05 12:41:59','','1','returned','1','new','pcs','','2023-02-05 15:41:59','1','no','','0','','','EXEMPTED',0.00,'1','-5.00','-6','Inclusive','branch','Inventory','','','','',''),('416755988273022328',3,'41675598810','38','1.00','350','retail','0','2023-02-05 15:07:06','','','','0','Cash',0.00,'350','','','4','','1','2023-02-05 12:42:02','','7','returned','1','new','pcs','','2023-02-05 15:42:02','1','no','','0','','','EXEMPTED',0.00,'1','-5.00','-6','Inclusive','branch','Inventory','','','','',''),('416755988302863352',4,'41675598810','38','1.00','350','retail','0','2023-02-05 15:07:09','','','','0','Cash',0.00,'350','','','4','','1','2023-02-05 12:42:11','','7','returned','1','new','pcs','','2023-02-05 15:42:11','1','no','','0','','','EXEMPTED',0.00,'1','-6.00','-7','Inclusive','branch','Inventory','','','','',''),('416755988403022348',5,'41675598810','37','1.00','400','retail','0','2023-02-05 15:07:19','','','','0','Cash',0.00,'400','','','4','','1','2023-02-05 12:42:13','','6','returned','1','new','pcs','','2023-02-05 15:42:13','1','no','','0','','','EXEMPTED',0.00,'1','-2.00','-3','Inclusive','branch','Inventory','','','','',''),('416755988558725844',6,'41675598810','49','1.00','10','retail','0','2023-02-05 15:07:34','','','','0','Cash',0.00,'10','','','4','','1','2023-02-05 12:42:15','','11','returned','1','new','pcs','','2023-02-05 15:42:15','1','no','','0','','','EXEMPTED',0.00,'1','-4.00','-5','Inclusive','branch','None Inventory','1110','4000','5500','',''),('416755988593421300',7,'41675598810','49','1.00','10','retail','0','2023-02-05 15:07:38','','','','0','Cash',0.00,'10','','','4','','1','2023-02-05 12:42:17','','11','returned','1','new','pcs','','2023-02-05 15:42:17','1','no','','0','','','EXEMPTED',0.00,'1','-5.00','-6','Inclusive','branch','None Inventory','1110','4000','5500','',''),('416755991360202035',8,'41675599135','3','1.00','200','retail','0','2023-02-05 15:12:15','','','','0','Cash',0.00,'200','','','4','','1','2023-02-05 12:12:27','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-6.00','-7','Inclusive','branch','Inventory','','','','',''),('416755993280202035',9,'41675599327','38','1.00','350','retail','0','2023-02-05 15:15:27','','','','0','Cash',0.00,'350','','','4','','1','2023-02-05 12:16:22','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-7.00','-8','Inclusive','branch','Inventory','','','','',''),('416755993339725944',10,'41675599327','38','1.00','350','retail','0','2023-02-05 15:15:32','','','','0','Cash',0.00,'350','','','4','','1','2023-02-05 12:16:22','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-8.00','-9','Inclusive','branch','Inventory','','','','',''),('416755993443022343',11,'41675599327','37','1.00','400','retail','0','2023-02-05 15:15:43','','','','0','Cash',0.00,'400','','','4','','1','2023-02-05 12:16:22','','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-3.00','-4','Inclusive','branch','Inventory','','','','',''),('416755993609725944',12,'41675599327','49','1.00','10','retail','0','2023-02-05 15:15:59','','','','0','Cash',0.00,'10','','','4','','1','2023-02-05 12:16:22','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-6.00','-7','Inclusive','branch','None Inventory','1110','4000','5500','',''),('416755993662966352',13,'41675599327','49','1.00','10','retail','0','2023-02-05 15:16:05','','','','0','Cash',0.00,'10','','','4','','1','2023-02-05 12:16:22','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-7.00','-8','Inclusive','branch','None Inventory','1110','4000','5500','',''),('416756000602036360',14,'41675600059','2','1.00','200','retail','0','2023-02-05 15:27:39','','','','0','Cash',0.00,'200','','','4','','1','2023-02-05 12:27:52','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','0.00','-1','Inclusive','branch','Inventory','','','','',''),('416756000667260732',15,'41675600059','2','1.00','200','retail','0','2023-02-05 15:27:45','','','','0','Cash',0.00,'200','','','4','','1','2023-02-05 12:27:52','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-1.00','-2','Inclusive','branch','Inventory','','','','',''),('416756002602222032',16,'41675600259','9','1.00','200','retail','0','2023-02-05 15:30:59','','','','0','Cash',0.00,'200','','','4','','1','2023-02-05 12:31:30','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','0.00','-1','Inclusive','branch','Inventory','','','','',''),('416756022424202432',17,'41675602242','34','1.00','300','retail','0','2023-02-05 16:04:02','','','','0','Cash',0.00,'300','','','4','','1','2023-02-05 13:04:16','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','0.00','-1','Inclusive','branch','Inventory','','','','',''),('316756031094202432',18,'31675603108','20','1.00','200','retail','0','2023-02-05 16:18:29','','','','0','Cash',0.00,'200','','','3','','1','2023-02-05 13:18:32','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','0.00','-1','Inclusive','branch','Inventory','','','','',''),('416756068363022338',19,'41675606835','38','1.00','350','retail','0','2023-02-05 17:20:35','','','','0','Cash',0.00,'350','','','4','','1','2023-02-05 14:20:55','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-7.00','-8','Inclusive','branch','Inventory','','','','',''),('316756088792867352',20,'31675608878','12','1.00','200','retail','0','2023-02-05 17:54:38','','','','0','Cash',0.00,'200','','','3','','1','2023-02-05 14:54:47','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','0.00','-1','Inclusive','branch','Inventory','','','','',''),('316756109450726034',21,'31675610944','1','1.00','250','retail','0','2023-02-05 18:29:04','','','','0','Cash',0.00,'250','','','3','','1','2023-02-05 15:29:50','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','0.00','-1','Inclusive','branch','Inventory','','','','',''),('316756109670726034',22,'31675610944','1','1.00','250','retail','0','2023-02-05 18:29:26','','','','0','Cash',0.00,'250','','','3','','1','2023-02-05 15:29:50','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-1.00','-2','Inclusive','branch','Inventory','','','','',''),('316756109727220732',23,'31675610944','1','1.00','250','retail','0','2023-02-05 18:29:31','','','','0','Cash',0.00,'250','','','3','','1','2023-02-05 15:29:50','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-2.00','-3','Inclusive','branch','Inventory','','','','',''),('316756109754212432',24,'31675610944','1','1.00','250','retail','0','2023-02-05 18:29:35','','','','0','Cash',0.00,'250','','','3','','1','2023-02-05 15:29:50','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-3.00','-4','Inclusive','branch','Inventory','','','','',''),('316756109792067352',25,'31675610944','1','1.00','250','retail','0','2023-02-05 18:29:38','','','','0','Cash',0.00,'250','','','3','','1','2023-02-05 15:29:50','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-4.00','-5','Inclusive','branch','Inventory','','','','',''),('316756642363421300',26,'31675664235','21','1.00','200','retail','0','2023-02-06 09:17:15','','','','0','Cash',27.59,'200','','','3','','1','2023-02-06 06:18:17','','2','new','1','new','pcs','','','','','','0','','','EXEMPTED',172.41,'','0.00','-1','Inclusive','branch','Inventory','','','','',''),('316756642882222032',27,'31675664235','21','1.00','200','retail','0','2023-02-06 09:18:07','','','','0','Cash',0.00,'200','','','3','','1','2023-02-06 06:18:17','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-1.00','-2','Inclusive','branch','Inventory','','','','',''),('316756671557250732',28,'31675667154','6','1.00','250','retail','0','2023-02-06 10:05:54','','','','0','Cash',0.00,'250','','','3','','1','2023-02-06 07:06:01','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','0.00','-1','Inclusive','branch','Inventory','','','','',''),('316756699604262432',29,'31675669959','20','1.00','200','retail','0','2023-02-06 10:52:39','','','','0','Cash',0.00,'200','','','3','','1','2023-02-06 07:52:47','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-1.00','-2','Inclusive','branch','Inventory','','','','',''),('316756710492164352',32,'31675671049','34','1.00','300','retail','0','2023-02-06 11:10:49','','','','0','Cash',0.00,'300','','','3','','1','2023-02-06 08:28:26','','5','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-1.00','-2','Inclusive','branch','Inventory','','','','',''),('316756710623022360',33,'31675671049','11','1.00','250','retail','0','2023-02-06 11:11:01','','','','0','Cash',0.00,'250','','','3','','1','2023-02-06 08:28:26','','1','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','0.00','-1','Inclusive','branch','Inventory','','','','',''),('316756720902222032',34,'31675671049','2','1.00','200','retail','0','2023-02-06 11:28:09','','','','0','Cash',0.00,'200','','','3','','1','2023-02-06 08:28:26','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-2.00','-3','Inclusive','branch','Inventory','','','','',''),('416756735723421300',35,'41675673571','12','1.00','200','retail','0','2023-02-06 11:52:51','','','','0','Cash',0.00,'200','','','4','','1','2023-02-06 08:52:56','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-1.00','-2','Inclusive','branch','Inventory','','','','',''),('316756737620202035',36,'31675673761','16','1.00','200','retail','0','2023-02-06 11:56:01','','','','0','Cash',0.00,'200','','','3','','1','2023-02-06 08:56:04','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','0.00','-1','Inclusive','branch','Inventory','','','','',''),('416756912227220732',37,'41675691222','16','1.00','200','retail','0','2023-02-06 16:47:02','','','','0','Cash',0.00,'200','','','4','','1','2023-02-06 13:47:07','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-1.00','-2','Inclusive','branch','Inventory','','','','',''),('416756920653421300',38,'41675692064','48','1.00','10','retail','0','2023-02-06 17:01:04','','','','0','Cash',0.00,'10','','','4','','1','2023-02-06 14:01:09','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','0.00','-1','Inclusive','branch','None Inventory','1110','4000','5500','',''),('416756971224292432',39,'41675697121','22','1.00','250','retail','0','2023-02-06 18:25:22','','','','0','Cash',0.00,'250','','','4','','1','2023-02-06 15:25:30','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','0.00','-1','Inclusive','branch','Inventory','','','','',''),('416757006667260732',40,'41675700665','38','1.00','350','retail','0','2023-02-06 19:24:25','','','','0','Cash',0.00,'350','','','4','','1','2023-02-06 16:24:50','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-8.00','-9','Inclusive','branch','Inventory','','','','',''),('416757006823421300',41,'41675700665','16','1.00','200','retail','0','2023-02-06 19:24:41','','','','0','Cash',0.00,'200','','','4','','1','2023-02-06 16:24:50','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-2.00','-3','Inclusive','branch','Inventory','','','','',''),('416757045713022375',42,'41675704570','16','1.00','200','retail','0','2023-02-06 20:29:30','','','','0','Cash',0.00,'200','','','4','','1','2023-02-06 17:30:15','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-3.00','-4','Inclusive','branch','Inventory','','','','',''),('416757045954202432',43,'41675704570','34','1.00','300','retail','0','2023-02-06 20:29:54','','','','0','Cash',0.00,'300','','','4','','1','2023-02-06 17:30:15','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-2.00','-3','Inclusive','branch','Inventory','','','','',''),('416757045992222032',44,'41675704570','35','1.00','350','retail','0','2023-02-06 20:29:58','','','','0','Cash',0.00,'350','','','4','','1','2023-02-06 17:30:15','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','0.00','-1','Inclusive','branch','Inventory','','','','',''),('416757046512465352',45,'41675704651','49','1.00','10','retail','0','2023-02-06 20:30:51','','','','0','Cash',0.00,'10','','','4','','1','2023-02-06 17:31:03','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-6.00','-7','Inclusive','branch','None Inventory','1110','4000','5500','',''),('416757046574727444',46,'41675704651','49','1.00','10','retail','0','2023-02-06 20:30:57','','','','0','Cash',0.00,'10','','','4','','1','2023-02-06 17:31:03','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-7.00','-8','Inclusive','branch','None Inventory','1110','4000','5500','',''),('416757048342463352',47,'41675704833','40','1.00','600','retail','0','2023-02-06 20:33:53','','','','0','Cash',0.00,'600','','','4','','1','2023-02-06 17:35:59','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-1.00','-2','Inclusive','branch','Inventory','','','','',''),('416757048634727444',48,'41675704833','40','1.00','600','retail','0','2023-02-06 20:34:22','','','','0','Cash',0.00,'600','','','4','','1','2023-02-06 17:35:59','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-2.00','-3','Inclusive','branch','Inventory','','','','',''),('416757048767260732',49,'41675704833','40','1.00','600','retail','0','2023-02-06 20:34:35','','','','0','Cash',0.00,'600','','','4','','1','2023-02-06 17:35:59','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-3.00','-4','Inclusive','branch','Inventory','','','','',''),('416757048812468352',50,'41675704833','40','1.00','600','retail','0','2023-02-06 20:34:40','','','','0','Cash',0.00,'600','','','4','','1','2023-02-06 17:35:59','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-4.00','-5','Inclusive','branch','Inventory','','','','',''),('416757048843421300',51,'41675704833','40','1.00','600','retail','0','2023-02-06 20:34:44','','','','0','Cash',0.00,'600','','','4','','1','2023-02-06 17:35:59','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-5.00','-6','Inclusive','branch','Inventory','','','','',''),('416757048882222032',52,'41675704833','40','1.00','600','retail','0','2023-02-06 20:34:47','','','','0','Cash',0.00,'600','','','4','','1','2023-02-06 17:35:59','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-6.00','-7','Inclusive','branch','Inventory','','','','',''),('416757048942222032',53,'41675704833','40','1.00','600','retail','0','2023-02-06 20:34:53','','','','0','Cash',0.00,'600','','','4','','1','2023-02-06 17:35:59','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-7.00','-8','Inclusive','branch','Inventory','','','','',''),('416757068726727644',54,'41675706871','30','1.00','330','retail','0','2023-02-06 21:07:51','','','','0','Cash',0.00,'330','','','4','','1','2023-02-06 18:07:58','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','0.00','-1','Inclusive','branch','Inventory','','','','',''),('416757558234252432',55,'41675755822','21','1.00','200','retail','0','2023-02-07 10:43:42','','','','0','Cash',0.00,'200','','','4','','1','2023-02-07 07:43:55','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-2.00','-3','Inclusive','branch','Inventory','','','','',''),('416757698133421300',56,'41675769812','33','1.00','300','retail','0','2023-02-07 14:36:52','','','','0','Cash',0.00,'300','','','4','','1','2023-02-07 11:36:57','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','0.00','-1','Inclusive','branch','Inventory','','','','',''),('416757710071727144',57,'41675771006','2','1.00','200','retail','0','2023-02-07 14:56:46','','','','0','Cash',0.00,'200','','','4','','1','2023-02-07 11:56:52','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-3.00','-4','Inclusive','branch','Inventory','','','','',''),('416757810161727144',58,'41675781016','31','1.00','200','retail','0','2023-02-07 17:43:36','','','','0','Cash',0.00,'200','','','4','','1','2023-02-07 14:43:41','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','0.00','-1','Inclusive','branch','Inventory','','','','',''),('416757810762167352',59,'41675781075','11','1.00','250','retail','0','2023-02-07 17:44:35','','','','0','Cash',0.00,'250','','','4','','1','2023-02-07 14:44:40','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-1.00','-2','Inclusive','branch','Inventory','','','','',''),('416757834753421300',60,'41675783474','12','1.00','200','retail','0','2023-02-07 18:24:34','','','','0','Cash',0.00,'200','','','4','','1','2023-02-07 15:24:41','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-2.00','-3','Inclusive','branch','Inventory','','','','',''),('416757863154282432',61,'41675786314','7','1.00','200','retail','0','2023-02-07 19:11:54','','','','0','Cash',0.00,'200','','','4','','1','2023-02-07 16:11:59','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-1.00','-2','Inclusive','branch','Inventory','','','','',''),('416757890192961352',62,'41675789018','22','1.00','250','retail','0','2023-02-07 19:56:58','','','','0','Cash',0.00,'250','','','4','','1','2023-02-07 16:57:12','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-1.00','-2','Inclusive','branch','Inventory','','','','',''),('416757907284292432',63,'41675790727','7','1.00','200','retail','0','2023-02-07 20:25:27','','','','0','Cash',0.00,'200','','','4','','1','2023-02-07 17:25:33','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-2.00','-3','Inclusive','branch','Inventory','','','','',''),('416757920613421300',64,'41675792060','7','1.00','200','retail','0','2023-02-07 20:47:40','','','','0','Cash',0.00,'200','','','4','','1','2023-02-07 17:47:58','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-3.00','-4','Inclusive','branch','Inventory','','','','',''),('416757930042030364',65,'41675793003','34','1.00','300','retail','0','2023-02-07 21:03:23','','','','0','Cash',0.00,'300','','','4','','1','2023-02-07 18:03:29','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-3.00','-4','Inclusive','branch','Inventory','','','','',''),('416757930654292432',66,'41675793064','49','1.00','10','retail','0','2023-02-07 21:04:24','','','','0','Cash',0.00,'10','','','4','','1','2023-02-07 18:04:38','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-8.00','-9','Inclusive','branch','None Inventory','1110','4000','5500','',''),('316758436480202035',67,'31675843646','12','1.00','200','retail','0','2023-02-08 11:07:26','','','','0','Cash',0.00,'200','','','3','','1','2023-02-08 08:07:43','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-3.00','-4','Inclusive','branch','Inventory','','','','',''),('316758436572222032',68,'31675843646','48','1.00','10','retail','0','2023-02-08 11:07:36','','','','0','Cash',0.00,'10','','','3','','1','2023-02-08 08:07:43','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-1.00','-2','Inclusive','branch','None Inventory','1110','4000','5500','',''),('316758463363421300',69,'31675846334','12','1.00','200','retail','0','2023-02-08 11:52:14','','','','0','Cash',0.00,'200','','','3','','1','2023-02-08 08:52:21','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-4.00','-5','Inclusive','branch','Inventory','','','','',''),('316758537080202035',70,'31675853706','2','1.00','200','retail','0','2023-02-08 13:55:06','','','','0','Cash',0.00,'200','','','3','','1','2023-02-08 10:56:22','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-4.00','-5','Inclusive','branch','Inventory','','','','',''),('316758537333728334',71,'31675853706','48','1.00','10','retail','0','2023-02-08 13:55:31','','','','0','Cash',0.00,'10','','','3','','1','2023-02-08 10:56:22','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-2.00','-3','Inclusive','branch','None Inventory','1110','4000','5500','',''),('316758553353421300',72,'31675855333','8','1.00','150','retail','0','2023-02-08 14:22:13','','','','0','Cash',0.00,'150','','','3','','1','2023-02-08 11:22:20','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','0.00','-1','Inclusive','branch','Inventory','','','','',''),('316758610781728134',73,'31675861077','12','1.00','200','retail','0','2023-02-08 15:57:57','','','','0','Cash',0.00,'200','','','3','','1','2023-02-08 12:58:04','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-5.00','-6','Inclusive','branch','Inventory','','','','',''),('316758611682263223',74,'31675861166','4','1.00','150','retail','0','2023-02-08 15:59:26','','','','0','Cash',0.00,'150','','','3','','1','2023-02-08 12:59:33','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','0.00','-1','Inclusive','branch','Inventory','','','','',''),('316758620180202035',75,'31675862017','8','1.00','150','retail','0','2023-02-08 16:13:37','','','','0','Cash',0.00,'150','','','3','','1','2023-02-08 13:13:49','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-1.00','-2','Inclusive','branch','Inventory','','','','',''),('316758705690728034',79,'31675870568','12','1.00','200','retail','0','2023-02-08 18:36:08','','','','0','Cash',0.00,'200','','','3','','1','2023-02-08 15:36:12','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-6.00','-7','Inclusive','branch','Inventory','','','','',''),('316758678903421300',82,'31675867889','36','1.00','400','retail','0','2023-02-08 17:51:29','','','','0','Cash',0.00,'400','','','3','','1','2023-02-08 16:00:04','','6','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','0.00','-1','Inclusive','branch','Inventory','','','','',''),('316758705342063352',83,'31675867889','21','1.00','200','retail','0','2023-02-08 18:35:33','','','','0','Cash',0.00,'200','','','3','','1','2023-02-08 16:00:04','','2','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-3.00','-4','Inclusive','branch','Inventory','','','','',''),('316758706973421300',84,'31675870696','21','1.00','200','retail','0','2023-02-08 18:38:16','','','','0','Cash',0.00,'200','','','3','','1','2023-02-08 16:01:20','','2','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-4.00','-5','Inclusive','branch','Inventory','','','','',''),('316758707000202035',85,'31675870696','21','1.00','200','retail','0','2023-02-08 18:38:19','','','','0','Cash',0.00,'200','','','3','','1','2023-02-08 16:01:20','','2','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-5.00','-6','Inclusive','branch','Inventory','','','','',''),('316758738612366352',86,'31675873860','4','1.00','150','retail','0','2023-02-08 19:31:00','','','','0','Cash',0.00,'150','','','3','','1','2023-02-08 16:31:17','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-1.00','-2','Inclusive','branch','Inventory','','','','',''),('316758738703421300',87,'31675873860','4','1.00','150','retail','0','2023-02-08 19:31:09','','','','0','Cash',0.00,'150','','','3','','1','2023-02-08 16:31:17','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-2.00','-3','Inclusive','branch','Inventory','','','','',''),('316758738743728334',88,'31675873860','4','1.00','150','retail','0','2023-02-08 19:31:13','','','','0','Cash',0.00,'150','','','3','','1','2023-02-08 16:31:17','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-3.00','-4','Inclusive','branch','Inventory','','','','',''),('316758775252503336',99,'31675877524','11','1.00','250','retail','0','2023-02-08 20:32:04','','','','0','Cash',0.00,'250','','','3','','1','2023-02-08 18:03:01','','1','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-2.00','-3','Inclusive','branch','Inventory','','','','',''),('316758780893022380',100,'31675877524','11','1.00','250','retail','0','2023-02-08 20:41:28','','','','0','Cash',0.00,'250','','','3','','1','2023-02-08 18:03:01','','1','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-3.00','-4','Inclusive','branch','Inventory','','','','',''),('316758780990202035',101,'31675877524','26','1.00','100','retail','0','2023-02-08 20:41:38','','','','0','Cash',0.00,'100','','','3','','1','2023-02-08 18:03:01','','3','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','0.00','-1','Inclusive','branch','Inventory','','','','',''),('316758781032860352',102,'31675877524','24','1.00','100','retail','0','2023-02-08 20:41:42','','','','0','Cash',0.00,'100','','','3','','1','2023-02-08 18:03:01','','3','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','0.00','-1','Inclusive','branch','Inventory','','','','',''),('316758781694272432',103,'31675877524','48','1.00','10','retail','0','2023-02-08 20:42:48','','','','0','Cash',0.00,'10','','','3','','1','2023-02-08 18:03:01','','11','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-3.00','-4','Inclusive','branch','None Inventory','1110','4000','5500','',''),('316758781738728834',104,'31675877524','48','1.00','10','retail','0','2023-02-08 20:42:52','','','','0','Cash',0.00,'10','','','3','','1','2023-02-08 18:03:01','','11','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-4.00','-5','Inclusive','branch','None Inventory','1110','4000','5500','',''),('316758794062960352',105,'31675879405','1','1.00','250','retail','0','2023-02-08 21:03:25','','','','0','Cash',0.00,'250','','','3','','1','2023-02-08 18:03:42','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-5.00','-6','Inclusive','branch','Inventory','','','','',''),('316758794090202035',106,'31675879405','1','1.00','250','retail','0','2023-02-08 21:03:28','','','','0','Cash',0.00,'250','','','3','','1','2023-02-08 18:03:42','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-6.00','-7','Inclusive','branch','Inventory','','','','',''),('316758796222222032',107,'31675879621','20','1.00','200','retail','0','2023-02-08 21:07:01','','','','0','Cash',0.00,'200','','','3','','1','2023-02-08 18:08:08','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-2.00','-3','Inclusive','branch','Inventory','','','','',''),('316758796529728934',108,'31675879621','20','1.00','200','retail','0','2023-02-08 21:07:31','','','','0','Cash',0.00,'200','','','3','','1','2023-02-08 18:08:08','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-3.00','-4','Inclusive','branch','Inventory','','','','',''),('316758796602966352',109,'31675879621','20','1.00','200','retail','0','2023-02-08 21:07:32','','','','0','Cash',0.00,'200','','','3','','1','2023-02-08 18:08:08','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-4.00','-5','Inclusive','branch','Inventory','','','','',''),('316758796633421300',110,'31675879621','20','1.00','200','retail','0','2023-02-08 21:07:40','','','','0','Cash',0.00,'200','','','3','','1','2023-02-08 18:08:08','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-5.00','-6','Inclusive','branch','Inventory','','','','',''),('316758796673022366',111,'31675879621','20','1.00','200','retail','0','2023-02-08 21:07:43','','','','0','Cash',0.00,'200','','','3','','1','2023-02-08 18:08:08','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-6.00','-7','Inclusive','branch','Inventory','','','','',''),('316758796762222032',112,'31675879621','20','1.00','200','retail','0','2023-02-08 21:07:47','','','','0','Cash',0.00,'200','','','3','','1','2023-02-08 18:08:08','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-7.00','-8','Inclusive','branch','Inventory','','','','',''),('316758796817210732',113,'31675879621','20','1.00','200','retail','0','2023-02-08 21:07:57','','','','0','Cash',0.00,'200','','','3','','1','2023-02-08 18:08:08','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-8.00','-9','Inclusive','branch','Inventory','','','','',''),('316758801572222032',114,'31675880156','1','1.00','250','retail','0','2023-02-08 21:15:56','','','','0','Cash',0.00,'250','','','3','','1','2023-02-08 18:16:00','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-7.00','-8','Inclusive','branch','Inventory','','','','',''),('316759296660202035',115,'31675929665','16','1.00','200','retail','0','2023-02-09 11:01:05','','','','0','Cash',0.00,'200','','','3','','1','2023-02-09 08:01:10','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-4.00','-5','Inclusive','branch','Inventory','','','','',''),('316759368037230732',116,'31675936802','3','1.00','200','retail','0','2023-02-09 13:00:02','','','','0','Cash',0.00,'200','','','3','','1','2023-02-09 10:00:07','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-6.00','-7','Inclusive','branch','Inventory','','','','',''),('416759377643421300',117,'41675937752','8','1.00','150','retail','0','2023-02-09 13:16:03','','','','0','Cash',0.00,'150','','','4','','1','2023-02-09 10:16:11','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-2.00','-3','Inclusive','branch','Inventory','','','','',''),('316759392493022342',118,'31675939248','17','1.00','200','retail','0','2023-02-09 13:40:48','','','','0','Cash',0.00,'200','','','3','','1','2023-02-09 10:40:55','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','0.00','-1','Inclusive','branch','Inventory','','','','',''),('416759396799729944',119,'41675939678','4','1.00','150','retail','0','2023-02-09 13:47:58','','','','0','Cash',0.00,'150','','','4','','1','2023-02-09 10:48:14','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-4.00','-5','Inclusive','branch','Inventory','','','','',''),('416759396882968352',120,'41675939678','48','1.00','10','retail','0','2023-02-09 13:48:07','','','','0','Cash',0.00,'10','','','4','','1','2023-02-09 10:48:14','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-5.00','-6','Inclusive','branch','None Inventory','1110','4000','5500','',''),('416759472957729744',121,'41675947294','7','1.00','200','retail','0','2023-02-09 15:54:54','','','','0','Cash',0.00,'200','','','4','','1','2023-02-09 12:55:24','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-4.00','-5','Inclusive','branch','Inventory','','','','',''),('416759473192222032',122,'41675947294','48','1.00','10','retail','0','2023-02-09 15:55:18','','','','0','Cash',0.00,'10','','','4','','1','2023-02-09 12:55:24','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-6.00','-7','Inclusive','branch','None Inventory','1110','4000','5500','',''),('416759567606729644',123,'41675956759','21','1.00','200','retail','0','2023-02-09 18:32:39','','','','0','Cash',0.00,'200','','','4','','1','2023-02-09 15:32:45','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-6.00','-7','Inclusive','branch','Inventory','','','','',''),('416759576073022306',124,'41675957606','21','1.00','200','retail','0','2023-02-09 18:46:46','','','','0','Cash',0.00,'200','','','4','','1','2023-02-09 15:46:52','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-7.00','-8','Inclusive','branch','Inventory','','','','',''),('416759632294262432',125,'41675963228','11','1.00','250','retail','0','2023-02-09 20:20:28','','','','0','Cash',0.00,'250','','','4','','1','2023-02-09 17:20:33','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-4.00','-5','Inclusive','branch','Inventory','','','','',''),('416759653323022333',126,'41675965332','7','1.00','200','retail','0','2023-02-09 20:55:32','','','','0','Cash',0.00,'200','','','4','','1','2023-02-09 17:55:53','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-5.00','-6','Inclusive','branch','Inventory','','','','',''),('416759671467260732',127,'41675967146','7','1.00','200','retail','0','2023-02-09 21:25:46','','','','0','Cash',0.00,'200','','','4','','1','2023-02-09 18:25:59','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-6.00','-7','Inclusive','branch','Inventory','','','','',''),('416759671547729744',128,'41675967146','48','1.00','10','retail','0','2023-02-09 21:25:53','','','','0','Cash',0.00,'10','','','4','','1','2023-02-09 18:25:59','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-7.00','-8','Inclusive','branch','None Inventory','1110','4000','5500','',''),('316760193433022343',129,'31676019342','8','1.00','150','retail','0','2023-02-10 11:55:42','','','','0','Cash',0.00,'150','','','3','','1','2023-02-10 08:55:50','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-3.00','-4','Inclusive','branch','Inventory','','','','',''),('316760193472964362',130,'31676019342','8','1.00','150','retail','0','2023-02-10 11:55:47','','','','0','Cash',0.00,'150','','','3','','1','2023-02-10 08:55:50','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-4.00','-5','Inclusive','branch','Inventory','','','','',''),('416760205230720044',131,'41676020522','3','1.00','200','retail','0','2023-02-10 12:15:22','','','','0','Cash',0.00,'200','','','4','','1','2023-02-10 09:15:28','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-7.00','-8','Inclusive','branch','Inventory','','','','',''),('316760213734222432',132,'31676021372','12','1.00','200','retail','0','2023-02-10 12:29:32','','','','0','Cash',0.00,'200','','','3','','1','2023-02-10 09:29:49','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-7.00','-8','Inclusive','branch','Inventory','','','','',''),('316760213860202036',133,'31676021372','48','1.00','10','retail','0','2023-02-10 12:29:45','','','','0','Cash',0.00,'10','','','3','','1','2023-02-10 09:29:49','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-8.00','-9','Inclusive','branch','None Inventory','1110','4000','5500','',''),('416760285163022315',134,'41676028515','38','1.00','350','retail','0','2023-02-10 14:28:35','','','','0','Cash',0.00,'350','','','4','','1','2023-02-10 11:28:42','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-9.00','-10','Inclusive','branch','Inventory','','','','',''),('416760370473022340',135,'41676037046','33','1.00','300','retail','0','2023-02-10 16:50:46','','','','0','Cash',0.00,'300','','','4','','1','2023-02-10 13:50:52','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-1.00','-2','Inclusive','branch','Inventory','','','','',''),('316760468154242432',136,'31676046814','2','1.00','200','retail','0','2023-02-10 19:33:34','','','','0','Cash',0.00,'200','','','3','','1','2023-02-10 16:35:01','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-5.00','-6','Inclusive','branch','Inventory','','','','',''),('416760525093421300',137,'41676052508','7','1.00','200','retail','0','2023-02-10 21:08:28','','','','0','Cash',0.00,'200','','','4','','1','2023-02-10 18:08:38','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-7.00','-8','Inclusive','branch','Inventory','','','','',''),('316761090639721934',138,'31676109062','12','1.00','200','retail','0','2023-02-11 12:51:02','','','','0','Cash',0.00,'200','','','3','','1','2023-02-11 09:51:21','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-8.00','-9','Inclusive','branch','Inventory','','','','',''),('316761090777270732',139,'31676109062','48','1.00','10','retail','0','2023-02-11 12:51:16','','','','0','Cash',0.00,'10','','','3','','1','2023-02-11 09:51:21','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-9.00','-10','Inclusive','branch','None Inventory','1110','4000','5500','',''),('416761130810202036',140,'41676113080','3','1.00','200','retail','0','2023-02-11 13:58:00','','','','0','Cash',0.00,'200','','','4','','1','2023-02-11 10:58:04','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-8.00','-9','Inclusive','branch','Inventory','','','','',''),('316761259123022319',142,'31676125911','6','1.00','250','retail','0','2023-02-11 17:31:51','','','','0','Cash',0.00,'250','','','3','','1','2023-02-11 14:31:55','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-1.00','-2','Inclusive','branch','Inventory','','','','',''),('316761200850202036',143,'31676120084','8','1.00','150','retail','0','2023-02-11 15:54:44','','','','0','Cash',0.00,'150','','','3','','1','2023-02-11 15:10:16','','1','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-5.00','-6','Inclusive','branch','Inventory','','','','',''),('416761320273421300',144,'41676132026','21','1.00','200','retail','0','2023-02-11 19:13:46','','','','0','Cash',0.00,'200','','','4','','1','2023-02-11 16:14:03','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-8.00','-9','Inclusive','branch','Inventory','','','','',''),('416761320362222032',145,'41676132026','21','1.00','200','retail','0','2023-02-11 19:13:56','','','','0','Cash',0.00,'200','','','4','','1','2023-02-11 16:14:03','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-9.00','-10','Inclusive','branch','Inventory','','','','',''),('416761373362763362',146,'41676137335','20','1.00','200','retail','0','2023-02-11 20:42:15','','','','0','Cash',0.00,'200','','','4','','1','2023-02-11 17:42:25','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-9.00','-10','Inclusive','branch','Inventory','','','','',''),('416761373392763362',147,'41676137335','20','1.00','200','retail','0','2023-02-11 20:42:18','','','','0','Cash',0.00,'200','','','4','','1','2023-02-11 17:42:25','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-10.00','-11','Inclusive','branch','Inventory','','','','',''),('416761377257721744',148,'41676137724','22','1.00','250','retail','0','2023-02-11 20:48:44','','','','0','Cash',0.00,'250','','','4','','1','2023-02-11 17:49:09','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-2.00','-3','Inclusive','branch','Inventory','','','','',''),('316761381752222032',149,'31676138174','7','1.00','200','retail','0','2023-02-11 20:56:14','','','','0','Cash',0.00,'200','','','3','','1','2023-02-11 17:57:01','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-8.00','-9','Inclusive','branch','Inventory','','','','',''),('316761382053421300',150,'31676138174','21','1.00','200','retail','0','2023-02-11 20:56:45','','','','0','Cash',0.00,'200','','','3','','1','2023-02-11 17:57:01','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-10.00','-11','Inclusive','branch','Inventory','','','','',''),('316761382182861362',151,'31676138174','17','1.00','200','retail','0','2023-02-11 20:56:57','','','','0','Cash',0.00,'200','','','3','','1','2023-02-11 17:57:01','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-1.00','-2','Inclusive','branch','Inventory','','','','',''),('316761412682166362',152,'31676141268','40','1.00','600','retail','0','2023-02-11 21:47:48','','','','0','Cash',0.00,'600','','','3','','1','2023-02-11 18:47:52','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-8.00','-9','Inclusive','branch','Inventory','','','','',''),('316761412963421300',153,'31676141295','19','1.00','200','retail','0','2023-02-11 21:48:15','','','','0','Cash',0.00,'200','','','3','','1','2023-02-11 18:48:19','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','0.00','-1','Inclusive','branch','Inventory','','','','',''),('416761418614242432',154,'41676141860','1','1.00','250','retail','0','2023-02-11 21:57:40','','','','0','Cash',0.00,'250','','','4','','1','2023-02-11 19:03:28','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-8.00','-9','Inclusive','branch','Inventory','','','','',''),('416761418992222032',155,'41676141860','1','1.00','250','retail','0','2023-02-11 21:58:19','','','','0','Cash',0.00,'250','','','4','','1','2023-02-11 19:03:28','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-9.00','-10','Inclusive','branch','Inventory','','','','',''),('416761419172161362',156,'41676141860','9','1.00','200','retail','0','2023-02-11 21:58:37','','','','0','Cash',0.00,'200','','','4','','1','2023-02-11 19:03:28','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-1.00','-2','Inclusive','branch','Inventory','','','','',''),('416761419563022359',157,'41676141860','38','1.00','350','retail','0','2023-02-11 21:59:15','','','','0','Cash',0.00,'350','','','4','','1','2023-02-11 19:03:28','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-10.00','-11','Inclusive','branch','Inventory','','','','',''),('416761420657250732',158,'41676141860','1','1.00','250','retail','0','2023-02-11 22:01:04','','','','0','Cash',0.00,'250','','','4','','1','2023-02-11 19:03:28','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-10.00','-11','Inclusive','branch','Inventory','','','','',''),('416761420684242432',159,'41676141860','1','1.00','250','retail','0','2023-02-11 22:01:07','','','','0','Cash',0.00,'250','','','4','','1','2023-02-11 19:03:28','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-11.00','-12','Inclusive','branch','Inventory','','','','',''),('416761423322222032',160,'41676142332','17','1.00','200','retail','0','2023-02-11 22:05:32','','','','0','Cash',0.00,'200','','','4','','1','2023-02-11 19:05:55','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-2.00','-3','Inclusive','branch','Inventory','','','','',''),('416761423400223443',161,'41676142332','16','1.00','200','retail','0','2023-02-11 22:05:39','','','','0','Cash',0.00,'200','','','4','','1','2023-02-11 19:05:55','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-5.00','-6','Inclusive','branch','Inventory','','','','',''),('416761426752222032',162,'41676142674','48','1.00','10','retail','0','2023-02-11 22:11:14','','','','0','Cash',0.00,'10','','','4','','1','2023-02-11 19:11:27','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-10.00','-11','Inclusive','branch','None Inventory','1110','4000','5500','',''),('416761426820202036',163,'41676142674','48','1.00','10','retail','0','2023-02-11 22:11:21','','','','0','Cash',0.00,'10','','','4','','1','2023-02-11 19:11:27','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-11.00','-12','Inclusive','branch','None Inventory','1110','4000','5500','',''),('316761922572265362',164,'31676192256','8','1.00','150','retail','0','2023-02-12 11:57:36','','','','0','Cash',0.00,'150','','','3','','1','2023-02-12 08:57:58','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-6.00','-7','Inclusive','branch','Inventory','','','','',''),('316761922732222032',165,'31676192256','26','1.00','100','retail','0','2023-02-12 11:57:52','','','','0','Cash',0.00,'100','','','3','','1','2023-02-12 08:57:58','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-1.00','-2','Inclusive','branch','Inventory','','','','',''),('316761974483421300',166,'31676197447','22','1.00','250','retail','0','2023-02-12 13:24:07','','','','0','Cash',0.00,'250','','','3','','1','2023-02-12 10:24:11','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-3.00','-4','Inclusive','branch','Inventory','','','','',''),('316762060186722634',168,'31676206017','34','1.00','300','retail','0','2023-02-12 15:46:57','','','','0','Cash',0.00,'300','','','3','','1','2023-02-12 13:01:49','','5','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-4.00','-5','Inclusive','branch','Inventory','','','','',''),('316762069052660362',169,'31676206017','34','1.00','300','retail','0','2023-02-12 16:01:44','','','','0','Cash',0.00,'300','','','3','','1','2023-02-12 13:01:49','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-5.00','-6','Inclusive','branch','Inventory','','','','',''),('316762112127220732',170,'31676211211','36','1.00','400','retail','0','2023-02-12 17:13:31','','','','0','Cash',0.00,'400','','','3','','1','2023-02-12 14:13:57','','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-1.00','-2','Inclusive','branch','Inventory','','','','',''),('316762112152222032',171,'31676211211','37','1.00','400','retail','0','2023-02-12 17:13:35','','','','0','Cash',0.00,'400','','','3','','1','2023-02-12 14:13:57','','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-3.00','-4','Inclusive','branch','Inventory','','','','',''),('316762112341722134',172,'31676211211','32','1.00','300','retail','0','2023-02-12 17:13:53','','','','0','Cash',0.00,'300','','','3','','1','2023-02-12 14:13:57','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','0.00','-1','Inclusive','branch','Inventory','','','','',''),('316762135393022335',173,'31676213538','32','1.00','300','retail','0','2023-02-12 17:52:18','','','','0','Cash',0.00,'300','','','3','','1','2023-02-12 14:52:21','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-1.00','-2','Inclusive','branch','Inventory','','','','',''),('316762135593421300',174,'31676213558','32','1.00','300','retail','0','2023-02-12 17:52:38','','','','0','Cash',0.00,'300','','','3','','1','2023-02-12 14:52:43','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-2.00','-3','Inclusive','branch','Inventory','','','','',''),('316762148073421300',175,'31676214806','35','1.00','350','retail','0','2023-02-12 18:13:26','','','','0','Cash',0.00,'350','','','3','','1','2023-02-12 15:13:32','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-1.00','-2','Inclusive','branch','Inventory','','','','',''),('316762148103022318',176,'31676214806','35','1.00','350','retail','0','2023-02-12 18:13:29','','','','0','Cash',0.00,'350','','','3','','1','2023-02-12 15:13:32','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-2.00','-3','Inclusive','branch','Inventory','','','','',''),('316762279823421300',177,'31676227981','1','1.00','250','retail','0','2023-02-12 21:53:01','','','','0','Cash',0.00,'250','','','3','','1','2023-02-12 18:53:20','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-12.00','-13','Inclusive','branch','Inventory','','','','',''),('316762280188722834',178,'31676228017','21','1.00','200','retail','0','2023-02-12 21:53:37','','','','0','Cash',0.00,'200','','','3','','1','2023-02-12 18:53:40','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-11.00','-12','Inclusive','branch','Inventory','','','','',''),('316762713173022313',179,'31676271316','12','1.00','200','retail','0','2023-02-13 09:55:16','','','','0','Cash',0.00,'200','','','3','','1','2023-02-13 06:55:20','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-9.00','-10','Inclusive','branch','Inventory','','','','',''),('416762767857250732',180,'41676276784','3','1.00','200','retail','0','2023-02-13 11:26:24','','','','0','Cash',0.00,'200','','','4','','1','2023-02-13 08:26:37','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-9.00','-10','Inclusive','branch','Inventory','','','','',''),('416762947717210732',181,'41676294770','38','1.00','350','retail','0','2023-02-13 16:26:10','','','','0','Cash',0.00,'350','','','4','','1','2023-02-13 13:26:16','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-11.00','-12','Inclusive','branch','Inventory','','','','',''),('416763021843421300',182,'41676302183','36','1.00','400','retail','0','2023-02-13 18:29:43','','','','0','Cash',0.00,'400','','','4','','1','2023-02-13 15:29:46','','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-2.00','-3','Inclusive','branch','Inventory','','','','',''),('316763096183022316',183,'31676309617','33','1.00','300','retail','0','2023-02-13 20:33:37','','','','0','Cash',0.00,'300','','','3','','1','2023-02-13 17:33:42','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-2.00','-3','Inclusive','branch','Inventory','','','','',''),('316763120550202036',184,'31676312054','1','1.00','250','retail','0','2023-02-13 21:14:14','','','','0','Cash',0.00,'250','','','3','','1','2023-02-13 18:14:18','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-13.00','-14','Inclusive','branch','Inventory','','','','',''),('316763122622723234',185,'31676312261','48','1.00','10','retail','0','2023-02-13 21:17:41','','','','0','Cash',0.00,'10','','','3','','1','2023-02-13 18:17:47','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-12.00','-13','Inclusive','branch','None Inventory','1110','4000','5500','',''),('416763578203022328',186,'41676357819','30','1.00','330','retail','0','2023-02-14 09:56:59','','','','0','Cash',0.00,'330','','','4','','1','2023-02-14 06:57:12','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-1.00','-2','Inclusive','branch','Inventory','','','','',''),('416763578293421300',187,'41676357819','48','1.00','10','retail','0','2023-02-14 09:57:08','','','','0','Cash',0.00,'10','','','4','','1','2023-02-14 06:57:12','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-13.00','-14','Inclusive','branch','None Inventory','1110','4000','5500','',''),('416763593932222032',188,'41676359392','29','1.00','300','retail','0','2023-02-14 10:23:12','','','','0','Cash',0.00,'300','','','4','','1','2023-02-14 07:23:24','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','0.00','-1','Inclusive','branch','Inventory','','','','',''),('416763594009723944',189,'41676359392','49','1.00','10','retail','0','2023-02-14 10:23:19','','','','0','Cash',0.00,'10','','','4','','1','2023-02-14 07:23:24','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-9.00','-10','Inclusive','branch','None Inventory','1110','4000','5500','',''),('416763624930202036',190,'41676362493','7','1.00','200','retail','0','2023-02-14 11:14:53','','','','0','Cash',0.00,'200','','','4','','1','2023-02-14 08:15:06','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-9.00','-10','Inclusive','branch','Inventory','','','','',''),('416763624970202036',191,'41676362493','7','1.00','200','retail','0','2023-02-14 11:14:56','','','','0','Cash',0.00,'200','','','4','','1','2023-02-14 08:15:06','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-10.00','-11','Inclusive','branch','Inventory','','','','',''),('416763625013022305',192,'41676362493','7','1.00','200','retail','0','2023-02-14 11:15:00','','','','0','Cash',0.00,'200','','','4','','1','2023-02-14 08:15:06','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-11.00','-12','Inclusive','branch','Inventory','','','','',''),('416763625172723244',193,'41676362516','7','1.00','200','retail','0','2023-02-14 11:15:16','','','','0','Cash',0.00,'200','','','4','','1','2023-02-14 08:15:22','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-12.00','-13','Inclusive','branch','Inventory','','','','',''),('416763639513421300',194,'41676363951','1','1.00','250','retail','0','2023-02-14 11:39:11','','','','0','Cash',0.00,'250','','','4','','1','2023-02-14 08:39:14','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-14.00','-15','Inclusive','branch','Inventory','','','','',''),('416763750872568362',195,'41676375086','38','1.00','350','retail','0','2023-02-14 14:44:46','','','','0','Cash',0.00,'350','','','4','','1','2023-02-14 11:44:50','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-12.00','-13','Inclusive','branch','Inventory','','','','',''),('416763907330723044',196,'41676390732','7','1.00','200','retail','0','2023-02-14 19:05:32','','','','0','Cash',0.00,'200','','','4','','1','2023-02-14 16:05:37','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-13.00','-14','Inclusive','branch','Inventory','','','','',''),('416763908323232223',197,'41676390831','2','1.00','200','retail','0','2023-02-14 19:07:11','','','','0','Cash',0.00,'200','','','4','','1','2023-02-14 16:07:36','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-6.00','-7','Inclusive','branch','Inventory','','','','',''),('416763908390723044',198,'41676390831','4','1.00','150','retail','0','2023-02-14 19:07:19','','','','0','Cash',0.00,'150','','','4','','1','2023-02-14 16:07:36','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-5.00','-6','Inclusive','branch','Inventory','','','','',''),('416763908524292432',199,'41676390831','37','1.00','400','retail','0','2023-02-14 19:07:32','','','','0','Cash',0.00,'400','','','4','','1','2023-02-14 16:07:36','','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-4.00','-5','Inclusive','branch','Inventory','','','','',''),('416763940953421300',200,'41676394095','30','1.00','330','retail','0','2023-02-14 20:01:35','','','','0','Cash',0.00,'330','','','4','','1','2023-02-14 17:01:38','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-2.00','-3','Inclusive','branch','Inventory','','','','',''),('416763956325723544',201,'41676395631','1','1.00','250','retail','0','2023-02-14 20:27:11','','','','0','Cash',0.00,'250','','','4','','1','2023-02-14 17:27:20','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-15.00','-16','Inclusive','branch','Inventory','','','','',''),('416763956527220732',202,'41676395651','48','1.00','10','retail','0','2023-02-14 20:27:31','','','','0','Cash',0.00,'10','','','4','','1','2023-02-14 17:27:36','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-14.00','-15','Inclusive','branch','None Inventory','1110','4000','5500','',''),('316764689717210732',203,'31676468970','2','1.00','200','retail','0','2023-02-15 16:49:30','','','','0','Cash',0.00,'200','','','3','','1','2023-02-15 13:49:43','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-7.00','-8','Inclusive','branch','Inventory','','','','',''),('316764783880202036',204,'31676478387','38','1.00','350','retail','0','2023-02-15 19:26:27','','','','0','Cash',0.00,'350','','','3','','1','2023-02-15 16:26:30','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-13.00','-14','Inclusive','branch','Inventory','','','','',''),('316764792314272432',205,'31676479230','21','1.00','200','retail','0','2023-02-15 19:40:30','','','','0','Cash',0.00,'200','','','3','','1','2023-02-15 16:40:45','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-12.00','-13','Inclusive','branch','Inventory','','','','',''),('316764792430202036',206,'31676479230','1','1.00','250','retail','0','2023-02-15 19:40:42','','','','0','Cash',0.00,'250','','','3','','1','2023-02-15 16:40:45','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-16.00','-17','Inclusive','branch','Inventory','','','','',''),('316764868553022358',207,'31676486854','17','1.00','200','retail','0','2023-02-15 21:47:34','','','','0','Cash',0.00,'200','','','3','','1','2023-02-15 18:47:39','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-3.00','-4','Inclusive','branch','Inventory','','','','',''),('416765462734242432',208,'41676546272','38','1.00','350','retail','0','2023-02-16 14:17:52','','','','0','Cash',0.00,'350','','','4','','1','2023-02-16 11:18:00','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-14.00','-15','Inclusive','branch','Inventory','','','','',''),('316765552927220732',209,'31676555292','12','1.00','200','retail','0','2023-02-16 16:48:12','','','','0','Cash',0.00,'200','','','3','','1','2023-02-16 13:48:17','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-10.00','-11','Inclusive','branch','Inventory','','','','',''),('316765588813022388',210,'31676558880','21','1.00','200','retail','0','2023-02-16 17:48:00','','','','0','Cash',0.00,'200','','','3','','1','2023-02-16 14:48:05','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-13.00','-14','Inclusive','branch','Inventory','','','','',''),('416765589832868362',211,'41676558983','34','1.00','300','retail','0','2023-02-16 17:49:43','','','','0','Cash',0.00,'300','','','4','','1','2023-02-16 14:49:51','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-6.00','-7','Inclusive','branch','Inventory','','','','',''),('416765589878725844',212,'41676558983','34','1.00','300','retail','0','2023-02-16 17:49:46','','','','0','Cash',0.00,'300','','','4','','1','2023-02-16 14:49:51','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-7.00','-8','Inclusive','branch','Inventory','','','','',''),('416765606854262432',213,'41676560684','21','1.00','200','retail','0','2023-02-16 18:18:05','','','','0','Cash',0.00,'200','','','4','','1','2023-02-16 15:18:39','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-14.00','-15','Inclusive','branch','Inventory','','','','',''),('316765623052725234',214,'31676562305','21','1.00','200','retail','0','2023-02-16 18:45:05','','','','0','Cash',0.00,'200','','','3','','1','2023-02-16 15:45:13','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-15.00','-16','Inclusive','branch','Inventory','','','','',''),('316765623092725234',215,'31676562305','21','1.00','200','retail','0','2023-02-16 18:45:08','','','','0','Cash',0.00,'200','','','3','','1','2023-02-16 15:45:13','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-16.00','-17','Inclusive','branch','Inventory','','','','',''),('416765624230202036',216,'41676562422','20','1.00','200','retail','0','2023-02-16 18:47:02','','','','0','Cash',0.00,'200','','','4','','1','2023-02-16 15:47:06','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-11.00','-12','Inclusive','branch','Inventory','','','','',''),('316765785824272432',217,'31676578581','21','1.00','200','retail','0','2023-02-16 23:16:21','','','','0','Cash',0.00,'200','','','3','','1','2023-02-16 20:16:32','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-17.00','-18','Inclusive','branch','Inventory','','','','',''),('416766215174222432',218,'41676621516','20','1.00','200','retail','0','2023-02-17 11:11:56','','','','0','Cash',0.00,'200','','','4','','1','2023-02-17 08:12:18','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-12.00','-13','Inclusive','branch','Inventory','','','','',''),('416766215251726144',219,'41676621516','20','1.00','200','retail','0','2023-02-17 11:12:04','','','','0','Cash',0.00,'200','','','4','','1','2023-02-17 08:12:18','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-13.00','-14','Inclusive','branch','Inventory','','','','',''),('416766215321726144',220,'41676621516','37','1.00','400','retail','0','2023-02-17 11:12:11','','','','0','Cash',0.00,'400','','','4','','1','2023-02-17 08:12:18','','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-5.00','-6','Inclusive','branch','Inventory','','','','',''),('416766315127220732',221,'41676631511','32','1.00','300','retail','0','2023-02-17 13:58:31','','','','0','Cash',0.00,'300','','','4','','1','2023-02-17 10:58:35','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-3.00','-4','Inclusive','branch','Inventory','','','','',''),('416766328723022378',222,'41676632871','9','1.00','200','retail','0','2023-02-17 14:21:11','','','','0','Cash',0.00,'200','','','4','','1','2023-02-17 11:21:17','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-2.00','-3','Inclusive','branch','Inventory','','','','',''),('316766468152661362',224,'31676646814','34','1.00','300','retail','0','2023-02-17 18:13:34','','','','0','Cash',0.00,'300','','','3','','1','2023-02-17 15:14:40','','5','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-8.00','-9','Inclusive','branch','Inventory','','','','',''),('316766468714242432',225,'31676646814','49','1.00','10','retail','0','2023-02-17 18:14:31','','','','0','Cash',0.00,'10','','','3','','1','2023-02-17 15:14:40','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-10.00','-11','Inclusive','branch','None Inventory','1110','4000','5500','',''),('416766507092060362',226,'41676650708','34','1.00','300','retail','0','2023-02-17 19:18:28','','','','0','Cash',0.00,'300','','','4','','1','2023-02-17 16:18:34','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-9.00','-10','Inclusive','branch','Inventory','','','','',''),('416766539953022399',227,'41676653994','23','1.00','250','retail','0','2023-02-17 20:13:14','','','','0','Cash',0.00,'250','','','4','','1','2023-02-17 17:13:29','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-2.00','-3','Inclusive','branch','Inventory','','','','',''),('316766591192961362',228,'31676659118','20','1.00','200','retail','0','2023-02-17 21:38:38','','','','0','Cash',0.00,'200','','','3','','1','2023-02-17 18:38:45','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-14.00','-15','Inclusive','branch','Inventory','','','','',''),('416767096200202036',229,'41676709619','21','1.00','200','retail','0','2023-02-18 11:40:19','','','','0','Cash',0.00,'200','','','4','','1','2023-02-18 08:41:07','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-18.00','-19','Inclusive','branch','Inventory','','','','',''),('416767096242962362',230,'41676709619','21','1.00','200','retail','0','2023-02-18 11:40:23','','','','0','Cash',0.00,'200','','','4','','1','2023-02-18 08:41:07','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-19.00','-20','Inclusive','branch','Inventory','','','','',''),('416767096533421300',231,'41676709619','44','1.00','400','retail','0','2023-02-18 11:40:52','','','','0','Cash',0.00,'400','','','4','','1','2023-02-18 08:41:07','','9','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-1.00','-2','Inclusive','branch','Inventory','','','','',''),('416767096627220732',232,'41676709619','43','1.00','600','retail','0','2023-02-18 11:41:02','','','','0','Cash',0.00,'600','','','4','','1','2023-02-18 08:41:07','','9','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','0.00','-1','Inclusive','branch','Inventory','','','','',''),('316767098429727934',233,'31676709841','7','1.00','200','retail','0','2023-02-18 11:44:01','','','','0','Cash',0.00,'200','','','3','','1','2023-02-18 08:44:27','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-14.00','-15','Inclusive','branch','Inventory','','','','',''),('316767098542965362',234,'31676709841','44','1.00','400','retail','0','2023-02-18 11:44:14','','','','0','Cash',0.00,'400','','','3','','1','2023-02-18 08:44:27','','9','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-2.00','-3','Inclusive','branch','Inventory','','','','',''),('316767132713727334',235,'31676713270','1','1.00','250','retail','0','2023-02-18 12:41:10','','','','0','Cash',0.00,'250','','','3','','1','2023-02-18 09:41:19','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-17.00','-18','Inclusive','branch','Inventory','','','','',''),('316767132770202036',236,'31676713270','48','1.00','10','retail','0','2023-02-18 12:41:16','','','','0','Cash',0.00,'10','','','3','','1','2023-02-18 09:41:19','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-15.00','-16','Inclusive','branch','None Inventory','1110','4000','5500','',''),('416767134483727344',237,'41676713448','29','1.00','300','retail','0','2023-02-18 12:44:08','','','','0','Cash',0.00,'300','','','4','','1','2023-02-18 09:44:21','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-1.00','-2','Inclusive','branch','Inventory','','','','',''),('316767151994212432',238,'31676715198','40','1.00','600','retail','0','2023-02-18 13:13:18','','','','0','Cash',0.00,'600','','','3','','1','2023-02-18 10:13:35','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-9.00','-10','Inclusive','branch','Inventory','','','','',''),('316767152073421300',239,'31676715198','32','1.00','300','retail','0','2023-02-18 13:13:26','','','','0','Cash',0.00,'300','','','3','','1','2023-02-18 10:13:35','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-4.00','-5','Inclusive','branch','Inventory','','','','',''),('416767246082222032',240,'41676724607','29','1.00','300','retail','0','2023-02-18 15:50:07','','','','0','Cash',0.00,'300','','','4','','1','2023-02-18 12:50:19','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-2.00','-3','Inclusive','branch','Inventory','','','','',''),('416767246163022316',241,'41676724607','32','1.00','300','retail','0','2023-02-18 15:50:15','','','','0','Cash',0.00,'300','','','4','','1','2023-02-18 12:50:19','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-5.00','-6','Inclusive','branch','Inventory','','','','',''),('416767246613421300',242,'41676724660','21','1.00','200','retail','0','2023-02-18 15:51:00','','','','0','Cash',0.00,'200','','','4','','1','2023-02-18 12:51:08','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-20.00','-21','Inclusive','branch','Inventory','','','','',''),('316767247550202036',243,'31676724754','21','1.00','200','retail','0','2023-02-18 15:52:34','','','','0','Cash',0.00,'200','','','3','','1','2023-02-18 12:52:37','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-21.00','-22','Inclusive','branch','Inventory','','','','',''),('316767269853022389',244,'31676726984','3','1.00','200','retail','0','2023-02-18 16:29:44','','','','0','Cash',0.00,'200','','','3','','1','2023-02-18 13:29:48','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-10.00','-11','Inclusive','branch','Inventory','','','','',''),('416767270423022340',245,'41676727042','3','1.00','200','retail','0','2023-02-18 16:30:42','','','','0','Cash',0.00,'200','','','4','','1','2023-02-18 13:30:46','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-11.00','-12','Inclusive','branch','Inventory','','','','',''),('416767297349727944',246,'41676729733','23','1.00','250','retail','0','2023-02-18 17:15:33','','','','0','Cash',0.00,'250','','','4','','1','2023-02-18 14:15:38','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-3.00','-4','Inclusive','branch','Inventory','','','','',''),('416767344837230732',247,'41676734482','2','1.00','200','retail','0','2023-02-18 18:34:42','','','','0','Cash',0.00,'200','','','4','','1','2023-02-18 15:34:50','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-8.00','-9','Inclusive','branch','Inventory','','','','',''),('416767345720202036',248,'41676734571','21','1.00','200','retail','0','2023-02-18 18:36:11','','','','0','Cash',0.00,'200','','','4','','1','2023-02-18 15:36:16','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-22.00','-23','Inclusive','branch','Inventory','','','','',''),('416767363072222032',249,'41676736276','9','1.00','200','retail','0','2023-02-18 19:05:06','','','','0','Cash',0.00,'200','','','4','','1','2023-02-18 16:05:20','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-3.00','-4','Inclusive','branch','Inventory','','','','',''),('316767384203022324',250,'31676738419','1','1.00','250','retail','0','2023-02-18 19:40:19','','','','0','Cash',0.00,'250','','','3','','1','2023-02-18 16:40:24','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-18.00','-19','Inclusive','branch','Inventory','','','','',''),('316767384443421300',251,'31676738443','2','1.00','200','retail','0','2023-02-18 19:40:43','','','','0','Cash',0.00,'200','','','3','','1','2023-02-18 16:40:46','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-9.00','-10','Inclusive','branch','Inventory','','','','',''),('316767385917210732',252,'31676738590','2','1.00','200','retail','0','2023-02-18 19:43:10','','','','0','Cash',0.00,'200','','','3','','1','2023-02-18 16:43:15','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-10.00','-11','Inclusive','branch','Inventory','','','','',''),('316767386733733182',253,'31676738672','8','1.00','150','retail','0','2023-02-18 19:44:32','','','','0','Cash',0.00,'150','','','3','','1','2023-02-18 16:44:38','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-7.00','-8','Inclusive','branch','Inventory','','','','',''),('316767387032333323',254,'31676738702','21','1.00','200','retail','0','2023-02-18 19:45:02','','','','0','Cash',0.00,'200','','','3','','1','2023-02-18 16:45:08','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-23.00','-24','Inclusive','branch','Inventory','','','','',''),('316767428242727234',255,'31676742823','7','1.00','200','retail','0','2023-02-18 20:53:43','','','','0','Cash',0.00,'200','','','3','','1','2023-02-18 17:53:55','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-15.00','-16','Inclusive','branch','Inventory','','','','',''),('316767428312333302',256,'31676742823','8','1.00','150','retail','0','2023-02-18 20:53:50','','','','0','Cash',0.00,'150','','','3','','1','2023-02-18 17:53:55','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-8.00','-9','Inclusive','branch','Inventory','','','','',''),('416767437982222032',257,'41676743797','38','1.00','350','retail','0','2023-02-18 21:09:57','','','','0','Cash',0.00,'350','','','4','','1','2023-02-18 18:10:00','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-15.00','-16','Inclusive','branch','Inventory','','','','',''),('316767449322463362',258,'31676744931','38','1.00','350','retail','0','2023-02-18 21:28:51','','','','0','Cash',0.00,'350','','','3','','1','2023-02-18 18:28:55','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-16.00','-17','Inclusive','branch','Inventory','','','','',''),('316767452965727534',259,'31676745295','1','1.00','250','retail','0','2023-02-18 21:34:55','','','','0','Cash',0.00,'250','','','3','','1','2023-02-18 18:35:03','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-19.00','-20','Inclusive','branch','Inventory','','','','',''),('416767954227220732',260,'41676795413','17','1.00','200','retail','0','2023-02-19 11:30:21','','','','0','Cash',0.00,'200','','','4','','1','2023-02-19 08:30:30','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-5.00','-6','Inclusive','branch','Inventory','','','','',''),('416767971170202036',261,'41676797117','1','1.00','250','retail','0','2023-02-19 11:58:37','','','','0','Cash',0.00,'250','','','4','','1','2023-02-19 08:58:49','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-20.00','-21','Inclusive','branch','Inventory','','','','',''),('416767971223022321',262,'41676797117','1','1.00','250','retail','0','2023-02-19 11:58:41','','','','0','Cash',0.00,'250','','','4','','1','2023-02-19 08:58:49','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-21.00','-22','Inclusive','branch','Inventory','','','','',''),('416767978212222032',263,'41676797820','21','1.00','200','retail','0','2023-02-19 12:10:20','','','','0','Cash',0.00,'200','','','4','','1','2023-02-19 09:10:25','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-24.00','-25','Inclusive','branch','Inventory','','','','',''),('416768112072160362',264,'41676811206','40','1.00','600','retail','0','2023-02-19 15:53:26','','','','0','Cash',0.00,'600','','','4','','1','2023-02-19 12:53:32','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-10.00','-11','Inclusive','branch','Inventory','','','','',''),('316768173800202036',265,'31676817380','8','1.00','150','retail','0','2023-02-19 17:36:20','','','','0','Cash',0.00,'150','','','3','','1','2023-02-19 14:36:26','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-9.00','-10','Inclusive','branch','Inventory','','','','',''),('316768221380202036',266,'31676822138','34','1.00','300','retail','0','2023-02-19 18:55:38','','','','0','Cash',0.00,'300','','','3','','1','2023-02-19 15:55:46','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-10.00','-11','Inclusive','branch','Inventory','','','','',''),('316768221427220732',267,'31676822138','33','1.00','300','retail','0','2023-02-19 18:55:42','','','','0','Cash',0.00,'300','','','3','','1','2023-02-19 15:55:46','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-3.00','-4','Inclusive','branch','Inventory','','','','',''),('416768226080661220',268,'41676822607','21','1.00','200','retail','0','2023-02-19 19:03:27','','','','0','Cash',0.00,'200','','','4','','1','2023-02-19 16:03:36','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-25.00','-26','Inclusive','branch','Inventory','','','','',''),('416768226113022316',269,'41676822607','21','1.00','200','retail','0','2023-02-19 19:03:31','','','','0','Cash',0.00,'200','','','4','','1','2023-02-19 16:03:36','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-26.00','-27','Inclusive','branch','Inventory','','','','',''),('316768236062222032',270,'31676823605','20','1.00','200','retail','0','2023-02-19 19:20:05','','','','0','Cash',0.00,'200','','','3','','1','2023-02-19 16:20:14','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-15.00','-16','Inclusive','branch','Inventory','','','','',''),('316768254607200732',271,'31676825459','7','1.00','200','retail','0','2023-02-19 19:50:59','','','','0','Cash',0.00,'200','','','3','','1','2023-02-19 16:51:09','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-16.00','-17','Inclusive','branch','Inventory','','','','',''),('316768254665728534',272,'31676825459','43','1.00','600','retail','0','2023-02-19 19:51:06','','','','0','Cash',0.00,'600','','','3','','1','2023-02-19 16:51:09','','9','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-1.00','-2','Inclusive','branch','Inventory','','','','',''),('316768281861033408',273,'31676828185','20','1.00','200','retail','0','2023-02-19 20:36:25','','','','0','Cash',0.00,'200','','','3','','1','2023-02-19 17:36:47','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-16.00','-17','Inclusive','branch','Inventory','','','','',''),('316768282042860362',274,'31676828185','12','1.00','200','retail','0','2023-02-19 20:36:43','','','','0','Cash',0.00,'200','','','3','','1','2023-02-19 17:36:47','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-11.00','-12','Inclusive','branch','Inventory','','','','',''),('316768313844232432',275,'31676831384','8','1.00','150','retail','0','2023-02-19 21:29:44','','','','0','Cash',0.00,'150','','','3','','1','2023-02-19 18:30:06','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-10.00','-11','Inclusive','branch','Inventory','','','','',''),('316768314030202036',276,'31676831384','7','1.00','200','retail','0','2023-02-19 21:30:02','','','','0','Cash',0.00,'200','','','3','','1','2023-02-19 18:30:06','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-17.00','-18','Inclusive','branch','Inventory','','','','',''),('316768315093330232',277,'31676831508','38','1.00','350','retail','0','2023-02-19 21:31:48','','','','0','Cash',0.00,'350','','','3','','1','2023-02-19 18:31:53','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-17.00','-18','Inclusive','branch','Inventory','','','','',''),('316768337480202036',278,'31676833748','22','1.00','250','retail','0','2023-02-19 22:09:08','','','','0','Cash',0.00,'250','','','3','','1','2023-02-19 19:09:12','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-4.00','-5','Inclusive','branch','Inventory','','','','',''),('316768891219728934',279,'31676889120','21','1.00','200','retail','0','2023-02-20 13:32:00','','','','0','Cash',0.00,'200','','','3','','1','2023-02-20 10:32:03','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-27.00','-28','Inclusive','branch','Inventory','','','','',''),('316768891592965362',280,'31676889158','38','1.00','350','retail','0','2023-02-20 13:32:38','','','','0','Cash',0.00,'350','','','3','','1','2023-02-20 10:32:42','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-18.00','-19','Inclusive','branch','Inventory','','','','',''),('316768982433022342',281,'31676898242','34','1.00','300','retail','0','2023-02-20 16:04:02','','','','0','Cash',0.00,'300','','','3','','1','2023-02-20 13:04:35','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-11.00','-12','Inclusive','branch','Inventory','','','','',''),('316768982555409375',282,'31676898242','34','1.00','300','retail','0','2023-02-20 16:04:14','','','','0','Cash',0.00,'300','','','3','','1','2023-02-20 13:04:35','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-12.00','-13','Inclusive','branch','Inventory','','','','',''),('316768982720202036',283,'31676898242','34','1.00','300','retail','0','2023-02-20 16:04:31','','','','0','Cash',0.00,'300','','','3','','1','2023-02-20 13:04:35','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-13.00','-14','Inclusive','branch','Inventory','','','','',''),('316769006712067362',284,'31676900670','6','1.00','250','retail','0','2023-02-20 16:44:30','','','','0','Cash',0.00,'250','','','3','','1','2023-02-20 13:44:35','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-2.00','-3','Inclusive','branch','Inventory','','','','',''),('316769019414202432',285,'31676901940','8','1.00','150','retail','0','2023-02-20 17:05:41','','','','0','Cash',0.00,'150','','','3','','1','2023-02-20 14:18:07','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-11.00','-12','Inclusive','branch','Inventory','','','','',''),('416769092040202036',286,'41676909204','5','1.00','280','retail','0','2023-02-20 19:06:44','','','','0','Cash',0.00,'280','','','4','','1','2023-02-20 16:06:48','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','0.00','-1','Inclusive','branch','Inventory','','','','',''),('416769092224202432',287,'41676909221','21','1.00','200','retail','0','2023-02-20 19:07:01','','','','0','Cash',0.00,'200','','','4','','1','2023-02-20 16:07:06','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-28.00','-29','Inclusive','branch','Inventory','','','','',''),('416769092372963362',288,'41676909236','38','1.00','350','retail','0','2023-02-20 19:07:16','','','','0','Cash',0.00,'350','','','4','','1','2023-02-20 16:07:22','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-19.00','-20','Inclusive','branch','Inventory','','','','',''),('416769104037230732',289,'41676910402','21','1.00','200','retail','0','2023-02-20 19:26:42','','','','0','Cash',0.00,'200','','','4','','1','2023-02-20 16:26:46','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-29.00','-30','Inclusive','branch','Inventory','','','','',''),('416769104184212432',290,'41676910417','38','1.00','350','retail','0','2023-02-20 19:26:57','','','','0','Cash',0.00,'350','','','4','','1','2023-02-20 16:27:01','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-20.00','-21','Inclusive','branch','Inventory','','','','',''),('416769104557250732',291,'41676910454','38','1.00','350','retail','0','2023-02-20 19:27:34','','','','0','Cash',0.00,'350','','','4','','1','2023-02-20 16:27:38','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-21.00','-22','Inclusive','branch','Inventory','','','','',''),('416769130443421300',292,'41676913043','38','1.00','350','retail','0','2023-02-20 20:10:43','','','','0','Cash',0.00,'350','','','4','','1','2023-02-20 17:10:48','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-22.00','-23','Inclusive','branch','Inventory','','','','',''),('416769169152222032',293,'41676916911','21','1.00','200','retail','0','2023-02-20 21:15:14','','','','0','Cash',0.00,'200','','','4','','1','2023-02-20 18:15:26','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-31.00','-32','Inclusive','branch','Inventory','','','','',''),('416769169353022339',294,'41676916934','21','1.00','200','retail','0','2023-02-20 21:15:34','','','','0','Cash',0.00,'200','','','4','','1','2023-02-20 18:15:38','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-31.00','-32','Inclusive','branch','Inventory','','','','',''),('416769169494212432',295,'41676916949','21','1.00','200','retail','0','2023-02-20 21:15:49','','','','0','Cash',0.00,'200','','','4','','1','2023-02-20 18:15:52','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-32.00','-33','Inclusive','branch','Inventory','','','','',''),('416769169760202036',296,'41676916975','38','1.00','350','retail','0','2023-02-20 21:16:15','','','','0','Cash',0.00,'350','','','4','','1','2023-02-20 18:16:18','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-23.00','-24','Inclusive','branch','Inventory','','','','',''),('416769171903022391',297,'41676917189','17','1.00','200','retail','0','2023-02-20 21:19:49','','','','0','Cash',0.00,'200','','','4','','1','2023-02-20 18:19:54','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-5.00','-6','Inclusive','branch','Inventory','','','','',''),('416769203283421300',298,'41676920327','7','1.00','200','retail','0','2023-02-20 22:12:07','','','','0','Cash',0.00,'200','','','4','','1','2023-02-20 19:12:11','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-18.00','-19','Inclusive','branch','Inventory','','','','',''),('416769622612222032',299,'41676962260','11','1.00','250','retail','0','2023-02-21 09:51:00','','','','0','Cash',0.00,'250','','','4','','1','2023-02-21 06:51:05','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-5.00','-6','Inclusive','branch','Inventory','','','','',''),('416769710027220732',300,'41676971001','21','1.00','200','retail','0','2023-02-21 12:16:41','','','','0','Cash',0.00,'200','','','4','','1','2023-02-21 09:16:54','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-33.00','-34','Inclusive','branch','Inventory','','','','',''),('416769710094272432',301,'41676971001','48','1.00','10','retail','0','2023-02-21 12:16:48','','','','0','Cash',0.00,'10','','','4','','1','2023-02-21 09:16:54','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-16.00','-17','Inclusive','branch','None Inventory','1110','4000','5500','',''),('416769744043421300',302,'41676974403','21','1.00','200','retail','0','2023-02-21 13:13:23','','','','0','Cash',0.00,'200','','','4','','1','2023-02-21 10:13:38','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-34.00','-35','Inclusive','branch','Inventory','','','','',''),('416769760297290732',303,'41676976028','11','1.00','250','retail','0','2023-02-21 13:40:28','','','','0','Cash',0.00,'250','','','4','','1','2023-02-21 10:40:39','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-6.00','-7','Inclusive','branch','Inventory','','','','',''),('416769760366729644',304,'41676976028','48','1.00','10','retail','0','2023-02-21 13:40:35','','','','0','Cash',0.00,'10','','','4','','1','2023-02-21 10:40:39','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-17.00','-18','Inclusive','branch','None Inventory','1110','4000','5500','',''),('416769820543022350',305,'41676982053','38','1.00','350','retail','0','2023-02-21 15:20:53','','','','0','Cash',0.00,'350','','','4','','1','2023-02-21 12:20:59','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-24.00','-25','Inclusive','branch','Inventory','','','','',''),('416769838150202036',306,'41676983814','1','1.00','250','retail','0','2023-02-21 15:50:14','','','','0','Cash',0.00,'250','','','4','','1','2023-02-21 12:50:17','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-22.00','-23','Inclusive','branch','Inventory','','','','',''),('416769866242662362',307,'41676986623','21','1.00','200','retail','0','2023-02-21 16:37:03','','','','0','Cash',0.00,'200','','','4','','1','2023-02-21 13:37:08','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-35.00','-36','Inclusive','branch','Inventory','','','','',''),('416769902535199363',308,'41676990252','38','1.00','350','retail','0','2023-02-21 17:37:32','','','','0','Cash',0.00,'350','','','4','','1','2023-02-21 14:37:36','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-25.00','-26','Inclusive','branch','Inventory','','','','',''),('416769902663022362',309,'41676990265','7','1.00','200','retail','0','2023-02-21 17:37:45','','','','0','Cash',0.00,'200','','','4','','1','2023-02-21 14:37:48','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-19.00','-20','Inclusive','branch','Inventory','','','','',''),('416769902924292432',310,'41676990291','7','1.00','200','retail','0','2023-02-21 17:38:11','','','','0','Cash',0.00,'200','','','4','','1','2023-02-21 14:38:15','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-20.00','-21','Inclusive','branch','Inventory','','','','',''),('416769903102222032',311,'41676990309','23','1.00','250','retail','0','2023-02-21 17:38:29','','','','0','Cash',0.00,'250','','','4','','1','2023-02-21 14:38:33','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-4.00','-5','Inclusive','branch','Inventory','','','','',''),('416769937083729344',312,'41676993708','38','1.00','350','retail','0','2023-02-21 18:35:08','','','','0','Cash',0.00,'350','','','4','','1','2023-02-21 15:35:12','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-26.00','-27','Inclusive','branch','Inventory','','','','',''),('416769937472222032',313,'41676993746','17','1.00','200','retail','0','2023-02-21 18:35:46','','','','0','Cash',0.00,'200','','','4','','1','2023-02-21 15:35:52','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-6.00','-7','Inclusive','branch','Inventory','','','','',''),('416769957457250732',314,'41676995745','20','1.00','200','retail','0','2023-02-21 19:09:05','','','','0','Cash',0.00,'200','','','4','','1','2023-02-21 16:09:09','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-17.00','-18','Inclusive','branch','Inventory','','','','',''),('416769957615729544',315,'41676995761','21','1.00','200','retail','0','2023-02-21 19:09:21','','','','0','Cash',0.00,'200','','','4','','1','2023-02-21 16:09:26','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-36.00','-37','Inclusive','branch','Inventory','','','','',''),('416769977082760362',316,'41676997708','38','1.00','350','retail','0','2023-02-21 19:41:48','','','','0','Cash',0.00,'350','','','4','','1','2023-02-21 16:41:53','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-27.00','-28','Inclusive','branch','Inventory','','','','',''),('416770011326033021',317,'41677001131','11','1.00','250','retail','0','2023-02-21 20:38:51','','','','0','Cash',0.00,'250','','','4','','1','2023-02-21 17:38:55','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-7.00','-8','Inclusive','branch','Inventory','','','','',''),('416770036914202432',318,'41677003690','11','1.00','250','retail','0','2023-02-21 21:21:30','','','','0','Cash',0.00,'250','','','4','','1','2023-02-21 18:21:42','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-8.00','-9','Inclusive','branch','Inventory','','','','',''),('416770057223421300',319,'41677005722','21','1.00','200','retail','0','2023-02-21 21:55:22','','','','0','Cash',0.00,'200','','','4','','1','2023-02-21 18:55:27','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-37.00','-38','Inclusive','branch','Inventory','','','','',''),('416770493177270732',320,'41677049316','1','1.00','250','retail','0','2023-02-22 10:01:56','','','','0','Cash',0.00,'250','','','4','','1','2023-02-22 07:02:01','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-23.00','-24','Inclusive','branch','Inventory','','','','',''),('416770534153720344',321,'41677053414','18','1.00','200','retail','0','2023-02-22 11:10:14','','','','0','Cash',0.00,'200','','','4','','1','2023-02-22 08:10:19','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','0.00','-1','Inclusive','branch','Inventory','','','','',''),('416770534532222032',322,'41677053452','48','1.00','10','retail','0','2023-02-22 11:10:52','','','','0','Cash',0.00,'10','','','4','','1','2023-02-22 08:10:56','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-18.00','-19','Inclusive','branch','None Inventory','1110','4000','5500','',''),('416770536963421300',323,'41677053695','1','1.00','250','retail','0','2023-02-22 11:14:55','','','','0','Cash',0.00,'250','','','4','','1','2023-02-22 08:14:59','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-24.00','-25','Inclusive','branch','Inventory','','','','',''),('416770570404252432',324,'41677057039','18','1.00','200','retail','0','2023-02-22 12:10:40','','','','0','Cash',0.00,'200','','','4','','1','2023-02-22 09:10:44','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-1.00','-2','Inclusive','branch','Inventory','','','','',''),('416770619634262432',325,'41677061962','6','1.00','250','retail','0','2023-02-22 13:32:42','','','','0','Cash',0.00,'250','','','4','','1','2023-02-22 10:32:47','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-3.00','-4','Inclusive','branch','Inventory','','','','',''),('316770826357250732',326,'31677082634','38','1.00','350','retail','0','2023-02-22 19:17:14','','','','0','Cash',0.00,'350','','','3','','1','2023-02-22 16:17:22','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-28.00','-29','Inclusive','branch','Inventory','','','','',''),('316770826384282432',327,'31677082634','38','1.00','350','retail','0','2023-02-22 19:17:17','','','','0','Cash',0.00,'350','','','3','','1','2023-02-22 16:17:22','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-29.00','-30','Inclusive','branch','Inventory','','','','',''),('316770935762222032',328,'31677093575','6','1.00','250','retail','0','2023-02-22 22:19:35','','','','0','Cash',0.00,'250','','','3','','1','2023-02-22 19:19:38','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-4.00','-5','Inclusive','branch','Inventory','','','','',''),('316770936153720334',329,'31677093614','23','1.00','250','retail','0','2023-02-22 22:20:14','','','','0','Cash',0.00,'250','','','3','','1','2023-02-22 19:20:19','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-5.00','-6','Inclusive','branch','Inventory','','','','',''),('316770936753421300',330,'31677093674','3','1.00','200','retail','0','2023-02-22 22:21:14','','','','0','Cash',0.00,'200','','','3','','1','2023-02-22 19:21:24','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-12.00','-13','Inclusive','branch','Inventory','','','','',''),('316770936812333302',331,'31677093674','4','1.00','150','retail','0','2023-02-22 22:21:20','','','','0','Cash',0.00,'150','','','3','','1','2023-02-22 19:21:24','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-6.00','-7','Inclusive','branch','Inventory','','','','',''),('316771701600721034',333,'31677170159','21','1.00','200','retail','0','2023-02-23 19:35:59','','','','0','Cash',0.00,'200','','','3','','1','2023-02-23 16:47:34','','2','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-38.00','-39','Inclusive','branch','Inventory','','','','',''),('316771708490202037',334,'31677170159','21','1.00','200','retail','0','2023-02-23 19:47:29','','','','0','Cash',0.00,'200','','','3','','1','2023-02-23 16:47:34','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-39.00','-40','Inclusive','branch','Inventory','','','','',''),('316772204877270732',335,'31677220486','21','1.00','200','retail','0','2023-02-24 09:34:46','','','','0','Cash',0.00,'200','','','3','','1','2023-02-24 06:34:51','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-40.00','-41','Inclusive','branch','Inventory','','','','',''),('316772205042222032',336,'31677220503','21','1.00','200','retail','0','2023-02-24 09:35:04','','','','0','Cash',0.00,'200','','','3','','1','2023-02-24 06:35:06','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-41.00','-42','Inclusive','branch','Inventory','','','','',''),('316772206150202037',337,'31677220614','21','1.00','200','retail','0','2023-02-24 09:36:54','','','','0','Cash',0.00,'200','','','3','','1','2023-02-24 06:36:58','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-42.00','-43','Inclusive','branch','Inventory','','','','',''),('316772313543532040',338,'31677231353','1','1.00','250','retail','0','2023-02-24 12:35:53','','','','0','Cash',0.00,'250','','','3','','1','2023-02-24 09:36:20','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-25.00','-26','Inclusive','branch','Inventory','','','','',''),('316772313652166372',339,'31677231353','48','1.00','10','retail','0','2023-02-24 12:36:05','','','','0','Cash',0.00,'10','','','3','','1','2023-02-24 09:36:20','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-19.00','-20','Inclusive','branch','None Inventory','1110','4000','5500','',''),('316772413662166372',340,'31677241365','1','1.00','250','retail','0','2023-02-24 15:22:45','','','','0','Cash',0.00,'250','','','3','','1','2023-02-24 12:22:49','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-26.00','-27','Inclusive','branch','Inventory','','','','',''),('416772416112161372',341,'41677241610','3','1.00','200','retail','0','2023-02-24 15:26:50','','','','0','Cash',0.00,'200','','','4','','1','2023-02-24 12:26:54','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-13.00','-14','Inclusive','branch','Inventory','','','','',''),('416772435062360372',342,'41677243505','34','1.00','300','retail','0','2023-02-24 15:58:25','','','','0','Cash',0.00,'300','','','4','','1','2023-02-24 12:58:30','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-14.00','-15','Inclusive','branch','Inventory','','','','',''),('416772510603421300',343,'41677251059','1','1.00','250','retail','0','2023-02-24 18:04:19','','','','0','Cash',0.00,'250','','','4','','1','2023-02-24 15:04:28','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-27.00','-28','Inclusive','branch','Inventory','','','','',''),('416773056064202432',344,'41677305605','11','1.00','250','retail','0','2023-02-25 09:13:25','','','','0','Cash',0.00,'250','','','4','','1','2023-02-25 06:13:37','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-9.00','-10','Inclusive','branch','Inventory','','','','',''),('416773084527220732',345,'41677308452','21','1.00','200','retail','0','2023-02-25 10:00:52','','','','0','Cash',0.00,'200','','','4','','1','2023-02-25 07:00:57','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-43.00','-44','Inclusive','branch','Inventory','','','','',''),('416773147284723444',346,'41677314727','40','1.00','600','retail','0','2023-02-25 11:45:27','','','','0','Cash',0.00,'600','','','4','','1','2023-02-25 08:45:31','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-11.00','-12','Inclusive','branch','Inventory','','','','',''),('416773244964723444',347,'41677324495','18','1.00','200','retail','0','2023-02-25 14:28:15','','','','0','Cash',0.00,'200','','','4','','1','2023-02-25 11:28:22','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-2.00','-3','Inclusive','branch','Inventory','','','','',''),('316773253413022343',348,'31677325340','34','1.00','300','retail','0','2023-02-25 14:42:20','','','','0','Cash',0.00,'300','','','3','','1','2023-02-25 11:42:26','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-15.00','-16','Inclusive','branch','Inventory','','','','',''),('316773253765723534',349,'31677325375','12','1.00','200','retail','0','2023-02-25 14:42:55','','','','0','Cash',0.00,'200','','','3','','1','2023-02-25 11:43:00','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-12.00','-13','Inclusive','branch','Inventory','','','','',''),('316773404364242432',350,'31677340436','38','1.00','350','retail','0','2023-02-25 18:53:56','','','','0','Cash',0.00,'350','','','3','','1','2023-02-25 15:54:22','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-30.00','-31','Inclusive','branch','Inventory','','','','',''),('316773404390723034',351,'31677340436','38','1.00','350','retail','0','2023-02-25 18:53:59','','','','0','Cash',0.00,'350','','','3','','1','2023-02-25 15:54:22','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-31.00','-32','Inclusive','branch','Inventory','','','','',''),('316773404433022344',352,'31677340436','38','1.00','350','retail','0','2023-02-25 18:54:02','','','','0','Cash',0.00,'350','','','3','','1','2023-02-25 15:54:22','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-32.00','-33','Inclusive','branch','Inventory','','','','',''),('316773405794242432',353,'31677340578','17','1.00','200','retail','0','2023-02-25 18:56:18','','','','0','Cash',0.00,'200','','','3','','1','2023-02-25 15:56:29','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-7.00','-8','Inclusive','branch','Inventory','','','','',''),('416773416144242432',354,'41677341613','11','1.00','250','retail','0','2023-02-25 19:13:33','','','','0','Cash',0.00,'250','','','4','','1','2023-02-25 16:13:45','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-10.00','-11','Inclusive','branch','Inventory','','','','',''),('416773416214242432',355,'41677341613','34','1.00','300','retail','0','2023-02-25 19:13:41','','','','0','Cash',0.00,'300','','','4','','1','2023-02-25 16:13:45','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-16.00','-17','Inclusive','branch','Inventory','','','','',''),('316773417623421300',356,'31677341761','23','1.00','250','retail','0','2023-02-25 19:16:01','','','','0','Cash',0.00,'250','','','3','','1','2023-02-25 16:16:05','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-6.00','-7','Inclusive','branch','Inventory','','','','',''),('316773438046033321',358,'31677343803','11','1.00','250','retail','0','2023-02-25 19:50:03','','','','0','Cash',0.00,'250','','','3','','1','2023-02-25 16:51:28','','1','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-11.00','-12','Inclusive','branch','Inventory','','','','',''),('316773438843421300',359,'31677343803','26','1.00','100','retail','0','2023-02-25 19:51:24','','','','0','Cash',0.00,'100','','','3','','1','2023-02-25 16:51:28','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-2.00','-3','Inclusive','branch','Inventory','','','','',''),('316773460817210732',360,'31677346081','1','1.00','250','retail','0','2023-02-25 20:28:01','','','','0','Cash',0.00,'250','','','3','','1','2023-02-25 17:28:09','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-28.00','-29','Inclusive','branch','Inventory','','','','',''),('316773493112334224',361,'31677349310','20','1.00','200','retail','0','2023-02-25 21:21:50','','','','0','Cash',0.00,'200','','','3','','1','2023-02-25 18:22:08','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-18.00','-19','Inclusive','branch','Inventory','','','','',''),('316773493220202037',362,'31677349310','23','1.00','250','retail','0','2023-02-25 21:22:01','','','','0','Cash',0.00,'250','','','3','','1','2023-02-25 18:22:08','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-7.00','-8','Inclusive','branch','Inventory','','','','',''),('316773494293022324',363,'31677349429','7','1.00','200','retail','0','2023-02-25 21:23:49','','','','0','Cash',0.00,'200','','','3','','1','2023-02-25 18:24:02','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-21.00','-22','Inclusive','branch','Inventory','','','','',''),('316773494342222032',364,'31677349429','8','1.00','150','retail','0','2023-02-25 21:23:53','','','','0','Cash',0.00,'150','','','3','','1','2023-02-25 18:24:02','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-12.00','-13','Inclusive','branch','Inventory','','','','',''),('316773959163022319',365,'31677395915','1','1.00','250','retail','0','2023-02-26 10:18:35','','','','0','Cash',0.00,'250','','','3','','1','2023-02-26 07:18:46','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-29.00','-30','Inclusive','branch','Inventory','','','','',''),('316773959433421300',366,'31677395942','1','1.00','250','retail','0','2023-02-26 10:19:02','','','','0','Cash',0.00,'250','','','3','','1','2023-02-26 07:19:07','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-30.00','-31','Inclusive','branch','Inventory','','','','',''),('316774005054202432',367,'31677400504','8','1.00','150','retail','0','2023-02-26 11:35:04','','','','0','Cash',0.00,'150','','','3','','1','2023-02-26 08:35:12','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-13.00','-14','Inclusive','branch','Inventory','','','','',''),('416774090099724944',368,'41677409008','30','1.00','330','retail','0','2023-02-26 13:56:48','','','','0','Cash',0.00,'330','','','4','','1','2023-02-26 10:57:06','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-3.00','-4','Inclusive','branch','Inventory','','','','',''),('416774090202222032',369,'41677409008','49','1.00','10','retail','0','2023-02-26 13:57:00','','','','0','Cash',0.00,'10','','','4','','1','2023-02-26 10:57:06','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-11.00','-12','Inclusive','branch','None Inventory','1110','4000','5500','',''),('416774098472964372',371,'41677409846','18','1.00','200','retail','0','2023-02-26 14:10:46','','','','0','Cash',0.00,'200','','','4','','1','2023-02-26 11:10:56','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-3.00','-4','Inclusive','branch','Inventory','','','','',''),('416774127732267372',372,'41677412772','3','1.00','200','retail','0','2023-02-26 14:59:32','','','','0','Cash',0.00,'200','','','4','','1','2023-02-26 11:59:38','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-14.00','-15','Inclusive','branch','Inventory','','','','',''),('416774141110202037',373,'41677414110','33','1.00','300','retail','0','2023-02-26 15:21:50','','','','0','Cash',0.00,'300','','','4','','1','2023-02-26 12:22:01','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-4.00','-5','Inclusive','branch','Inventory','','','','',''),('416774141170202037',374,'41677414110','34','1.00','300','retail','0','2023-02-26 15:21:56','','','','0','Cash',0.00,'300','','','4','','1','2023-02-26 12:22:01','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-18.00','-19','Inclusive','branch','Inventory','','','','',''),('316774151615724534',375,'31677415160','29','1.00','300','retail','0','2023-02-26 15:39:20','','','','0','Cash',0.00,'300','','','3','','1','2023-02-26 12:39:24','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-3.00','-4','Inclusive','branch','Inventory','','','','',''),('316774091781322130',376,'31677409177','34','1.00','300','retail','0','2023-02-26 13:59:37','','','','0','Cash',0.00,'300','','','3','','1','2023-02-26 12:40:19','','5','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-17.00','-18','Inclusive','branch','Inventory','','','','',''),('316774152173737152',377,'31677409177','29','1.00','300','retail','0','2023-02-26 15:40:16','','','','0','Cash',0.00,'300','','','3','','1','2023-02-26 12:40:19','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-4.00','-5','Inclusive','branch','Inventory','','','','',''),('416774198689724944',378,'41677419867','38','1.00','350','retail','0','2023-02-26 16:57:47','','','','0','Cash',0.00,'350','','','4','','1','2023-02-26 13:57:51','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-33.00','-34','Inclusive','branch','Inventory','','','','',''),('416774217792222032',379,'41677421779','31','1.00','200','retail','0','2023-02-26 17:29:39','','','','0','Cash',0.00,'200','','','4','','1','2023-02-26 14:29:53','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-1.00','-2','Inclusive','branch','Inventory','','','','',''),('416774217903421300',380,'41677421779','40','1.00','600','retail','0','2023-02-26 17:29:49','','','','0','Cash',0.00,'600','','','4','','1','2023-02-26 14:29:53','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-12.00','-13','Inclusive','branch','Inventory','','','','',''),('416774229373022339',381,'41677422937','21','1.00','200','retail','0','2023-02-26 17:48:57','','','','0','Cash',0.00,'200','','','4','','1','2023-02-26 14:49:02','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-44.00','-45','Inclusive','branch','Inventory','','','','',''),('416774347603022367',382,'41677434759','38','1.00','350','retail','0','2023-02-26 21:05:59','','','','0','Cash',0.00,'350','','','4','','1','2023-02-26 18:06:03','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-34.00','-35','Inclusive','branch','Inventory','','','','',''),('416774347832222032',383,'41677434782','23','1.00','250','retail','0','2023-02-26 21:06:22','','','','0','Cash',0.00,'250','','','4','','1','2023-02-26 18:06:29','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-8.00','-9','Inclusive','branch','Inventory','','','','',''),('416774349212222032',384,'41677434920','48','1.00','20','retail','0','2023-02-26 21:08:41','','','','0','Cash',0.00,'20','','','4','','1','2023-02-26 18:08:46','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','202.00','201','Inclusive','branch','None Inventory','1110','4000','5500','',''),('416774350362563372',385,'41677435035','7','1.00','200','retail','0','2023-02-26 21:10:35','','','','0','Cash',0.00,'200','','','4','','1','2023-02-26 18:10:44','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-22.00','-23','Inclusive','branch','Inventory','','','','',''),('416774350402333323',386,'41677435035','7','1.00','200','retail','0','2023-02-26 21:10:39','','','','0','Cash',0.00,'200','','','4','','1','2023-02-26 18:10:44','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-23.00','-24','Inclusive','branch','Inventory','','','','',''),('416774361313022331',387,'41677436129','38','1.00','350','retail','0','2023-02-26 21:28:50','','','','0','Cash',0.00,'350','','','4','','1','2023-02-26 18:29:14','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-36.00','-37','Inclusive','branch','Inventory','','','','',''),('416774361503421300',388,'41677436129','48','1.00','20','retail','0','2023-02-26 21:29:09','','','','0','Cash',0.00,'20','','','4','','1','2023-02-26 18:29:14','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','201.00','200','Inclusive','branch','None Inventory','1110','4000','5500','',''),('416774881592222032',389,'41677488159','7','1.00','200','retail','0','2023-02-27 11:55:59','','','','0','Cash',0.00,'200','','','4','','1','2023-02-27 08:56:03','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-24.00','-25','Inclusive','branch','Inventory','','','','',''),('316774884363022334',390,'31677488435','22','1.00','250','retail','0','2023-02-27 12:00:35','','','','0','Cash',0.00,'250','','','3','','1','2023-02-27 09:00:42','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-5.00','-6','Inclusive','branch','Inventory','','','','',''),('316774884392863372',391,'31677488435','21','1.00','200','retail','0','2023-02-27 12:00:38','','','','0','Cash',0.00,'200','','','3','','1','2023-02-27 09:00:42','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-45.00','-46','Inclusive','branch','Inventory','','','','',''),('416774890672222032',392,'41677489066','3','1.00','200','retail','0','2023-02-27 12:11:06','','','','0','Cash',0.00,'200','','','4','','1','2023-02-27 09:11:11','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-15.00','-16','Inclusive','branch','Inventory','','','','',''),('316774901870724034',393,'31677490186','6','1.00','250','retail','0','2023-02-27 12:29:46','','','','0','Cash',0.00,'250','','','3','','1','2023-02-27 09:29:58','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-5.00','-6','Inclusive','branch','Inventory','','','','',''),('316774901900724034',394,'31677490186','6','1.00','250','retail','0','2023-02-27 12:29:50','','','','0','Cash',0.00,'250','','','3','','1','2023-02-27 09:29:58','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-6.00','-7','Inclusive','branch','Inventory','','','','',''),('416774926952724244',395,'41677492694','38','1.00','350','retail','0','2023-02-27 13:11:34','','','','0','Cash',0.00,'350','','','4','','1','2023-02-27 10:11:44','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-36.00','-37','Inclusive','branch','Inventory','','','','',''),('416774952092222032',396,'41677495208','18','1.00','200','retail','0','2023-02-27 13:53:28','','','','0','Cash',0.00,'200','','','4','','1','2023-02-27 10:53:36','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-4.00','-5','Inclusive','branch','Inventory','','','','',''),('416774952127220732',397,'41677495208','18','1.00','200','retail','0','2023-02-27 13:53:32','','','','0','Cash',0.00,'200','','','4','','1','2023-02-27 10:53:36','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-5.00','-6','Inclusive','branch','Inventory','','','','',''),('316774977927724734',398,'31677497791','34','1.00','300','retail','0','2023-02-27 14:36:31','','','','0','Cash',0.00,'300','','','3','','1','2023-02-27 11:36:34','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-19.00','-20','Inclusive','branch','Inventory','','','','',''),('316775017407200732',399,'31677501740','33','1.00','300','retail','0','2023-02-27 15:42:20','','','','0','Cash',0.00,'300','','','3','','1','2023-02-27 12:42:24','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','45.00','44','Inclusive','branch','Inventory','','','','',''),('316775033100765525',400,'31677503309','38','1.00','350','retail','0','2023-02-27 16:08:29','','','','0','Cash',0.00,'350','','','3','','1','2023-02-27 13:08:40','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-37.00','-38','Inclusive','branch','Inventory','','','','',''),('316775033147240732',401,'31677503309','38','1.00','350','retail','0','2023-02-27 16:08:33','','','','0','Cash',0.00,'350','','','3','','1','2023-02-27 13:08:40','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-38.00','-39','Inclusive','branch','Inventory','','','','',''),('316775033183725334',402,'31677503309','38','1.00','350','retail','0','2023-02-27 16:08:37','','','','0','Cash',0.00,'350','','','3','','1','2023-02-27 13:08:40','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-39.00','-40','Inclusive','branch','Inventory','','','','',''),('416775091134202432',403,'41677509112','34','1.00','300','retail','0','2023-02-27 17:45:12','','','','0','Cash',0.00,'300','','','4','','1','2023-02-27 14:45:23','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-20.00','-21','Inclusive','branch','Inventory','','','','',''),('416775091203022321',404,'41677509112','49','1.00','15','retail','0','2023-02-27 17:45:19','','','','10','Cash',0.00,'15','','','4','','1','2023-02-27 14:45:23','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','216.00','215','Inclusive','branch','None Inventory','1110','4000','5500','',''),('416775108620725044',405,'41677510861','2','1.00','200','retail','0','2023-02-27 18:14:21','','','','0','Cash',0.00,'200','','','4','','1','2023-02-27 15:15:03','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-11.00','-12','Inclusive','branch','Inventory','','','','',''),('416775108720202037',406,'41677510861','38','1.00','350','retail','0','2023-02-27 18:14:31','','','','0','Cash',0.00,'350','','','4','','1','2023-02-27 15:15:03','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-40.00','-41','Inclusive','branch','Inventory','','','','',''),('416775108897290732',407,'41677510861','21','1.00','200','retail','0','2023-02-27 18:14:49','','','','0','Cash',0.00,'200','','','4','','1','2023-02-27 15:15:03','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-46.00','-47','Inclusive','branch','Inventory','','','','',''),('416775122742222032',408,'41677512273','38','1.00','350','retail','0','2023-02-27 18:37:53','','','','0','Cash',0.00,'350','','','4','','1','2023-02-27 15:38:03','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-41.00','-42','Inclusive','branch','Inventory','','','','',''),('416775122793739122',409,'41677512273','48','1.00','20','retail','0','2023-02-27 18:37:58','','','','0','Cash',0.00,'20','','','4','','1','2023-02-27 15:38:03','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','200.00','199','Inclusive','branch','None Inventory','1110','4000','5500','',''),('316775126177270732',410,'31677512616','17','1.00','200','retail','0','2023-02-27 18:43:36','','','','0','Cash',0.00,'200','','','3','','1','2023-02-27 15:43:39','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-8.00','-9','Inclusive','branch','Inventory','','','','',''),('316775139352222032',411,'31677513934','21','1.00','200','retail','0','2023-02-27 19:05:34','','','','0','Cash',0.00,'200','','','3','','1','2023-02-27 16:05:38','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-47.00','-48','Inclusive','branch','Inventory','','','','',''),('316775219100202037',412,'31677521910','1','1.00','250','retail','0','2023-02-27 21:18:30','','','','0','Cash',0.00,'250','','','3','','1','2023-02-27 18:19:09','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','19.00','18','Inclusive','branch','Inventory','','','','',''),('316775219207200732',413,'31677521910','6','1.00','250','retail','0','2023-02-27 21:18:40','','','','0','Cash',0.00,'250','','','3','','1','2023-02-27 18:19:09','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-7.00','-8','Inclusive','branch','Inventory','','','','',''),('316775219434222432',414,'31677521910','21','1.00','200','retail','0','2023-02-27 21:19:02','','','','0','Cash',0.00,'200','','','3','','1','2023-02-27 18:19:09','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-48.00','-49','Inclusive','branch','Inventory','','','','',''),('316775223147347332',415,'31677522313','1','1.00','250','retail','0','2023-02-27 21:25:13','','','','0','Cash',0.00,'250','','','3','','1','2023-02-27 18:25:19','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','18.00','17','Inclusive','branch','Inventory','','','','',''),('316775223384222432',416,'31677522337','1','1.00','250','retail','0','2023-02-27 21:25:37','','','','0','Cash',0.00,'250','','','3','','1','2023-02-27 18:25:40','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','17.00','16','Inclusive','branch','Inventory','','','','',''),('316775224833022384',417,'31677522483','7','1.00','200','retail','0','2023-02-27 21:28:03','','','','0','Cash',0.00,'200','','','3','','1','2023-02-27 18:32:33','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-25.00','-26','Inclusive','branch','Inventory','','','','',''),('316775227490202037',418,'31677522483','26','1.00','100','retail','0','2023-02-27 21:32:28','','','','0','Cash',0.00,'100','','','3','','1','2023-02-27 18:32:33','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-3.00','-4','Inclusive','branch','Inventory','','','','',''),('316775230164222432',419,'31677523015','1','1.00','250','retail','0','2023-02-27 21:36:55','','','','0','Cash',0.00,'250','','','3','','1','2023-02-27 18:36:58','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','16.00','15','Inclusive','branch','Inventory','','','','',''),('316775231404222432',420,'31677523140','2','1.00','200','retail','0','2023-02-27 21:39:00','','','','0','Cash',0.00,'200','','','3','','1','2023-02-27 18:39:17','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-12.00','-13','Inclusive','branch','Inventory','','','','',''),('316775241543022351',421,'31677524154','21','1.00','200','retail','0','2023-02-27 21:55:54','','','','0','Cash',0.00,'200','','','3','','1','2023-02-27 18:56:00','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-49.00','-50','Inclusive','branch','Inventory','','','','',''),('316775241572222032',422,'31677524154','21','1.00','200','retail','0','2023-02-27 21:55:57','','','','0','Cash',0.00,'200','','','3','','1','2023-02-27 18:56:00','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-50.00','-51','Inclusive','branch','Inventory','','','','',''),('416775681113022311',423,'41677568090','47','1.00','200','retail','0','2023-02-28 10:08:30','','','','0','Cash',0.00,'200','','','4','','1','2023-02-28 07:09:12','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','59.00','58','Inclusive','branch','Inventory','','','','',''),('416775681417210732',424,'41677568090','7','1.00','200','retail','0','2023-02-28 10:09:00','','','','0','Cash',0.00,'200','','','4','','1','2023-02-28 07:09:12','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-26.00','-27','Inclusive','branch','Inventory','','','','',''),('416775690394262432',425,'41677569039','2','1.00','200','retail','0','2023-02-28 10:23:59','','','','0','Cash',0.00,'200','','','4','','1','2023-02-28 07:24:02','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-13.00','-14','Inclusive','branch','Inventory','','','','',''),('416775700907200732',426,'41677570089','52','1.00','150','retail','0','2023-02-28 10:41:29','','','','200','Cash',0.00,'150','','','4','','1','2023-02-28 07:41:41','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416775701194272432',427,'41677570119','16','1.00','200','retail','0','2023-02-28 10:41:59','','','','0','Cash',0.00,'200','','','4','','1','2023-02-28 07:42:07','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-6.00','-7','Inclusive','branch','Inventory','','','','',''),('416775773330202037',428,'41677577332','18','1.00','200','retail','0','2023-02-28 12:42:12','','','','0','Cash',0.00,'200','','','4','','1','2023-02-28 09:42:20','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-6.00','-7','Inclusive','branch','Inventory','','','','',''),('416775773367725744',429,'41677577332','18','1.00','200','retail','0','2023-02-28 12:42:16','','','','0','Cash',0.00,'200','','','4','','1','2023-02-28 09:42:20','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-7.00','-8','Inclusive','branch','Inventory','','','','',''),('416775788490202037',430,'41677578848','18','1.00','200','retail','0','2023-02-28 13:07:29','','','','0','Cash',0.00,'200','','','4','','1','2023-02-28 10:07:42','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-8.00','-9','Inclusive','branch','Inventory','','','','',''),('416775871617210732',431,'41677587161','21','1.00','200','retail','0','2023-02-28 15:26:01','','','','0','Cash',0.00,'200','','','4','','1','2023-02-28 12:26:09','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-51.00','-52','Inclusive','branch','Inventory','','','','',''),('416775900320202037',432,'41677590031','3','1.00','200','retail','0','2023-02-28 16:13:51','','','','0','Cash',0.00,'200','','','4','','1','2023-02-28 13:13:56','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-16.00','-17','Inclusive','branch','Inventory','','','','',''),('416775929422222032',433,'41677592941','11','1.00','250','retail','0','2023-02-28 17:02:21','','','','0','Cash',0.00,'250','','','4','','1','2023-02-28 14:02:29','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','142.00','141','Inclusive','branch','Inventory','','','','',''),('416775929450661220',434,'41677592941','11','1.00','250','retail','0','2023-02-28 17:02:24','','','','0','Cash',0.00,'250','','','4','','1','2023-02-28 14:02:29','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','141.00','140','Inclusive','branch','Inventory','','','','',''),('416775940027220732',435,'41677594001','31','1.00','200','retail','0','2023-02-28 17:20:01','','','','0','Cash',0.00,'200','','','4','','1','2023-02-28 14:20:06','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-2.00','-3','Inclusive','branch','Inventory','','','','',''),('416776029850202037',436,'41677602984','7','1.00','200','retail','0','2023-02-28 19:49:44','','','','0','Cash',0.00,'200','','','4','','1','2023-02-28 16:50:10','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-27.00','-28','Inclusive','branch','Inventory','','','','',''),('416776030633022360',437,'41677603062','1','1.00','250','retail','0','2023-02-28 19:51:02','','','','0','Cash',0.00,'250','','','4','','1','2023-02-28 16:51:06','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','15.00','14','Inclusive','branch','Inventory','','','','',''),('416776030783022370',438,'41677603078','31','1.00','200','retail','0','2023-02-28 19:51:18','','','','0','Cash',0.00,'200','','','4','','1','2023-02-28 16:51:23','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-3.00','-4','Inclusive','branch','Inventory','','','','',''),('416776031063022301',439,'41677603105','16','1.00','200','retail','0','2023-02-28 19:51:45','','','','0','Cash',0.00,'200','','','4','','1','2023-02-28 16:51:55','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-7.00','-8','Inclusive','branch','Inventory','','','','',''),('416776048357250732',440,'41677604834','39','1.00','300','retail','0','2023-02-28 20:20:34','','','','0','Cash',0.00,'300','','','4','','1','2023-02-28 17:20:38','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','0.00','-1','Inclusive','branch','Inventory','','','','',''),('416776048610202037',441,'41677604860','48','1.00','20','retail','0','2023-02-28 20:21:00','','','','0','Cash',0.00,'20','','','4','','1','2023-02-28 17:21:05','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','419.00','418','Inclusive','branch','None Inventory','1110','4000','5500','',''),('416776072703421300',442,'41677607269','52','1.00','150','retail','0','2023-02-28 21:01:09','','','','200','Cash',0.00,'150','','','4','','1','2023-02-28 18:01:12','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416776103160726044',443,'41677610315','1','1.00','250','retail','0','2023-02-28 21:51:55','','','','0','Cash',0.00,'250','','','4','','1','2023-02-28 18:52:06','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','14.00','13','Inclusive','branch','Inventory','','','','',''),('416776103230726044',444,'41677610315','48','1.00','20','retail','0','2023-02-28 21:52:02','','','','0','Cash',0.00,'20','','','4','','1','2023-02-28 18:52:06','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','418.00','417','Inclusive','branch','None Inventory','1110','4000','5500','',''),('416776111063421300',445,'41677611105','21','1.00','200','retail','0','2023-02-28 22:05:05','','','','0','Cash',0.00,'200','','','4','','1','2023-02-28 19:05:30','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-52.00','-53','Inclusive','branch','Inventory','','','','',''),('416776111260202037',446,'41677611105','48','1.00','20','retail','0','2023-02-28 22:05:25','','','','0','Cash',0.00,'20','','','4','','1','2023-02-28 19:05:30','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','417.00','416','Inclusive','branch','None Inventory','1110','4000','5500','',''),('416776668146726644',447,'41677666813','6','1.00','250','retail','0','2023-03-01 13:33:33','','','','0','Cash',0.00,'250','','','4','','1','2023-03-01 10:33:38','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-8.00','-9','Inclusive','branch','Inventory','','','','',''),('416776676200202037',448,'41677667619','21','1.00','200','retail','0','2023-03-01 13:46:59','','','','0','Cash',0.00,'200','','','4','','1','2023-03-01 10:47:06','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-53.00','-54','Inclusive','branch','Inventory','','','','',''),('416776767043022307',449,'41677676703','36','1.00','400','retail','0','2023-03-01 16:18:23','','','','0','Cash',0.00,'400','','','4','','1','2023-03-01 13:18:48','','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-3.00','-4','Inclusive','branch','Inventory','','','','',''),('416776767234272432',450,'41677676703','43','1.00','600','retail','0','2023-03-01 16:18:42','','','','0','Cash',0.00,'600','','','4','','1','2023-03-01 13:18:48','','9','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-2.00','-3','Inclusive','branch','Inventory','','','','',''),('316776787632866372',451,'31677678763','52','1.00','150','retail','0','2023-03-01 16:52:43','','','','200','Cash',0.00,'150','','','3','','1','2023-03-01 13:52:49','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416776792079726944',452,'41677679206','11','1.00','250','retail','0','2023-03-01 17:00:07','','','','0','Cash',0.00,'250','','','4','','1','2023-03-01 14:00:11','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','140.00','139','Inclusive','branch','Inventory','','','','',''),('316776821223421300',453,'31677682122','23','1.00','250','retail','0','2023-03-01 17:48:42','','','','0','Cash',0.00,'250','','','3','','1','2023-03-01 14:48:46','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-9.00','-10','Inclusive','branch','Inventory','','','','',''),('416776827002222032',454,'41677682699','2','1.00','200','retail','0','2023-03-01 17:58:20','','','','0','Cash',0.00,'200','','','4','','1','2023-03-01 14:58:25','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-14.00','-15','Inclusive','branch','Inventory','','','','',''),('316776860922222032',455,'31677686091','11','1.00','250','retail','0','2023-03-01 18:54:51','','','','0','Cash',0.00,'250','','','3','','1','2023-03-01 15:55:05','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','139.00','138','Inclusive','branch','Inventory','','','','',''),('316776861022660372',456,'31677686091','48','1.00','20','retail','0','2023-03-01 18:55:01','','','','0','Cash',0.00,'20','','','3','','1','2023-03-01 15:55:05','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','416.00','415','Inclusive','branch','None Inventory','1110','4000','5500','',''),('316776925600202037',457,'31677692559','20','1.00','200','retail','0','2023-03-01 20:42:39','','','','0','Cash',0.00,'200','','','3','','1','2023-03-01 17:42:53','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-19.00','-20','Inclusive','branch','Inventory','','','','',''),('316776925692726234',458,'31677692559','48','1.00','20','retail','0','2023-03-01 20:42:49','','','','0','Cash',0.00,'20','','','3','','1','2023-03-01 17:42:53','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','415.00','414','Inclusive','branch','None Inventory','1110','4000','5500','',''),('316776989317210732',459,'31677698930','6','1.00','250','retail','0','2023-03-01 22:28:50','','','','0','Cash',0.00,'250','','','3','','1','2023-03-01 19:28:53','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-9.00','-10','Inclusive','branch','Inventory','','','','',''),('316776989472233083',460,'31677698946','6','1.00','250','retail','0','2023-03-01 22:29:06','','','','0','Cash',0.00,'250','','','3','','1','2023-03-01 19:29:10','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-10.00','-11','Inclusive','branch','Inventory','','','','',''),('316777431663421300',461,'31677743157','12','1.00','200','retail','0','2023-03-02 10:46:06','','','','0','Cash',0.00,'200','','','3','','1','2023-03-02 07:46:40','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-13.00','-14','Inclusive','branch','Inventory','','','','',''),('316777431913421300',462,'31677743157','48','1.00','20','retail','0','2023-03-02 10:46:30','','','','0','Cash',0.00,'20','','','3','','1','2023-03-02 07:46:40','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','414.00','413','Inclusive','branch','None Inventory','1110','4000','5500','',''),('316777432463421300',463,'31677743245','21','1.00','200','retail','0','2023-03-02 10:47:25','','','','0','Cash',0.00,'200','','','3','','1','2023-03-02 07:47:30','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-54.00','-55','Inclusive','branch','Inventory','','','','',''),('316777445842222032',464,'31677744583','21','1.00','200','retail','0','2023-03-02 11:09:43','','','','0','Cash',0.00,'200','','','3','','1','2023-03-02 08:09:47','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-55.00','-56','Inclusive','branch','Inventory','','','','',''),('316777497379727934',465,'31677749736','43','1.00','600','retail','0','2023-03-02 12:35:36','','','','0','Cash',0.00,'600','','','3','','1','2023-03-02 09:39:15','','9','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-3.00','-4','Inclusive','branch','Inventory','','','','',''),('316777499434242432',466,'31677749736','17','1.00','200','retail','0','2023-03-02 12:39:02','','','','0','Cash',0.00,'200','','','3','','1','2023-03-02 09:39:15','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-9.00','-10','Inclusive','branch','Inventory','','','','',''),('316777550520202037',467,'31677755051','1','1.00','250','retail','0','2023-03-02 14:04:11','','','','0','Cash',0.00,'250','','','3','','1','2023-03-02 11:04:17','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','13.00','12','Inclusive','branch','Inventory','','','','',''),('316777567882222032',468,'31677756787','38','1.00','350','retail','0','2023-03-02 14:33:07','','','','0','Cash',0.00,'350','','','3','','1','2023-03-02 11:33:11','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-42.00','-43','Inclusive','branch','Inventory','','','','',''),('316777584182222032',472,'31677758417','31','1.00','200','retail','0','2023-03-02 15:00:17','','','','0','Cash',0.00,'200','','','3','','1','2023-03-02 12:00:57','','4','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-6.00','-7','Inclusive','branch','Inventory','','','','',''),('316777584540202037',473,'31677758417','26','1.00','100','retail','0','2023-03-02 15:00:53','','','','0','Cash',0.00,'100','','','3','','1','2023-03-02 12:00:57','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-4.00','-5','Inclusive','branch','Inventory','','','','',''),('316777584032860372',474,'31677758402','31','1.00','200','retail','0','2023-03-02 15:00:02','','','','0','Cash',0.00,'200','','','3','','1','2023-03-02 12:04:04','','4','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-5.00','-6','Inclusive','branch','Inventory','','','','',''),('316777586423022346',475,'31677758402','26','1.00','100','retail','0','2023-03-02 15:04:01','','','','0','Cash',0.00,'100','','','3','','1','2023-03-02 12:04:04','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-5.00','-6','Inclusive','branch','Inventory','','','','',''),('316777583770202037',476,'31677758371','31','1.00','200','retail','0','2023-03-02 14:59:36','','','','0','Cash',0.00,'200','','','3','','1','2023-03-02 12:05:24','','4','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-4.00','-5','Inclusive','branch','Inventory','','','','',''),('316777587213022327',477,'31677758371','26','1.00','100','retail','0','2023-03-02 15:05:20','','','','0','Cash',0.00,'100','','','3','','1','2023-03-02 12:05:24','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-6.00','-7','Inclusive','branch','Inventory','','','','',''),('316777622710202037',478,'31677762270','34','1.00','300','retail','0','2023-03-02 16:04:30','','','','0','Cash',0.00,'300','','','3','','1','2023-03-02 13:04:52','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-21.00','-22','Inclusive','branch','Inventory','','','','',''),('316777622750202037',479,'31677762270','32','1.00','300','retail','0','2023-03-02 16:04:34','','','','0','Cash',0.00,'300','','','3','','1','2023-03-02 13:04:52','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-6.00','-7','Inclusive','branch','Inventory','','','','',''),('316777622770202037',480,'31677762270','32','1.00','300','retail','0','2023-03-02 16:04:36','','','','0','Cash',0.00,'300','','','3','','1','2023-03-02 13:04:52','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-7.00','-8','Inclusive','branch','Inventory','','','','',''),('316777684355242512',481,'31677768435','18','1.00','200','retail','0','2023-03-02 17:47:15','','','','0','Cash',0.00,'200','','','3','','1','2023-03-02 14:47:41','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-9.00','-10','Inclusive','branch','Inventory','','','','',''),('316777684554262432',482,'31677768435','58','1.00','30','retail','0','2023-03-02 17:47:34','','','','15','Cash',0.00,'30','','','3','','1','2023-03-02 14:47:41','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','51.00','50','Inclusive','branch','Service','1110','4000','5500','',''),('316777684963022394',483,'31677768495','32','1.00','300','retail','0','2023-03-02 17:48:15','','','','0','Cash',0.00,'300','','','3','','1','2023-03-02 14:48:46','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-8.00','-9','Inclusive','branch','Inventory','','','','',''),('316777685042860372',484,'31677768495','37','1.00','400','retail','0','2023-03-02 17:48:24','','','','0','Cash',0.00,'400','','','3','','1','2023-03-02 14:48:46','','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-6.00','-7','Inclusive','branch','Inventory','','','','',''),('316777685087280732',485,'31677768495','37','1.00','400','retail','0','2023-03-02 17:48:28','','','','0','Cash',0.00,'400','','','3','','1','2023-03-02 14:48:46','','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-7.00','-8','Inclusive','branch','Inventory','','','','',''),('316777712912222032',486,'31677771290','21','1.00','200','retail','0','2023-03-02 18:34:50','','','','0','Cash',0.00,'200','','','3','','1','2023-03-02 15:34:54','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-56.00','-57','Inclusive','branch','Inventory','','','','',''),('316777719604272432',487,'31677771959','38','1.00','350','retail','0','2023-03-02 18:45:59','','','','0','Cash',0.00,'350','','','3','','1','2023-03-02 15:46:10','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-43.00','-44','Inclusive','branch','Inventory','','','','',''),('316777820462727234',488,'31677782045','7','1.00','200','retail','0','2023-03-02 21:34:05','','','','0','Cash',0.00,'200','','','3','','1','2023-03-02 18:34:30','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-28.00','-29','Inclusive','branch','Inventory','','','','',''),('316777820624282432',489,'31677782045','8','1.00','150','retail','0','2023-03-02 21:34:21','','','','0','Cash',0.00,'150','','','3','','1','2023-03-02 18:34:30','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-14.00','-15','Inclusive','branch','Inventory','','','','',''),('316777827987280732',490,'31677782797','3','1.00','200','retail','0','2023-03-02 21:46:37','','','','0','Cash',0.00,'200','','','3','','1','2023-03-02 18:46:55','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-17.00','-18','Inclusive','branch','Inventory','','','','',''),('316777828067260732',491,'31677782797','48','1.00','20','retail','0','2023-03-02 21:46:46','','','','0','Cash',0.00,'20','','','3','','1','2023-03-02 18:46:55','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','413.00','412','Inclusive','branch','None Inventory','1110','4000','5500','',''),('316778254063022304',492,'31677825405','54','1.00','350','retail','0','2023-03-03 09:36:45','','','','200','Cash',0.00,'350','','','3','','1','2023-03-03 06:36:52','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Service','1110','4000','5500','',''),('316778312302222032',493,'31677831229','54','1.00','350','retail','0','2023-03-03 11:13:49','','','','200','Cash',0.00,'350','','','3','','1','2023-03-03 08:13:59','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Service','1110','4000','5500','',''),('316778526734252432',494,'31677852672','8','1.00','150','retail','0','2023-03-03 17:11:12','','','','0','Cash',0.00,'150','','','3','','1','2023-03-03 14:11:25','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-15.00','-16','Inclusive','branch','Inventory','','','','',''),('316778540662222032',495,'31677854065','21','1.00','200','retail','0','2023-03-03 17:34:25','','','','0','Cash',0.00,'200','','','3','','1','2023-03-03 14:34:28','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-57.00','-58','Inclusive','branch','Inventory','','','','',''),('416778575387280732',496,'41677857537','21','1.00','200','retail','0','2023-03-03 18:32:17','','','','0','Cash',0.00,'200','','','4','','1','2023-03-03 15:32:31','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-58.00','-59','Inclusive','branch','Inventory','','','','',''),('416778591142222032',497,'41677859113','38','1.00','350','retail','0','2023-03-03 18:58:33','','','','0','Cash',0.00,'350','','','4','','1','2023-03-03 15:58:41','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-44.00','-45','Inclusive','branch','Inventory','','','','',''),('416778641812468372',498,'41677864180','21','1.00','200','retail','0','2023-03-03 20:23:00','','','','0','Cash',0.00,'200','','','4','','1','2023-03-03 17:23:04','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-59.00','-60','Inclusive','branch','Inventory','','','','',''),('416778690664262432',499,'41677869065','21','1.00','200','retail','0','2023-03-03 21:44:25','','','','0','Cash',0.00,'200','','','4','','1','2023-03-03 18:44:56','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-60.00','-61','Inclusive','branch','Inventory','','','','',''),('416778690693022360',500,'41677869065','21','1.00','200','retail','0','2023-03-03 21:44:29','','','','0','Cash',0.00,'200','','','4','','1','2023-03-03 18:44:56','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-61.00','-62','Inclusive','branch','Inventory','','','','',''),('416778690884262432',501,'41677869065','48','1.00','20','retail','0','2023-03-03 21:44:47','','','','0','Cash',0.00,'20','','','4','','1','2023-03-03 18:44:56','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','412.00','411','Inclusive','branch','None Inventory','1110','4000','5500','',''),('416778690922222032',502,'41677869065','48','1.00','20','retail','0','2023-03-03 21:44:51','','','','0','Cash',0.00,'20','','','4','','1','2023-03-03 18:44:56','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','411.00','410','Inclusive','branch','None Inventory','1110','4000','5500','',''),('416778694499728944',503,'41677869448','2','1.00','200','retail','0','2023-03-03 21:50:48','','','','0','Cash',0.00,'200','','','4','','1','2023-03-03 18:50:57','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-15.00','-16','Inclusive','branch','Inventory','','','','',''),('416778694543022354',504,'41677869448','21','1.00','200','retail','0','2023-03-03 21:50:53','','','','0','Cash',0.00,'200','','','4','','1','2023-03-03 18:50:57','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-62.00','-63','Inclusive','branch','Inventory','','','','',''),('416778694683421300',505,'41677869467','21','1.00','200','retail','0','2023-03-03 21:51:07','','','','0','Cash',0.00,'200','','','4','','1','2023-03-03 18:51:17','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-63.00','-64','Inclusive','branch','Inventory','','','','',''),('416778694742222032',506,'41677869467','48','1.00','20','retail','0','2023-03-03 21:51:13','','','','0','Cash',0.00,'20','','','4','','1','2023-03-03 18:51:17','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','410.00','409','Inclusive','branch','None Inventory','1110','4000','5500','',''),('416778699973421000',507,'41677869996','18','1.00','200','retail','0','2023-03-03 21:59:56','','','','0','Cash',0.00,'200','','','4','','1','2023-03-03 19:00:00','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-10.00','-11','Inclusive','branch','Inventory','','','','',''),('416778719023421300',508,'41677871901','34','1.00','300','retail','0','2023-03-03 22:31:41','','','','0','Cash',0.00,'300','','','4','','1','2023-03-03 19:31:59','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-22.00','-23','Inclusive','branch','Inventory','','','','',''),('416778719051728144',509,'41677871901','32','1.00','300','retail','0','2023-03-03 22:31:45','','','','0','Cash',0.00,'300','','','4','','1','2023-03-03 19:31:59','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-9.00','-10','Inclusive','branch','Inventory','','','','',''),('416778719112161372',510,'41677871901','49','1.00','15','retail','0','2023-03-03 22:31:51','','','','10','Cash',0.00,'15','','','4','','1','2023-03-03 19:31:59','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','215.00','214','Inclusive','branch','None Inventory','1110','4000','5500','',''),('416778719162222032',511,'41677871901','49','1.00','15','retail','0','2023-03-03 22:31:55','','','','10','Cash',0.00,'15','','','4','','1','2023-03-03 19:31:59','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','214.00','213','Inclusive','branch','None Inventory','1110','4000','5500','',''),('416778727470223473',512,'41677872746','13','1.00','250','retail','0','2023-03-03 22:45:46','','','','0','Cash',0.00,'250','','','4','','1','2023-03-03 19:45:51','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-1.00','-2','Inclusive','branch','Inventory','','','','',''),('416778732853421300',513,'41677873284','49','1.00','15','retail','0','2023-03-03 22:54:44','','','','10','Cash',0.00,'15','','','4','','1','2023-03-03 19:54:58','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','213.00','212','Inclusive','branch','None Inventory','1110','4000','5500','',''),('416778732953421300',514,'41677873284','34','1.00','300','retail','0','2023-03-03 22:54:55','','','','0','Cash',0.00,'300','','','4','','1','2023-03-03 19:54:58','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-23.00','-24','Inclusive','branch','Inventory','','','','',''),('416779191633022361',515,'41677919162','5','1.00','280','retail','0','2023-03-04 11:39:22','','','','0','Cash',0.00,'280','','','4','','1','2023-03-04 08:39:26','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-1.00','-2','Inclusive','branch','Inventory','','','','',''),('416779191824212432',516,'41677919181','11','1.00','250','retail','0','2023-03-04 11:39:42','','','','0','Cash',0.00,'250','','','4','','1','2023-03-04 08:39:53','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','138.00','137','Inclusive','branch','Inventory','','','','',''),('316779228013421300',517,'31677922800','33','1.00','300','retail','0','2023-03-04 12:40:00','','','','0','Cash',0.00,'300','','','3','','1','2023-03-04 09:40:11','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','44.00','43','Inclusive','branch','Inventory','','','','',''),('416779229363421300',518,'41677922935','38','1.00','350','retail','0','2023-03-04 12:42:15','','','','0','Cash',0.00,'350','','','4','','1','2023-03-04 09:42:22','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-45.00','-46','Inclusive','branch','Inventory','','','','',''),('316779251325729534',519,'31677925126','33','1.00','300','retail','0','2023-03-04 13:18:51','','','','0','Cash',0.00,'300','','','3','','1','2023-03-04 10:19:14','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','42.00','41','Inclusive','branch','Inventory','','','','',''),('316779251487280732',520,'31677925126','49','1.00','15','retail','0','2023-03-04 13:19:08','','','','10','Cash',0.00,'15','','','3','','1','2023-03-04 10:19:14','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','212.00','211','Inclusive','branch','None Inventory','1110','4000','5500','',''),('416779252444222432',521,'41677925243','43','1.00','600','retail','0','2023-03-04 13:20:43','','','','0','Cash',0.00,'600','','','4','','1','2023-03-04 10:20:48','','9','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-4.00','-5','Inclusive','branch','Inventory','','','','',''),('416779285838729844',522,'41677928583','1','1.00','250','retail','0','2023-03-04 14:16:23','','','','0','Cash',0.00,'250','','','4','','1','2023-03-04 11:16:27','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','','','','',''),('416779999732233093',523,'41677999972','52','1.00','150','retail','0','2023-03-05 10:06:12','','','','200','Cash',0.00,'150','','','4','','1','2023-03-05 07:06:17','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416780003270860020',524,'41678000326','48','1.00','20','retail','0','2023-03-05 10:12:06','','','','0','Cash',0.00,'20','','','4','','1','2023-03-05 07:12:12','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','409.00','408','Inclusive','branch','None Inventory','1110','4000','5500','',''),('416780013584202432',525,'41678001358','1','1.00','250','retail','0','2023-03-05 10:29:18','','','','0','Cash',0.00,'250','','','4','','1','2023-03-05 07:29:23','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','','','','',''),('416780028797290732',526,'41678002878','5','1.00','280','retail','0','2023-03-05 10:54:38','','','','0','Cash',0.00,'280','','','4','','1','2023-03-05 07:54:43','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-2.00','-3','Inclusive','branch','Inventory','','','','',''),('416780032973022392',527,'41678003296','2','1.00','200','retail','0','2023-03-05 11:01:36','','','','0','Cash',0.00,'200','','','4','','1','2023-03-05 08:01:40','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-16.00','-17','Inclusive','branch','Inventory','','','','',''),('416780050465720544',528,'41678005045','12','1.00','200','retail','0','2023-03-05 11:30:45','','','','0','Cash',0.00,'200','','','4','','1','2023-03-05 08:30:56','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-14.00','-15','Inclusive','branch','Inventory','','','','',''),('416780050533421300',529,'41678005045','21','1.00','200','retail','0','2023-03-05 11:30:52','','','','0','Cash',0.00,'200','','','4','','1','2023-03-05 08:30:56','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-64.00','-65','Inclusive','branch','Inventory','','','','',''),('416780211210202038',530,'41678021120','21','1.00','200','retail','0','2023-03-05 15:58:40','','','','0','Cash',0.00,'200','','','4','','1','2023-03-05 12:58:44','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-65.00','-66','Inclusive','branch','Inventory','','','','',''),('316780236210202038',531,'31678023620','38','1.00','350','retail','0','2023-03-05 16:40:20','','','','0','Cash',0.00,'350','','','3','','1','2023-03-05 13:40:24','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-46.00','-47','Inclusive','branch','Inventory','','','','',''),('316780255587280732',532,'31678025557','4','1.00','150','retail','0','2023-03-05 17:12:37','','','','0','Cash',0.00,'150','','','3','','1','2023-03-05 14:12:46','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-7.00','-8','Inclusive','branch','Inventory','','','','',''),('316780285273421300',533,'31678028527','33','1.00','300','retail','0','2023-03-05 18:02:07','','','','0','Cash',0.00,'300','','','3','','1','2023-03-05 15:02:19','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','42.00','41','Inclusive','branch','Inventory','','','','',''),('416780291357250732',534,'41678029134','7','1.00','200','retail','0','2023-03-05 18:12:14','','','','0','Cash',0.00,'200','','','4','','1','2023-03-05 15:12:19','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-29.00','-30','Inclusive','branch','Inventory','','','','',''),('316780331567260732',535,'31678033156','11','1.00','250','retail','0','2023-03-05 19:19:16','','','','0','Cash',0.00,'250','','','3','','1','2023-03-05 16:19:23','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','137.00','136','Inclusive','branch','Inventory','','','','',''),('316780332154232432',536,'31678033214','31','1.00','200','retail','0','2023-03-05 19:20:14','','','','0','Cash',0.00,'200','','','3','','1','2023-03-05 16:20:17','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-7.00','-8','Inclusive','branch','Inventory','','','','',''),('316780332453720334',537,'31678033245','8','1.00','150','retail','0','2023-03-05 19:20:45','','','','0','Cash',0.00,'150','','','3','','1','2023-03-05 16:20:48','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-16.00','-17','Inclusive','branch','Inventory','','','','',''),('316780366912222032',538,'31678036690','21','1.00','200','retail','0','2023-03-05 20:18:11','','','','0','Cash',0.00,'200','','','3','','1','2023-03-05 17:18:18','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-66.00','-67','Inclusive','branch','Inventory','','','','',''),('316780366957250732',539,'31678036690','15','1.00','200','retail','0','2023-03-05 20:18:14','','','','0','Cash',0.00,'200','','','3','','1','2023-03-05 17:18:18','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','0.00','-1','Inclusive','branch','Inventory','','','','',''),('316780431433720334',540,'31678043143','49','1.00','15','retail','0','2023-03-05 22:05:43','','','','10','Cash',0.00,'15','','','3','','1','2023-03-05 19:05:56','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','211.00','210','Inclusive','branch','None Inventory','1110','4000','5500','',''),('316780431503720334',541,'31678043143','34','1.00','300','retail','0','2023-03-05 22:05:49','','','','0','Cash',0.00,'300','','','3','','1','2023-03-05 19:05:56','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-24.00','-25','Inclusive','branch','Inventory','','','','',''),('316780439287280732',543,'31678043927','7','1.00','200','retail','0','2023-03-05 22:18:47','','','','0','Cash',0.00,'200','','','3','','1','2023-03-05 19:18:51','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-30.00','-31','Inclusive','branch','Inventory','','','','',''),('316780432713421300',544,'31678043271','8','1.00','150','retail','0','2023-03-05 22:07:51','','','','0','Cash',0.00,'150','','','3','','1','2023-03-05 19:29:19','','1','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-17.00','-18','Inclusive','branch','Inventory','','','','',''),('316780445534242432',545,'31678043271','8','1.00','150','retail','0','2023-03-05 22:29:13','','','','0','Cash',0.00,'150','','','3','','1','2023-03-05 19:29:19','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-18.00','-19','Inclusive','branch','Inventory','','','','',''),('316780926332222032',546,'31678092632','21','1.00','200','retail','0','2023-03-06 11:50:32','','','','0','Cash',0.00,'200','','','3','','1','2023-03-06 08:50:39','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-67.00','-68','Inclusive','branch','Inventory','','','','',''),('316780926493421300',547,'31678092648','21','1.00','200','retail','0','2023-03-06 11:50:48','','','','0','Cash',0.00,'200','','','3','','1','2023-03-06 08:50:51','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-68.00','-69','Inclusive','branch','Inventory','','','','',''),('316780939762367382',548,'31678093976','3','1.00','200','retail','0','2023-03-06 12:12:56','','','','0','Cash',0.00,'200','','','3','','1','2023-03-06 09:12:59','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-18.00','-19','Inclusive','branch','Inventory','','','','',''),('416781180242222032',549,'41678118023','21','1.00','200','retail','0','2023-03-06 18:53:43','','','','0','Cash',0.00,'200','','','4','','1','2023-03-06 15:53:53','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-69.00','-70','Inclusive','branch','Inventory','','','','',''),('416781193282962382',550,'41678119328','21','1.00','200','retail','0','2023-03-06 19:15:28','','','','0','Cash',0.00,'200','','','4','','1','2023-03-06 16:15:34','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-70.00','-71','Inclusive','branch','Inventory','','','','',''),('416781206337230732',551,'41678120632','20','1.00','200','retail','0','2023-03-06 19:37:12','','','','0','Cash',0.00,'200','','','4','','1','2023-03-06 16:37:21','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-20.00','-21','Inclusive','branch','Inventory','','','','',''),('416781225734222432',552,'41678122572','38','1.00','350','retail','0','2023-03-06 20:09:32','','','','0','Cash',0.00,'350','','','4','','1','2023-03-06 17:09:36','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-47.00','-48','Inclusive','branch','Inventory','','','','',''),('416781302893421300',553,'41678130288','30','1.00','330','retail','0','2023-03-06 22:18:08','','','','0','Cash',0.00,'330','','','4','','1','2023-03-06 19:18:13','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-4.00','-5','Inclusive','branch','Inventory','','','','',''),('416781702910202038',554,'41678170290','23','1.00','250','retail','0','2023-03-07 09:24:50','','','','0','Cash',0.00,'250','','','4','','1','2023-03-07 06:24:55','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-10.00','-11','Inclusive','branch','Inventory','','','','',''),('416781720740202038',555,'41678172073','7','1.00','200','retail','0','2023-03-07 09:54:33','','','','0','Cash',0.00,'200','','','4','','1','2023-03-07 06:54:38','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-31.00','-32','Inclusive','branch','Inventory','','','','',''),('416781753187280732',556,'41678175318','52','1.00','150','retail','0','2023-03-07 10:48:38','','','','200','Cash',0.00,'150','','','4','','1','2023-03-07 07:48:43','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416781829032721244',557,'41678182902','3','1.00','200','retail','0','2023-03-07 12:55:02','','','','0','Cash',0.00,'200','','','4','','1','2023-03-07 09:56:20','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-19.00','-20','Inclusive','branch','Inventory','','','','',''),('416781838733421300',558,'41678183873','33','1.00','300','retail','0','2023-03-07 13:11:13','','','','0','Cash',0.00,'300','','','4','','1','2023-03-07 10:11:29','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','41.00','40','Inclusive','branch','Inventory','','','','',''),('416781838867260732',559,'41678183873','49','1.00','15','retail','0','2023-03-07 13:11:25','','','','10','Cash',0.00,'15','','','4','','1','2023-03-07 10:11:29','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','210.00','209','Inclusive','branch','None Inventory','1110','4000','5500','',''),('416781881652866382',560,'41678188164','29','1.00','300','retail','0','2023-03-07 14:22:44','','','','0','Cash',0.00,'300','','','4','','1','2023-03-07 11:22:54','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-5.00','-6','Inclusive','branch','Inventory','','','','',''),('416781918193022318',561,'41678191818','52','1.00','150','retail','0','2023-03-07 15:23:38','','','','200','Cash',0.00,'150','','','4','','1','2023-03-07 12:23:53','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416781970403022340',562,'41678197040','38','1.00','350','retail','0','2023-03-07 16:50:40','','','','0','Cash',0.00,'350','','','4','','1','2023-03-07 13:50:51','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-48.00','-49','Inclusive','branch','Inventory','','','','',''),('416781970432764382',563,'41678197040','38','1.00','350','retail','0','2023-03-07 16:50:43','','','','0','Cash',0.00,'350','','','4','','1','2023-03-07 13:50:51','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-49.00','-50','Inclusive','branch','Inventory','','','','',''),('416781971022760382',564,'41678197102','11','1.00','250','retail','0','2023-03-07 16:51:42','','','','0','Cash',0.00,'250','','','4','','1','2023-03-07 13:51:46','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','136.00','135','Inclusive','branch','Inventory','','','','',''),('416781997549721944',565,'41678199753','16','1.00','200','retail','0','2023-03-07 17:35:53','','','','0','Cash',0.00,'200','','','4','','1','2023-03-07 14:35:59','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-8.00','-9','Inclusive','branch','Inventory','','','','',''),('416781998503421300',566,'41678199849','47','1.00','200','retail','0','2023-03-07 17:37:29','','','','0','Cash',0.00,'200','','','4','','1','2023-03-07 14:37:36','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','58.00','57','Inclusive','branch','Inventory','','','','',''),('416781998522965382',567,'41678199849','46','1.00','200','retail','0','2023-03-07 17:37:31','','','','0','Cash',0.00,'200','','','4','','1','2023-03-07 14:37:36','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','59.00','58','Inclusive','branch','Inventory','','','','',''),('416782005724202432',568,'41678200571','18','1.00','200','retail','0','2023-03-07 17:49:31','','','','0','Cash',0.00,'200','','','4','','1','2023-03-07 14:49:50','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-11.00','-12','Inclusive','branch','Inventory','','','','',''),('416782027700202038',569,'41678202769','21','1.00','200','retail','0','2023-03-07 18:26:09','','','','0','Cash',0.00,'200','','','4','','1','2023-03-07 15:26:13','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-71.00','-72','Inclusive','branch','Inventory','','','','',''),('416782027852222032',570,'41678202784','18','1.00','200','retail','0','2023-03-07 18:26:24','','','','0','Cash',0.00,'200','','','4','','1','2023-03-07 15:26:28','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-12.00','-13','Inclusive','branch','Inventory','','','','',''),('416782046124722444',571,'41678204611','18','1.00','200','retail','0','2023-03-07 18:56:51','','','','0','Cash',0.00,'200','','','4','','1','2023-03-07 15:56:54','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-13.00','-14','Inclusive','branch','Inventory','','','','',''),('416782046314202432',572,'41678204630','17','1.00','200','retail','0','2023-03-07 18:57:10','','','','0','Cash',0.00,'200','','','4','','1','2023-03-07 15:57:13','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-10.00','-11','Inclusive','branch','Inventory','','','','',''),('416782049847240732',573,'41678204983','58','1.00','30','retail','0','2023-03-07 19:03:03','','','','15','Cash',0.00,'30','','','4','','1','2023-03-07 16:03:07','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','51.00','50','Inclusive','branch','Service','1110','4000','5500','',''),('416782578030833070',574,'41678257802','23','1.00','250','retail','0','2023-03-08 09:43:22','','','','0','Cash',0.00,'250','','','4','','1','2023-03-08 06:43:28','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-11.00','-12','Inclusive','branch','Inventory','','','','',''),('416782781403022341',575,'41678278139','52','1.00','150','retail','0','2023-03-08 15:22:19','','','','200','Cash',0.00,'150','','','4','','1','2023-03-08 12:22:24','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416782844524282432',576,'41678284451','36','1.00','400','retail','0','2023-03-08 17:07:31','','','','0','Cash',0.00,'400','','','4','','1','2023-03-08 14:07:44','','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-4.00','-5','Inclusive','branch','Inventory','','','','',''),('416782844613421300',577,'41678284451','21','1.00','200','retail','0','2023-03-08 17:07:40','','','','0','Cash',0.00,'200','','','4','','1','2023-03-08 14:07:44','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-72.00','-73','Inclusive','branch','Inventory','','','','',''),('316782878032760382',578,'31678287802','11','1.00','250','retail','0','2023-03-08 18:03:22','','','','0','Cash',0.00,'250','','','3','','1','2023-03-08 15:03:34','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','135.00','134','Inclusive','branch','Inventory','','','','',''),('316782878582222032',579,'31678287857','16','1.00','200','retail','0','2023-03-08 18:04:17','','','','0','Cash',0.00,'200','','','3','','1','2023-03-08 15:04:21','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-9.00','-10','Inclusive','branch','Inventory','','','','',''),('416782882084282432',580,'41678288207','8','1.00','150','retail','0','2023-03-08 18:10:07','','','','0','Cash',0.00,'150','','','4','','1','2023-03-08 15:10:15','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-19.00','-20','Inclusive','branch','Inventory','','','','',''),('416782882118722844',581,'41678288207','8','1.00','150','retail','0','2023-03-08 18:10:11','','','','0','Cash',0.00,'150','','','4','','1','2023-03-08 15:10:15','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-20.00','-21','Inclusive','branch','Inventory','','','','',''),('316782883783421300',582,'31678288377','21','1.00','200','retail','0','2023-03-08 18:12:58','','','','0','Cash',0.00,'200','','','3','','1','2023-03-08 15:13:03','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-73.00','-74','Inclusive','branch','Inventory','','','','',''),('316782921693421300',583,'31678292169','8','1.00','150','retail','0','2023-03-08 19:16:09','','','','0','Cash',0.00,'150','','','3','','1','2023-03-08 16:16:22','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-21.00','-22','Inclusive','branch','Inventory','','','','',''),('316782921733022371',584,'31678292169','8','1.00','150','retail','0','2023-03-08 19:16:12','','','','0','Cash',0.00,'150','','','3','','1','2023-03-08 16:16:22','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-22.00','-23','Inclusive','branch','Inventory','','','','',''),('316782956662222032',585,'31678295665','20','1.00','200','retail','0','2023-03-08 20:14:25','','','','0','Cash',0.00,'200','','','3','','1','2023-03-08 17:14:28','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-21.00','-22','Inclusive','branch','Inventory','','','','',''),('316782995762222032',586,'31678299575','2','1.00','200','retail','0','2023-03-08 21:19:35','','','','0','Cash',0.00,'200','','','3','','1','2023-03-08 18:19:53','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-17.00','-18','Inclusive','branch','Inventory','','','','',''),('316782995899722934',587,'31678299575','48','1.00','20','retail','0','2023-03-08 21:19:48','','','','0','Cash',0.00,'20','','','3','','1','2023-03-08 18:19:53','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','408.00','407','Inclusive','branch','None Inventory','1110','4000','5500','',''),('316783023970202038',588,'31678302396','1','1.00','250','retail','0','2023-03-08 22:06:36','','','','0','Cash',0.00,'250','','','3','','1','2023-03-08 19:06:39','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','','','','',''),('316783517253022327',589,'31678351724','18','1.00','200','retail','0','2023-03-09 11:48:44','','','','0','Cash',0.00,'200','','','3','','1','2023-03-09 08:48:52','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-14.00','-15','Inclusive','branch','Inventory','','','','',''),('316783517297290732',590,'31678351724','18','1.00','200','retail','0','2023-03-09 11:48:48','','','','0','Cash',0.00,'200','','','3','','1','2023-03-09 08:48:52','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-15.00','-16','Inclusive','branch','Inventory','','','','',''),('316783655673421300',592,'31678365566','11','1.00','250','retail','0','2023-03-09 15:39:26','','','','0','Cash',0.00,'250','','','3','','1','2023-03-09 12:39:31','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','134.00','133','Inclusive','branch','Inventory','','','','',''),('316783655347240732',593,'31678365533','3','1.00','200','retail','0','2023-03-09 15:38:53','','','','0','Cash',0.00,'200','','','3','','1','2023-03-09 14:08:47','','1','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-20.00','-21','Inclusive','branch','Inventory','','','','',''),('316783709188948332',594,'31678365533','15','1.00','200','retail','0','2023-03-09 17:08:37','','','','0','Cash',0.00,'200','','','3','','1','2023-03-09 14:08:47','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-1.00','-2','Inclusive','branch','Inventory','','','','',''),('316783709227220732',595,'31678365533','15','1.00','200','retail','0','2023-03-09 17:08:41','','','','0','Cash',0.00,'200','','','3','','1','2023-03-09 14:08:47','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-2.00','-3','Inclusive','branch','Inventory','','','','',''),('316783729913022399',596,'31678372990','17','1.00','200','retail','0','2023-03-09 17:43:10','','','','0','Cash',0.00,'200','','','3','','1','2023-03-09 14:43:14','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-11.00','-12','Inclusive','branch','Inventory','','','','',''),('316783835933723334',597,'31678383592','38','1.00','350','retail','0','2023-03-09 20:39:52','','','','0','Cash',0.00,'350','','','3','','1','2023-03-09 17:40:06','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-50.00','-51','Inclusive','branch','Inventory','','','','',''),('316783835963421300',598,'31678383592','38','1.00','350','retail','0','2023-03-09 20:39:56','','','','0','Cash',0.00,'350','','','3','','1','2023-03-09 17:40:06','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-51.00','-52','Inclusive','branch','Inventory','','','','',''),('316783904472064382',599,'31678390446','59','1.00','150','retail','0','2023-03-09 22:34:06','','','','100','Cash',0.00,'150','','','3','','1','2023-03-09 19:34:12','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Service','1110','4000','5500','',''),('316783911080202038',600,'31678391107','52','1.00','150','retail','0','2023-03-09 22:45:07','','','','200','Cash',0.00,'150','','','3','','1','2023-03-09 19:45:48','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316783911191233123',601,'31678391107','52','1.00','150','retail','0','2023-03-09 22:45:18','','','','200','Cash',0.00,'150','','','3','','1','2023-03-09 19:45:48','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316783911282162382',602,'31678391107','52','1.00','150','retail','0','2023-03-09 22:45:27','','','','200','Cash',0.00,'150','','','3','','1','2023-03-09 19:45:48','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316783911324292432',603,'31678391107','52','1.00','150','retail','0','2023-03-09 22:45:32','','','','200','Cash',0.00,'150','','','3','','1','2023-03-09 19:45:48','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316783922157250732',604,'31678392214','53','1.00','200','retail','0','2023-03-09 23:03:34','','','','150','Cash',0.00,'200','','','3','','1','2023-03-09 20:03:38','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Inventory','1110','4000','5500','',''),('316784375817210732',606,'31678437580','54','1.00','350','retail','0','2023-03-10 11:39:40','','','','200','Cash',0.00,'350','','','3','','1','2023-03-10 09:04:37','','10','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Service','1110','4000','5500','',''),('316784390720202038',607,'31678437580','47','1.00','200','retail','0','2023-03-10 12:04:31','','','','0','Cash',0.00,'200','','','3','','1','2023-03-10 09:04:37','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','57.00','56','Inclusive','branch','Inventory','','','','',''),('316784532313724334',608,'31678453230','21','1.00','200','retail','0','2023-03-10 16:00:31','','','','0','Cash',0.00,'200','','','3','','1','2023-03-10 13:00:37','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-74.00','-75','Inclusive','branch','Inventory','','','','',''),('416784536063724344',609,'41678453606','52','1.00','150','retail','0','2023-03-10 16:06:46','','','','200','Cash',0.00,'150','','','4','','1','2023-03-10 13:06:49','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416784595110202038',610,'41678459510','36','1.00','400','retail','0','2023-03-10 17:45:10','','','','0','Cash',0.00,'400','','','4','','1','2023-03-10 14:45:14','','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-5.00','-6','Inclusive','branch','Inventory','','','','',''),('316784596312222032',611,'31678459630','8','1.00','150','retail','0','2023-03-10 17:47:10','','','','0','Cash',0.00,'150','','','3','','1','2023-03-10 14:47:15','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-23.00','-24','Inclusive','branch','Inventory','','','','',''),('316784603082222032',612,'31678460308','20','1.00','200','retail','0','2023-03-10 17:58:28','','','','0','Cash',0.00,'200','','','3','','1','2023-03-10 14:58:32','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-22.00','-23','Inclusive','branch','Inventory','','','','',''),('416784613634262432',613,'41678461362','5','1.00','280','retail','0','2023-03-10 18:16:02','','','','0','Cash',0.00,'280','','','4','','1','2023-03-10 15:16:05','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-3.00','-4','Inclusive','branch','Inventory','','','','',''),('416784614022222032',614,'41678461401','38','1.00','350','retail','0','2023-03-10 18:16:41','','','','0','Cash',0.00,'350','','','4','','1','2023-03-10 15:16:45','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-52.00','-53','Inclusive','branch','Inventory','','','','',''),('316784619967260732',615,'31678461995','49','1.00','15','retail','0','2023-03-10 18:26:35','','','','10','Cash',0.00,'15','','','3','','1','2023-03-10 15:26:39','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','209.00','208','Inclusive','branch','None Inventory','1110','4000','5500','',''),('316784620220202038',616,'31678462022','34','1.00','300','retail','0','2023-03-10 18:27:02','','','','0','Cash',0.00,'300','','','3','','1','2023-03-10 15:27:05','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-25.00','-26','Inclusive','branch','Inventory','','','','',''),('316784624614310623',617,'31678462460','13','1.00','250','retail','0','2023-03-10 18:34:20','','','','0','Cash',0.00,'250','','','3','','1','2023-03-10 15:34:24','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-2.00','-3','Inclusive','branch','Inventory','','','','',''),('316784625417210732',618,'31678462541','1','1.00','250','retail','0','2023-03-10 18:35:41','','','','0','Cash',0.00,'250','','','3','','1','2023-03-10 15:35:44','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','','','','',''),('316784640013421300',619,'31678464000','46','1.00','200','retail','0','2023-03-10 19:00:00','','','','0','Cash',0.00,'200','','','3','','1','2023-03-10 16:00:03','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','58.00','57','Inclusive','branch','Inventory','','','','',''),('416784643504724444',620,'41678464349','38','1.00','350','retail','0','2023-03-10 19:05:49','','','','0','Cash',0.00,'350','','','4','','1','2023-03-10 16:05:52','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-53.00','-54','Inclusive','branch','Inventory','','','','',''),('416784681983421300',621,'41678468197','7','1.00','200','retail','0','2023-03-10 20:09:57','','','','0','Cash',0.00,'200','','','4','','1','2023-03-10 17:10:01','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-32.00','-33','Inclusive','branch','Inventory','','','','',''),('416784694170202038',622,'41678469417','38','1.00','350','retail','0','2023-03-10 20:30:17','','','','0','Cash',0.00,'350','','','4','','1','2023-03-10 17:30:21','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-54.00','-55','Inclusive','branch','Inventory','','','','',''),('416784694853022384',627,'41678469484','11','1.00','250','retail','0','2023-03-10 20:31:24','','','','0','Cash',0.00,'250','','','4','','1','2023-03-10 17:42:32','','1','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','133.00','132','Inclusive','branch','Inventory','','','','',''),('416784694969724944',628,'41678469484','9','1.00','200','retail','0','2023-03-10 20:31:35','','','','0','Cash',0.00,'200','','','4','','1','2023-03-10 17:42:32','','1','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-4.00','-5','Inclusive','branch','Inventory','','','','',''),('416784695084262432',629,'41678469484','3','1.00','200','retail','0','2023-03-10 20:31:47','','','','0','Cash',0.00,'200','','','4','','1','2023-03-10 17:42:32','','1','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-21.00','-22','Inclusive','branch','Inventory','','','','',''),('416784695184223080',630,'41678469484','24','1.00','100','retail','0','2023-03-10 20:31:57','','','','0','Cash',0.00,'100','','','4','','1','2023-03-10 17:42:32','','3','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-1.00','-2','Inclusive','branch','Inventory','','','','',''),('416784701340724044',631,'41678469484','26','1.00','100','retail','0','2023-03-10 20:42:14','','','','0','Cash',0.00,'100','','','4','','1','2023-03-10 17:42:32','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-7.00','-8','Inclusive','branch','Inventory','','','','',''),('416784704702222032',632,'41678470470','48','1.00','20','retail','0','2023-03-10 20:47:50','','','','0','Cash',0.00,'20','','','4','','1','2023-03-10 17:47:58','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','407.00','406','Inclusive','branch','None Inventory','1110','4000','5500','',''),('416784704722067382',633,'41678470470','48','1.00','20','retail','0','2023-03-10 20:47:52','','','','0','Cash',0.00,'20','','','4','','1','2023-03-10 17:47:58','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','406.00','405','Inclusive','branch','None Inventory','1110','4000','5500','',''),('416784704760202038',634,'41678470470','48','1.00','20','retail','0','2023-03-10 20:47:55','','','','0','Cash',0.00,'20','','','4','','1','2023-03-10 17:47:58','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','405.00','404','Inclusive','branch','None Inventory','1110','4000','5500','',''),('416784737962369382',635,'41678473796','38','1.00','350','retail','0','2023-03-10 21:43:16','','','','0','Cash',0.00,'350','','','4','','1','2023-03-10 18:43:20','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-55.00','-56','Inclusive','branch','Inventory','','','','',''),('416784738262362382',636,'41678473825','55','1.00','200','retail','0','2023-03-10 21:43:45','','','','150','Cash',0.00,'200','','','4','','1','2023-03-10 18:43:49','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','300.00','299','Inclusive','branch','Inventory','1110','4000','5500','',''),('416784738954272432',637,'41678473895','14','1.00','200','retail','0','2023-03-10 21:44:55','','','','0','Cash',0.00,'200','','','4','','1','2023-03-10 18:44:59','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','0.00','-1','Inclusive','branch','Inventory','','','','',''),('416784739423421300',638,'41678473941','47','1.00','200','retail','0','2023-03-10 21:45:41','','','','0','Cash',0.00,'200','','','4','','1','2023-03-10 18:45:47','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','56.00','55','Inclusive','branch','Inventory','','','','',''),('416784739457250732',639,'41678473941','46','1.00','200','retail','0','2023-03-10 21:45:45','','','','0','Cash',0.00,'200','','','4','','1','2023-03-10 18:45:47','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','57.00','56','Inclusive','branch','Inventory','','','','',''),('416784759580202038',640,'41678475958','38','1.00','350','retail','0','2023-03-10 22:19:18','','','','0','Cash',0.00,'350','','','4','','1','2023-03-10 19:19:31','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-56.00','-57','Inclusive','branch','Inventory','','','','',''),('416784771720202038',641,'41678477171','29','1.00','300','retail','0','2023-03-10 22:39:31','','','','0','Cash',0.00,'300','','','4','','1','2023-03-10 19:39:44','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-6.00','-7','Inclusive','branch','Inventory','','','','',''),('416784771810202038',642,'41678477171','49','1.00','15','retail','0','2023-03-10 22:39:41','','','','10','Cash',0.00,'15','','','4','','1','2023-03-10 19:39:44','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','208.00','207','Inclusive','branch','None Inventory','1110','4000','5500','',''),('416784775933909222',643,'41678477592','24','1.00','100','retail','0','2023-03-10 22:46:32','','','','0','Cash',0.00,'100','','','4','','1','2023-03-10 19:46:37','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-2.00','-3','Inclusive','branch','Inventory','','','','',''),('416784778637230732',644,'41678477862','34','1.00','300','retail','0','2023-03-10 22:51:02','','','','0','Cash',0.00,'300','','','4','','1','2023-03-10 19:51:15','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-26.00','-27','Inclusive','branch','Inventory','','','','',''),('416784778713421300',645,'41678477862','49','1.00','15','retail','0','2023-03-10 22:51:11','','','','10','Cash',0.00,'15','','','4','','1','2023-03-10 19:51:15','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','207.00','206','Inclusive','branch','None Inventory','1110','4000','5500','',''),('416785186640202038',646,'41678518659','47','1.00','200','retail','0','2023-03-11 10:11:03','','','','0','Cash',0.00,'200','','','4','','1','2023-03-11 07:27:56','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','55.00','54','Inclusive','branch','Inventory','','','','',''),('416785186687280732',647,'41678518659','46','1.00','200','retail','0','2023-03-11 10:11:07','','','','0','Cash',0.00,'200','','','4','','1','2023-03-11 07:27:56','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','55.00','54','Inclusive','branch','Inventory','','','','',''),('416785186727220732',648,'41678518659','47','1.00','200','retail','0','2023-03-11 10:11:11','','','','0','Cash',0.00,'200','','','4','','1','2023-03-11 07:27:56','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','54.00','53','Inclusive','branch','Inventory','','','','',''),('416785186772867382',649,'41678518659','46','1.00','200','retail','0','2023-03-11 10:11:16','','','','0','Cash',0.00,'200','','','4','','1','2023-03-11 07:27:56','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','54.00','53','Inclusive','branch','Inventory','','','','',''),('416785186828725844',650,'41678518659','47','1.00','200','retail','0','2023-03-11 10:11:21','','','','0','Cash',0.00,'200','','','4','','1','2023-03-11 07:27:56','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','53.00','52','Inclusive','branch','Inventory','','','','',''),('416785186902222032',651,'41678518659','46','1.00','200','retail','0','2023-03-11 10:11:29','','','','0','Cash',0.00,'200','','','4','','1','2023-03-11 07:27:56','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','53.00','52','Inclusive','branch','Inventory','','','','',''),('416785186952222032',652,'41678518659','47','1.00','200','retail','0','2023-03-11 10:11:34','','','','0','Cash',0.00,'200','','','4','','1','2023-03-11 07:27:56','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','52.00','51','Inclusive','branch','Inventory','','','','',''),('416785187102222032',653,'41678518659','38','1.00','350','retail','0','2023-03-11 10:11:49','','','','0','Cash',0.00,'350','','','4','','1','2023-03-11 07:27:56','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-57.00','-58','Inclusive','branch','Inventory','','','','',''),('416785192247240732',654,'41678518659','14','1.00','200','retail','0','2023-03-11 10:20:23','','','','0','Cash',0.00,'200','','','4','','1','2023-03-11 07:27:56','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-1.00','-2','Inclusive','branch','Inventory','','','','',''),('416785197333421300',655,'41678519732','52','1.00','150','retail','0','2023-03-11 10:28:52','','','','200','Cash',0.00,'150','','','4','','1','2023-03-11 07:29:02','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416785209723022379',656,'41678520971','38','1.00','350','retail','0','2023-03-11 10:49:31','','','','0','Cash',0.00,'350','','','4','','1','2023-03-11 07:49:36','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-58.00','-59','Inclusive','branch','Inventory','','','','',''),('416785297022222032',657,'41678529701','20','1.00','200','retail','0','2023-03-11 13:15:01','','','','0','Cash',0.00,'200','','','4','','1','2023-03-11 10:15:14','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-23.00','-24','Inclusive','branch','Inventory','','','','',''),('416785297093022307',658,'41678529701','43','1.00','600','retail','0','2023-03-11 13:15:09','','','','0','Cash',0.00,'600','','','4','','1','2023-03-11 10:15:14','','9','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-5.00','-6','Inclusive','branch','Inventory','','','','',''),('416785384202222032',659,'41678538419','34','1.00','300','retail','0','2023-03-11 15:40:19','','','','0','Cash',0.00,'300','','','4','','1','2023-03-11 12:40:23','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-27.00','-28','Inclusive','branch','Inventory','','','','',''),('316785464277270732',660,'31678546426','15','1.00','200','retail','0','2023-03-11 17:53:47','','','','0','Cash',27.59,'200','','','3','','1','2023-03-11 15:20:56','','2','new','1','new','pcs','','','','','','0','','','EXEMPTED',172.41,'','-3.00','-4','Inclusive','branch','Inventory','','','','',''),('516785482982222032',661,'51678548297','56','1.00','400','retail','0','2023-03-11 18:24:58','','','','200','Cash',0.00,'400','','','5','','1','2023-03-11 15:25:11','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','20.00','19','Inclusive','branch','Service','1110','4000','5500','',''),('316785488297290732',662,'31678548828','23','1.00','250','retail','0','2023-03-11 18:33:48','','','','0','Cash',0.00,'250','','','3','','1','2023-03-11 15:34:04','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-12.00','-13','Inclusive','branch','Inventory','','','','',''),('416785497673421300',663,'41678549766','54','1.00','350','retail','0','2023-03-11 18:49:26','','','','200','Cash',0.00,'350','','','4','','1','2023-03-11 15:50:01','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Service','1110','4000','5500','',''),('316785504310202038',664,'31678550430','1','1.00','250','retail','0','2023-03-11 19:00:30','','','','0','Cash',0.00,'250','','','3','','1','2023-03-11 16:01:17','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','','','','',''),('316785504434252432',665,'31678550430','48','1.00','20','retail','0','2023-03-11 19:00:42','','','','0','Cash',0.00,'20','','','3','','1','2023-03-11 16:01:17','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','404.00','403','Inclusive','branch','None Inventory','1110','4000','5500','',''),('316785506690202038',666,'31678550668','1','1.00','250','retail','0','2023-03-11 19:04:28','','','','0','Cash',0.00,'250','','','3','','1','2023-03-11 16:04:43','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','','','','',''),('316785507362063382',667,'31678550736','8','1.00','150','retail','0','2023-03-11 19:05:36','','','','0','Cash',0.00,'150','','','3','','1','2023-03-11 16:05:45','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-24.00','-25','Inclusive','branch','Inventory','','','','',''),('316785507760725034',668,'31678550775','32','1.00','300','retail','0','2023-03-11 19:06:15','','','','0','Cash',0.00,'300','','','3','','1','2023-03-11 16:06:39','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-10.00','-11','Inclusive','branch','Inventory','','','','',''),('316785507832068382',669,'31678550775','49','1.00','15','retail','0','2023-03-11 19:06:22','','','','10','Cash',0.00,'15','','','3','','1','2023-03-11 16:06:39','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','206.00','205','Inclusive','branch','None Inventory','1110','4000','5500','',''),('416785514650202038',670,'41678551464','47','1.00','200','retail','0','2023-03-11 19:17:44','','','','0','Cash',0.00,'200','','','4','','1','2023-03-11 16:18:03','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','51.00','50','Inclusive','branch','Inventory','','','','',''),('316785554287280732',671,'31678555427','43','1.00','600','retail','0','2023-03-11 20:23:47','','','','0','Cash',0.00,'600','','','3','','1','2023-03-11 17:24:52','','9','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-6.00','-7','Inclusive','branch','Inventory','','','','',''),('316785554300202038',672,'31678555427','43','1.00','600','retail','0','2023-03-11 20:23:49','','','','0','Cash',0.00,'600','','','3','','1','2023-03-11 17:24:52','','9','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-7.00','-8','Inclusive','branch','Inventory','','','','',''),('316785563962222032',673,'31678556395','38','1.00','350','retail','0','2023-03-11 20:39:55','','','','0','Cash',0.00,'350','','','3','','1','2023-03-11 17:40:08','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-59.00','-60','Inclusive','branch','Inventory','','','','',''),('316785594312963382',674,'31678559430','54','1.00','350','retail','0','2023-03-11 21:30:30','','','','200','Cash',0.00,'350','','','3','','1','2023-03-11 18:30:37','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Service','1110','4000','5500','',''),('316785600932069382',675,'31678560092','38','1.00','350','retail','0','2023-03-11 21:41:32','','','','0','Cash',0.00,'350','','','3','','1','2023-03-11 18:41:43','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-60.00','-61','Inclusive','branch','Inventory','','','','',''),('316785602272062382',676,'31678560227','11','1.00','250','retail','0','2023-03-11 21:43:47','','','','0','Cash',0.00,'250','','','3','','1','2023-03-11 18:43:54','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','132.00','131','Inclusive','branch','Inventory','','','','',''),('316785603497290732',677,'31678560348','1','1.00','250','retail','0','2023-03-11 21:45:48','','','','0','Cash',0.00,'250','','','3','','1','2023-03-11 18:46:01','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','','','','',''),('316785631457250732',678,'31678563144','7','1.00','200','retail','0','2023-03-11 22:32:24','','','','0','Cash',0.00,'200','','','3','','1','2023-03-11 19:32:36','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-33.00','-34','Inclusive','branch','Inventory','','','','',''),('316785637053725334',679,'31678563704','46','1.00','200','retail','0','2023-03-11 22:41:44','','','','0','Cash',0.00,'200','','','3','','1','2023-03-11 19:41:50','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','53.00','52','Inclusive','branch','Inventory','','','','',''),('316786094379726934',680,'31678609436','2','1.00','200','retail','0','2023-03-12 11:23:56','','','','0','Cash',0.00,'200','','','3','','1','2023-03-12 08:24:50','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-18.00','-19','Inclusive','branch','Inventory','','','','',''),('316786094532965382',681,'31678609436','22','1.00','250','retail','0','2023-03-12 11:24:12','','','','0','Cash',0.00,'250','','','3','','1','2023-03-12 08:24:50','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-6.00','-7','Inclusive','branch','Inventory','','','','',''),('316786094587280732',682,'31678609436','21','1.00','200','retail','0','2023-03-12 11:24:17','','','','0','Cash',0.00,'200','','','3','','1','2023-03-12 08:24:50','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-75.00','-76','Inclusive','branch','Inventory','','','','',''),('316786094672222032',683,'31678609436','48','1.00','20','retail','0','2023-03-12 11:24:26','','','','0','Cash',0.00,'20','','','3','','1','2023-03-12 08:24:50','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','403.00','402','Inclusive','branch','None Inventory','1110','4000','5500','',''),('316786095793022375',684,'31678609578','12','1.00','200','retail','0','2023-03-12 11:26:18','','','','0','Cash',0.00,'200','','','3','','1','2023-03-12 08:26:30','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-15.00','-16','Inclusive','branch','Inventory','','','','',''),('316786306362222032',685,'31678630636','1','1.00','250','retail','0','2023-03-12 17:17:16','','','','0','Cash',0.00,'250','','','3','','1','2023-03-12 14:17:21','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','','','','',''),('316786306597290732',686,'31678630659','52','1.00','150','retail','0','2023-03-12 17:17:39','','','','200','Cash',0.00,'150','','','3','','1','2023-03-12 14:17:46','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416786316914232432',687,'41678631690','32','1.00','300','retail','0','2023-03-12 17:34:51','','','','0','Cash',0.00,'300','','','4','','1','2023-03-12 14:35:19','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-11.00','-12','Inclusive','branch','Inventory','','','','',''),('416786357275726544',688,'41678635726','29','1.00','300','retail','0','2023-03-12 18:42:06','','','','0','Cash',0.00,'300','','','4','','1','2023-03-12 15:42:39','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-7.00','-8','Inclusive','branch','Inventory','','','','',''),('416786374280202038',689,'41678637427','28','1.00','300','retail','0','2023-03-12 19:10:27','','','','0','Cash',0.00,'300','','','4','','1','2023-03-12 16:10:36','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','0.00','-1','Inclusive','branch','Inventory','','','','',''),('316786377973421300',690,'31678637796','36','1.00','400','retail','0','2023-03-12 19:16:36','','','','0','Cash',0.00,'400','','','3','','1','2023-03-12 16:16:46','','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-6.00','-7','Inclusive','branch','Inventory','','','','',''),('316786425660202038',692,'31678642565','22','1.00','250','retail','0','2023-03-12 20:36:05','','','','0','Cash',0.00,'250','','','3','','1','2023-03-12 17:36:21','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-7.00','-8','Inclusive','branch','Inventory','','','','',''),('316786425744242432',693,'31678642565','38','1.00','350','retail','0','2023-03-12 20:36:13','','','','0','Cash',0.00,'350','','','3','','1','2023-03-12 17:36:21','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-61.00','-62','Inclusive','branch','Inventory','','','','',''),('416786451862568382',694,'41678645185','38','1.00','350','retail','0','2023-03-12 21:19:45','','','','0','Cash',0.00,'350','','','4','','1','2023-03-12 18:20:08','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-62.00','-63','Inclusive','branch','Inventory','','','','',''),('416786451923732152',695,'41678645185','38','1.00','350','retail','0','2023-03-12 21:19:51','','','','0','Cash',0.00,'350','','','4','','1','2023-03-12 18:20:08','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-63.00','-64','Inclusive','branch','Inventory','','','','',''),('416786889687280732',696,'41678688967','20','1.00','200','retail','0','2023-03-13 09:29:27','','','','0','Cash',0.00,'200','','','4','','1','2023-03-13 06:29:45','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-24.00','-25','Inclusive','branch','Inventory','','','','',''),('416787155123421300',697,'41678715511','43','1.00','600','retail','0','2023-03-13 16:51:51','','','','0','Cash',0.00,'600','','','4','','1','2023-03-13 13:51:59','','9','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-8.00','-9','Inclusive','branch','Inventory','','','','',''),('416787178200202038',698,'41678717819','2','1.00','200','retail','0','2023-03-13 17:30:19','','','','0','Cash',0.00,'200','','','4','','1','2023-03-13 14:31:00','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-19.00','-20','Inclusive','branch','Inventory','','','','',''),('416787178284212432',699,'41678717819','24','1.00','100','retail','0','2023-03-13 17:30:27','','','','0','Cash',0.00,'100','','','4','','1','2023-03-13 14:31:00','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-3.00','-4','Inclusive','branch','Inventory','','','','',''),('416787178367727744',700,'41678717819','48','1.00','20','retail','0','2023-03-13 17:30:36','','','','0','Cash',0.00,'20','','','4','','1','2023-03-13 14:31:00','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','402.00','401','Inclusive','branch','None Inventory','1110','4000','5500','',''),('416787192972222032',701,'41678719296','1','1.00','250','retail','0','2023-03-13 17:54:56','','','','0','Cash',0.00,'250','','','4','','1','2023-03-13 14:55:11','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','','','','',''),('416787201673022361',702,'41678720166','38','1.00','350','retail','0','2023-03-13 18:09:26','','','','0','Cash',0.00,'350','','','4','','1','2023-03-13 15:09:33','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-64.00','-65','Inclusive','branch','Inventory','','','','',''),('416787215877270732',703,'41678721586','61','1.00','150','retail','0','2023-03-13 18:33:06','','','','100','Cash',0.00,'150','','','4','','1','2023-03-13 15:33:18','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Service','1110','4000','5500','',''),('416787220547240732',704,'41678722053','1','1.00','250','retail','0','2023-03-13 18:40:53','','','','0','Cash',0.00,'250','','','4','','1','2023-03-13 15:41:06','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','','','','',''),('416787220600661220',705,'41678722053','48','1.00','20','retail','0','2023-03-13 18:40:59','','','','0','Cash',0.00,'20','','','4','','1','2023-03-13 15:41:06','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','401.00','400','Inclusive','branch','None Inventory','1110','4000','5500','',''),('416787222003421300',706,'41678722199','7','1.00','200','retail','0','2023-03-13 18:43:19','','','','0','Cash',0.00,'200','','','4','','1','2023-03-13 15:43:30','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-34.00','-35','Inclusive','branch','Inventory','','','','',''),('416787763380202038',707,'41678776337','21','1.00','200','retail','0','2023-03-14 09:45:37','','','','0','Cash',0.00,'200','','','4','','1','2023-03-14 06:45:48','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-76.00','-77','Inclusive','branch','Inventory','','','','',''),('416787783030202038',708,'41678778302','1','1.00','250','retail','0','2023-03-14 10:18:22','','','','0','Cash',0.00,'250','','','4','','1','2023-03-14 07:18:34','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','','','','',''),('416787806773421300',709,'41678780676','59','1.00','150','retail','0','2023-03-14 10:57:56','','','','100','Cash',0.00,'150','','','4','','1','2023-03-14 07:58:08','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Service','1110','4000','5500','',''),('416787960447240732',710,'41678796043','40','1.00','600','retail','0','2023-03-14 15:14:03','','','','0','Cash',0.00,'600','','','4','','1','2023-03-14 12:14:17','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-13.00','-14','Inclusive','branch','Inventory','','','','',''),('316788018742222032',711,'31678801873','38','1.00','350','retail','0','2023-03-14 16:51:13','','','','0','Cash',0.00,'350','','','3','','1','2023-03-14 13:51:25','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-65.00','-66','Inclusive','branch','Inventory','','','','',''),('316788039312363382',712,'31678803930','1','1.00','250','retail','0','2023-03-14 17:25:30','','','','0','Cash',0.00,'250','','','3','','1','2023-03-14 14:25:55','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','','','','',''),('316788039817210732',713,'31678803981','29','1.00','300','retail','0','2023-03-14 17:26:21','','','','0','Cash',0.00,'300','','','3','','1','2023-03-14 14:26:36','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-8.00','-9','Inclusive','branch','Inventory','','','','',''),('316788041533421300',714,'31678804152','38','1.00','350','retail','0','2023-03-14 17:29:12','','','','0','Cash',0.00,'350','','','3','','1','2023-03-14 14:29:24','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-66.00','-67','Inclusive','branch','Inventory','','','','',''),('316788068383022338',715,'31678806837','21','1.00','200','retail','0','2023-03-14 18:13:57','','','','0','Cash',0.00,'200','','','3','','1','2023-03-14 15:14:13','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-77.00','-78','Inclusive','branch','Inventory','','','','',''),('416788070217728744',716,'41678807020','38','1.00','350','retail','0','2023-03-14 18:17:00','','','','0','Cash',0.00,'350','','','4','','1','2023-03-14 15:17:10','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-67.00','-68','Inclusive','branch','Inventory','','','','',''),('416788090083421300',717,'41678809007','21','1.00','200','retail','0','2023-03-14 18:50:07','','','','0','Cash',0.00,'200','','','4','','1','2023-03-14 15:50:14','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-78.00','-79','Inclusive','branch','Inventory','','','','',''),('316788113911728134',718,'31678811390','23','1.00','250','retail','0','2023-03-14 19:29:50','','','','0','Cash',0.00,'250','','','3','','1','2023-03-14 16:30:18','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-13.00','-14','Inclusive','branch','Inventory','','','','',''),('316788114000202038',719,'31678811390','38','1.00','350','retail','0','2023-03-14 19:30:00','','','','0','Cash',0.00,'350','','','3','','1','2023-03-14 16:30:18','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-68.00','-69','Inclusive','branch','Inventory','','','','',''),('316788115350202038',720,'31678811534','21','1.00','200','retail','0','2023-03-14 19:32:14','','','','0','Cash',0.00,'200','','','3','','1','2023-03-14 16:32:23','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-79.00','-80','Inclusive','branch','Inventory','','','','',''),('316788139917210732',721,'31678813990','3','1.00','200','retail','0','2023-03-14 20:13:10','','','','0','Cash',0.00,'200','','','3','','1','2023-03-14 17:13:33','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-22.00','-23','Inclusive','branch','Inventory','','','','',''),('316788140004728434',722,'31678813990','48','1.00','20','retail','0','2023-03-14 20:13:19','','','','0','Cash',0.00,'20','','','3','','1','2023-03-14 17:13:33','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','400.00','399','Inclusive','branch','None Inventory','1110','4000','5500','',''),('316788170220202038',723,'31678817021','29','1.00','300','retail','0','2023-03-14 21:03:41','','','','0','Cash',0.00,'300','','','3','','1','2023-03-14 18:03:53','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-9.00','-10','Inclusive','branch','Inventory','','','','',''),('316788170790202038',724,'31678817078','15','1.00','200','retail','0','2023-03-14 21:04:38','','','','0','Cash',0.00,'200','','','3','','1','2023-03-14 18:08:54','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-4.00','-5','Inclusive','branch','Inventory','','','','',''),('316788173260826312',725,'31678817078','27','1.00','100','retail','0','2023-03-14 21:08:45','','','','0','Cash',0.00,'100','','','3','','1','2023-03-14 18:08:54','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','0.00','-1','Inclusive','branch','Inventory','','','','',''),('316788762002660382',726,'31678876200','59','1.00','150','retail','0','2023-03-15 13:30:00','','','','100','Cash',0.00,'150','','','3','','1','2023-03-15 10:30:11','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Service','1110','4000','5500','',''),('316788762324272432',727,'31678876231','21','1.00','200','retail','0','2023-03-15 13:30:31','','','','0','Cash',0.00,'200','','','3','','1','2023-03-15 10:30:41','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-80.00','-81','Inclusive','branch','Inventory','','','','',''),('316788819242162382',728,'31678881923','2','1.00','200','retail','0','2023-03-15 15:05:23','','','','0','Cash',0.00,'200','','','3','','1','2023-03-15 12:05:28','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-20.00','-21','Inclusive','branch','Inventory','','','','',''),('316788820212222032',729,'31678882020','34','1.00','300','retail','0','2023-03-15 15:07:00','','','','0','Cash',0.00,'300','','','3','','1','2023-03-15 12:07:07','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-28.00','-29','Inclusive','branch','Inventory','','','','',''),('316788820762728234',730,'31678882075','31','1.00','200','retail','0','2023-03-15 15:07:55','','','','0','Cash',0.00,'200','','','3','','1','2023-03-15 12:08:18','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-8.00','-9','Inclusive','branch','Inventory','','','','',''),('316788820897290732',731,'31678882075','27','1.00','100','retail','0','2023-03-15 15:08:08','','','','0','Cash',0.00,'100','','','3','','1','2023-03-15 12:08:18','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-1.00','-2','Inclusive','branch','Inventory','','','','',''),('316788857782222032',732,'31678885777','1','1.00','250','retail','0','2023-03-15 16:09:37','','','','0','Cash',0.00,'250','','','3','','1','2023-03-15 13:09:51','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','0.00','-1','Inclusive','branch','Inventory','','','','',''),('316788858072333328',733,'31678885806','21','1.00','200','retail','0','2023-03-15 16:10:06','','','','0','Cash',0.00,'200','','','3','','1','2023-03-15 13:10:21','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-81.00','-82','Inclusive','branch','Inventory','','','','',''),('316788877194282432',734,'31678887718','1','1.00','250','retail','0','2023-03-15 16:41:58','','','','0','Cash',0.00,'250','','','3','','1','2023-03-15 13:42:44','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-1.00','-2','Inclusive','branch','Inventory','','','','',''),('316788877362222032',735,'31678887718','24','1.00','100','retail','0','2023-03-15 16:42:15','','','','0','Cash',0.00,'100','','','3','','1','2023-03-15 13:42:44','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-4.00','-5','Inclusive','branch','Inventory','','','','',''),('316788892993421300',736,'31678889297','7','1.00','200','retail','0','2023-03-15 17:08:18','','','','0','Cash',0.00,'200','','','3','','1','2023-03-15 14:08:30','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-36.00','-37','Inclusive','branch','Inventory','','','','',''),('516788943400202038',737,'51678894339','54','1.00','350','retail','0','2023-03-15 18:32:20','','','','200','Cash',0.00,'350','','','5','','1','2023-03-15 15:32:38','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Service','1110','4000','5500','',''),('316788957423022347',738,'31678895741','1','1.00','250','retail','0','2023-03-15 18:55:41','','','','0','Cash',0.00,'250','','','3','','1','2023-03-15 15:55:50','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-2.00','-3','Inclusive','branch','Inventory','','','','',''),('316789041340202038',739,'31678904133','60','1.00','100','retail','0','2023-03-15 21:15:33','','','','70','Cash',0.00,'100','','','3','','1','2023-03-15 18:16:27','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Inventory','1110','4000','5500','',''),('316789041464729434',740,'31678904133','57','1.00','350','retail','0','2023-03-15 21:15:45','','','','200','Cash',0.00,'350','','','3','','1','2023-03-15 18:16:27','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Service','1110','4000','5500','',''),('316789041483421300',741,'31678904133','57','1.00','350','retail','0','2023-03-15 21:15:47','','','','200','Cash',0.00,'350','','','3','','1','2023-03-15 18:16:27','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Service','1110','4000','5500','',''),('316789042414729434',742,'31678904240','48','1.00','20','retail','0','2023-03-15 21:17:20','','','','0','Cash',0.00,'20','','','3','','1','2023-03-15 18:18:47','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','399.00','398','Inclusive','branch','None Inventory','1110','4000','5500','',''),('316789042532035363',743,'31678904240','29','1.00','300','retail','0','2023-03-15 21:17:32','','','','0','Cash',0.00,'300','','','3','','1','2023-03-15 18:18:47','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-10.00','-11','Inclusive','branch','Inventory','','','','',''),('316789043147240732',744,'31678904240','20','1.00','200','retail','0','2023-03-15 21:18:33','','','','0','Cash',0.00,'200','','','3','','1','2023-03-15 18:18:47','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-25.00','-26','Inclusive','branch','Inventory','','','','',''),('316789068693421300',745,'31678906868','52','1.00','150','retail','0','2023-03-15 22:01:08','','','','200','Cash',0.00,'150','','','3','','1','2023-03-15 19:01:52','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316789068728848332',746,'31678906868','52','1.00','150','retail','0','2023-03-15 22:01:11','','','','200','Cash',0.00,'150','','','3','','1','2023-03-15 19:01:52','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316789068983421300',747,'31678906868','52','1.00','150','retail','0','2023-03-15 22:01:38','','','','200','Cash',0.00,'150','','','3','','1','2023-03-15 19:01:52','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316789069050202038',748,'31678906868','52','1.00','150','retail','0','2023-03-15 22:01:44','','','','200','Cash',0.00,'150','','','3','','1','2023-03-15 19:01:52','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316789553893421300',749,'31678955388','59','1.00','150','retail','0','2023-03-16 11:29:48','','','','100','Cash',0.00,'150','','','3','','1','2023-03-16 08:29:53','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Service','1110','4000','5500','',''),('316789659510202038',750,'31678965950','3','1.00','200','retail','0','2023-03-16 14:25:50','','','','0','Cash',0.00,'200','','','3','','1','2023-03-16 11:25:56','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-23.00','-24','Inclusive','branch','Inventory','','','','',''),('316789661023022301',751,'31678966101','11','1.00','250','retail','0','2023-03-16 14:28:21','','','','0','Cash',0.00,'250','','','3','','1','2023-03-16 11:28:28','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','131.00','130','Inclusive','branch','Inventory','','','','',''),('316789662334262432',752,'31678966232','1','1.00','250','retail','0','2023-03-16 14:30:32','','','','0','Cash',0.00,'250','','','3','','1','2023-03-16 11:30:36','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-3.00','-4','Inclusive','branch','Inventory','','','','',''),('316789663816729634',753,'31678966380','52','1.00','150','retail','0','2023-03-16 14:33:00','','','','200','Cash',0.00,'150','','','3','','1','2023-03-16 11:33:06','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416789849994282432',754,'41678984998','21','1.00','200','retail','0','2023-03-16 19:43:19','','','','0','Cash',0.00,'200','','','4','','1','2023-03-16 16:43:23','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-82.00','-83','Inclusive','branch','Inventory','','','','',''),('416789862807200732',755,'41678986279','21','1.00','200','retail','0','2023-03-16 20:04:39','','','','0','Cash',0.00,'200','','','4','','1','2023-03-16 17:04:43','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-83.00','-84','Inclusive','branch','Inventory','','','','',''),('316789864953421300',756,'31678986494','59','1.00','150','retail','0','2023-03-16 20:08:14','','','','100','Cash',0.00,'150','','','3','','1','2023-03-16 17:08:19','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Service','1110','4000','5500','',''),('416789898299729944',757,'41678989829','7','1.00','200','retail','0','2023-03-16 21:03:49','','','','0','Cash',0.00,'200','','','4','','1','2023-03-16 18:03:56','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-36.00','-37','Inclusive','branch','Inventory','','','','',''),('416789898322222032',758,'41678989829','7','1.00','200','retail','0','2023-03-16 21:03:51','','','','0','Cash',0.00,'200','','','4','','1','2023-03-16 18:03:56','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-37.00','-38','Inclusive','branch','Inventory','','','','',''),('416790325172222032',759,'41679032516','7','1.00','200','retail','0','2023-03-17 08:55:16','','','','0','Cash',0.00,'200','','','4','','1','2023-03-17 05:55:31','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-38.00','-39','Inclusive','branch','Inventory','','','','',''),('416790325237230732',760,'41679032516','1','1.00','250','retail','0','2023-03-17 08:55:22','','','','0','Cash',0.00,'250','','','4','','1','2023-03-17 05:55:31','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-4.00','-5','Inclusive','branch','Inventory','','','','',''),('416790325412720244',761,'41679032540','46','1.00','200','retail','0','2023-03-17 08:55:40','','','','0','Cash',0.00,'200','','','4','','1','2023-03-17 05:55:47','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','52.00','51','Inclusive','branch','Inventory','','','','',''),('416790325452222032',762,'41679032540','47','1.00','200','retail','0','2023-03-17 08:55:44','','','','0','Cash',0.00,'200','','','4','','1','2023-03-17 05:55:47','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Inventory','','','','',''),('316790401853421300',763,'31679040184','1','1.00','250','retail','0','2023-03-17 11:03:04','','','','0','Cash',0.00,'250','','','3','','1','2023-03-17 08:03:50','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-5.00','-6','Inclusive','branch','Inventory','','','','',''),('316790401957250732',764,'31679040184','48','1.00','20','retail','0','2023-03-17 11:03:14','','','','0','Cash',0.00,'20','','','3','','1','2023-03-17 08:03:50','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','398.00','397','Inclusive','branch','None Inventory','1110','4000','5500','',''),('316790402247240732',765,'31679040184','24','1.00','100','retail','0','2023-03-17 11:03:44','','','','0','Cash',0.00,'100','','','3','','1','2023-03-17 08:03:50','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-5.00','-6','Inclusive','branch','Inventory','','','','',''),('316790417473421300',766,'31679041747','59','1.00','150','retail','0','2023-03-17 11:29:07','','','','100','Cash',0.00,'150','','','3','','1','2023-03-17 08:29:11','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Service','1110','4000','5500','',''),('416790475097290732',767,'41679047508','12','1.00','200','retail','0','2023-03-17 13:05:08','','','','0','Cash',0.00,'200','','','4','','1','2023-03-17 10:05:12','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-16.00','-17','Inclusive','branch','Inventory','','','','',''),('316790528943022398',768,'31679052893','48','1.00','20','retail','0','2023-03-17 14:34:53','','','','0','Cash',0.00,'20','','','3','','1','2023-03-17 11:35:07','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','397.00','396','Inclusive','branch','None Inventory','1110','4000','5500','',''),('316790529052222032',769,'31679052893','11','1.00','250','retail','0','2023-03-17 14:35:04','','','','0','Cash',0.00,'250','','','3','','1','2023-03-17 11:35:07','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','130.00','129','Inclusive','branch','Inventory','','','','',''),('416790541594252432',770,'41679054158','34','1.00','300','retail','0','2023-03-17 14:55:58','','','','0','Cash',0.00,'300','','','4','','1','2023-03-17 11:56:24','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-29.00','-30','Inclusive','branch','Inventory','','','','',''),('416790621480202039',771,'41679062147','23','1.00','250','retail','0','2023-03-17 17:09:07','','','','0','Cash',0.00,'250','','','4','','1','2023-03-17 14:09:11','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-14.00','-15','Inclusive','branch','Inventory','','','','',''),('416790635333421300',772,'41679063532','38','1.00','350','retail','0','2023-03-17 17:32:12','','','','0','Cash',0.00,'350','','','4','','1','2023-03-17 14:32:16','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-69.00','-70','Inclusive','branch','Inventory','','','','',''),('416790669004262432',773,'41679066899','11','1.00','250','retail','0','2023-03-17 18:28:19','','','','0','Cash',0.00,'250','','','4','','1','2023-03-17 15:28:24','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','129.00','128','Inclusive','branch','Inventory','','','','',''),('316790678572765392',774,'31679067856','36','1.00','400','retail','0','2023-03-17 18:44:16','','','','0','Cash',0.00,'400','','','3','','1','2023-03-17 15:44:19','','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-7.00','-8','Inclusive','branch','Inventory','','','','',''),('316790681040202039',775,'31679068103','18','1.00','200','retail','0','2023-03-17 18:48:23','','','','0','Cash',0.00,'200','','','3','','1','2023-03-17 15:48:28','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-16.00','-17','Inclusive','branch','Inventory','','','','',''),('416790729122222032',776,'41679072911','7','1.00','200','retail','0','2023-03-17 20:08:31','','','','0','Cash',0.00,'200','','','4','','1','2023-03-17 17:08:36','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-39.00','-40','Inclusive','branch','Inventory','','','','',''),('416790729364272432',777,'41679072935','52','1.00','150','retail','0','2023-03-17 20:08:55','','','','200','Cash',0.00,'150','','','4','','1','2023-03-17 17:09:01','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416790771117210732',778,'41679077110','7','1.00','200','retail','0','2023-03-17 21:18:30','','','','0','Cash',0.00,'200','','','4','','1','2023-03-17 18:18:34','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-40.00','-41','Inclusive','branch','Inventory','','','','',''),('416790771512765392',779,'41679077151','3','1.00','200','retail','0','2023-03-17 21:19:11','','','','0','Cash',0.00,'200','','','4','','1','2023-03-17 18:19:19','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-24.00','-25','Inclusive','branch','Inventory','','','','',''),('416790771563022351',780,'41679077151','4','1.00','150','retail','0','2023-03-17 21:19:16','','','','0','Cash',0.00,'150','','','4','','1','2023-03-17 18:19:19','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-8.00','-9','Inclusive','branch','Inventory','','','','',''),('316790778902769392',781,'31679077889','59','1.00','150','retail','0','2023-03-17 21:31:29','','','','100','Cash',0.00,'150','','','3','','1','2023-03-17 18:31:53','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Service','1110','4000','5500','',''),('316790779900202039',782,'31679077989','21','1.00','200','retail','0','2023-03-17 21:33:09','','','','0','Cash',0.00,'200','','','3','','1','2023-03-17 18:33:12','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-84.00','-85','Inclusive','branch','Inventory','','','','',''),('316790807323022337',783,'31679080731','12','1.00','200','retail','0','2023-03-17 22:18:51','','','','0','Cash',0.00,'200','','','3','','1','2023-03-17 19:19:21','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-17.00','-18','Inclusive','branch','Inventory','','','','',''),('316790808463022348',784,'31679080845','21','1.00','200','retail','0','2023-03-17 22:20:45','','','','0','Cash',0.00,'200','','','3','','1','2023-03-17 19:20:50','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-85.00','-86','Inclusive','branch','Inventory','','','','',''),('416791261923022391',785,'41679126191','59','1.00','150','retail','0','2023-03-18 10:56:31','','','','100','Cash',0.00,'150','','','4','','1','2023-03-18 07:56:39','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Service','1110','4000','5500','',''),('416791262182661392',786,'41679126217','59','1.00','150','retail','0','2023-03-18 10:56:57','','','','100','Cash',0.00,'150','','','4','','1','2023-03-18 07:57:01','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Service','1110','4000','5500','',''),('416791277067721744',787,'41679127705','1','1.00','250','retail','0','2023-03-18 11:21:45','','','','0','Cash',0.00,'250','','','4','','1','2023-03-18 08:22:26','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-6.00','-7','Inclusive','branch','Inventory','','','','',''),('416791277227220732',788,'41679127705','48','1.00','20','retail','0','2023-03-18 11:22:01','','','','0','Cash',0.00,'20','','','4','','1','2023-03-18 08:22:26','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','396.00','395','Inclusive','branch','None Inventory','1110','4000','5500','',''),('416791277337230732',789,'41679127705','49','1.00','15','retail','0','2023-03-18 11:22:12','','','','10','Cash',0.00,'15','','','4','','1','2023-03-18 08:22:26','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','205.00','204','Inclusive','branch','None Inventory','1110','4000','5500','',''),('416791277374222432',790,'41679127705','49','1.00','15','retail','0','2023-03-18 11:22:17','','','','10','Cash',0.00,'15','','','4','','1','2023-03-18 08:22:26','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','204.00','203','Inclusive','branch','None Inventory','1110','4000','5500','',''),('316791280073022300',791,'31679128006','34','1.00','300','retail','0','2023-03-18 11:26:46','','','','0','Cash',0.00,'300','','','3','','1','2023-03-18 08:28:00','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-30.00','-31','Inclusive','branch','Inventory','','','','',''),('316791280093022300',792,'31679128006','34','1.00','300','retail','0','2023-03-18 11:26:48','','','','0','Cash',0.00,'300','','','3','','1','2023-03-18 08:28:00','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-31.00','-32','Inclusive','branch','Inventory','','','','',''),('316791290202112063',793,'31679129019','38','1.00','350','retail','0','2023-03-18 11:43:39','','','','0','Cash',0.00,'350','','','3','','1','2023-03-18 08:43:45','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-70.00','-71','Inclusive','branch','Inventory','','','','',''),('416791483212862392',794,'41679148320','54','1.00','350','retail','0','2023-03-18 17:05:20','','','','200','Cash',0.00,'350','','','4','','1','2023-03-18 14:05:24','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Service','1110','4000','5500','',''),('316791532932222032',795,'31679153292','56','1.00','400','retail','0','2023-03-18 18:28:12','','','','200','Cash',0.00,'400','','','3','','1','2023-03-18 15:29:02','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','20.00','19','Inclusive','branch','Service','1110','4000','5500','',''),('316791533374252432',796,'31679153292','56','1.00','400','retail','0','2023-03-18 18:28:56','','','','200','Cash',0.00,'400','','','3','','1','2023-03-18 15:29:02','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','20.00','19','Inclusive','branch','Service','1110','4000','5500','',''),('416791534123421300',797,'41679153411','32','1.00','300','retail','0','2023-03-18 18:30:11','','','','0','Cash',0.00,'300','','','4','','1','2023-03-18 15:30:15','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-12.00','-13','Inclusive','branch','Inventory','','','','',''),('316791538313421300',798,'31679153831','1','1.00','250','retail','0','2023-03-18 18:37:11','','','','0','Cash',0.00,'250','','','3','','1','2023-03-18 15:37:59','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-7.00','-8','Inclusive','branch','Inventory','','','','',''),('316791539293022329',799,'31679153929','11','1.00','250','retail','0','2023-03-18 18:38:49','','','','0','Cash',0.00,'250','','','3','','1','2023-03-18 15:38:52','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','128.00','127','Inclusive','branch','Inventory','','','','',''),('316791539432364392',800,'31679153942','11','1.00','250','retail','0','2023-03-18 18:39:02','','','','0','Cash',0.00,'250','','','3','','1','2023-03-18 15:39:06','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','127.00','126','Inclusive','branch','Inventory','','','','',''),('416791635064262432',801,'41679163505','52','1.00','150','retail','0','2023-03-18 21:18:25','','','','200','Cash',0.00,'150','','','4','','1','2023-03-18 18:18:45','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316792183453022343',802,'31679218345','21','1.00','200','retail','0','2023-03-19 12:32:25','','','','0','Cash',0.00,'200','','','3','','1','2023-03-19 09:32:32','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-86.00','-87','Inclusive','branch','Inventory','','','','',''),('316792246987280732',803,'31679224697','34','1.00','300','retail','0','2023-03-19 14:18:17','','','','0','Cash',0.00,'300','','','3','','1','2023-03-19 11:18:42','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-32.00','-33','Inclusive','branch','Inventory','','','','',''),('316792247004722434',804,'31679224697','34','1.00','300','retail','0','2023-03-19 14:18:19','','','','0','Cash',0.00,'300','','','3','','1','2023-03-19 11:18:42','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-33.00','-34','Inclusive','branch','Inventory','','','','',''),('316792247133022317',805,'31679224697','49','1.00','15','retail','0','2023-03-19 14:18:32','','','','10','Cash',0.00,'15','','','3','','1','2023-03-19 11:18:42','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','203.00','202','Inclusive','branch','None Inventory','1110','4000','5500','',''),('316792247159749332',806,'31679224697','49','1.00','15','retail','0','2023-03-19 14:18:34','','','','10','Cash',0.00,'15','','','3','','1','2023-03-19 11:18:42','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','202.00','201','Inclusive','branch','None Inventory','1110','4000','5500','',''),('416792264413421300',807,'41679226440','33','1.00','300','retail','0','2023-03-19 14:47:20','','','','0','Cash',0.00,'300','','','4','','1','2023-03-19 11:47:23','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','40.00','39','Inclusive','branch','Inventory','','','','',''),('316792277413022347',808,'31679227740','32','1.00','300','retail','0','2023-03-19 15:09:00','','','','0','Cash',0.00,'300','','','3','','1','2023-03-19 12:09:04','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-13.00','-14','Inclusive','branch','Inventory','','','','',''),('316792286842222032',809,'31679228684','1','1.00','250','retail','0','2023-03-19 15:24:44','','','','0','Cash',0.00,'250','','','3','','1','2023-03-19 12:25:45','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-8.00','-9','Inclusive','branch','Inventory','','','','',''),('316792287952222032',810,'31679228794','53','1.00','200','retail','0','2023-03-19 15:26:34','','','','150','Cash',0.00,'200','','','3','','1','2023-03-19 12:26:39','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','49.00','48','Inclusive','branch','Inventory','1110','4000','5500','',''),('316792288338722834',811,'31679228832','23','1.00','250','retail','0','2023-03-19 15:27:12','','','','0','Cash',0.00,'250','','','3','','1','2023-03-19 12:27:18','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-15.00','-16','Inclusive','branch','Inventory','','','','',''),('416792291142222032',812,'41679229113','21','1.00','200','retail','0','2023-03-19 15:31:53','','','','0','Cash',0.00,'200','','','4','','1','2023-03-19 12:32:05','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-87.00','-88','Inclusive','branch','Inventory','','','','',''),('416792338913421300',813,'41679233891','32','1.00','300','retail','0','2023-03-19 16:51:31','','','','0','Cash',0.00,'300','','','4','','1','2023-03-19 13:51:39','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-14.00','-15','Inclusive','branch','Inventory','','','','',''),('416792338953022398',814,'41679233891','32','1.00','300','retail','0','2023-03-19 16:51:34','','','','0','Cash',0.00,'300','','','4','','1','2023-03-19 13:51:39','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-15.00','-16','Inclusive','branch','Inventory','','','','',''),('316792339702367392',815,'31679233969','32','1.00','300','retail','0','2023-03-19 16:52:49','','','','0','Cash',0.00,'300','','','3','','1','2023-03-19 13:52:53','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-16.00','-17','Inclusive','branch','Inventory','','','','',''),('316792354514232432',816,'31679235450','29','1.00','300','retail','0','2023-03-19 17:17:30','','','','0','Cash',0.00,'300','','','3','','1','2023-03-19 14:17:36','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-11.00','-12','Inclusive','branch','Inventory','','','','',''),('416792520480202039',817,'41679252047','52','1.00','150','retail','0','2023-03-19 21:54:07','','','','200','Cash',0.00,'150','','','4','','1','2023-03-19 18:54:17','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416793007373421300',818,'41679300736','5','1.00','280','retail','0','2023-03-20 11:25:36','','','','0','Cash',0.00,'280','','','4','','1','2023-03-20 08:25:49','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-4.00','-5','Inclusive','branch','Inventory','','','','',''),('416793007447240732',819,'41679300736','47','1.00','200','retail','0','2023-03-20 11:25:44','','','','0','Cash',0.00,'200','','','4','','1','2023-03-20 08:25:49','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','49.00','48','Inclusive','branch','Inventory','','','','',''),('416793020863022380',820,'41679302085','52','1.00','150','retail','0','2023-03-20 11:48:05','','','','200','Cash',0.00,'150','','','4','','1','2023-03-20 08:48:19','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416793021082222032',821,'41679302108','9','1.00','200','retail','0','2023-03-20 11:48:28','','','','0','Cash',0.00,'200','','','4','','1','2023-03-20 08:48:32','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-5.00','-6','Inclusive','branch','Inventory','','','','',''),('416793065130202039',822,'41679306512','3','1.00','200','retail','0','2023-03-20 13:01:52','','','','0','Cash',0.00,'200','','','4','','1','2023-03-20 10:01:56','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-25.00','-26','Inclusive','branch','Inventory','','','','',''),('416793111772167392',823,'41679311176','3','1.00','200','retail','0','2023-03-20 14:19:36','','','','0','Cash',0.00,'200','','','4','','1','2023-03-20 11:19:40','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-26.00','-27','Inclusive','branch','Inventory','','','','',''),('416793255573421300',824,'41679325556','11','1.00','250','retail','0','2023-03-20 18:19:16','','','','0','Cash',0.00,'250','','','4','','1','2023-03-20 15:19:25','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','126.00','125','Inclusive','branch','Inventory','','','','',''),('416793819060202039',825,'41679381905','21','1.00','200','retail','0','2023-03-21 09:58:25','','','','0','Cash',0.00,'200','','','4','','1','2023-03-21 06:58:36','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-88.00','-89','Inclusive','branch','Inventory','','','','',''),('416793963483022343',826,'41679396347','22','1.00','250','retail','0','2023-03-21 13:59:07','','','','0','Cash',0.00,'250','','','4','','1','2023-03-21 10:59:12','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-8.00','-9','Inclusive','branch','Inventory','','','','',''),('416793967200202039',827,'41679396719','3','1.00','200','retail','0','2023-03-21 14:05:19','','','','0','Cash',0.00,'200','','','4','','1','2023-03-21 11:05:23','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-27.00','-28','Inclusive','branch','Inventory','','','','',''),('416793978837723744',828,'41679397882','1','1.00','250','retail','0','2023-03-21 14:24:42','','','','0','Cash',0.00,'250','','','4','','1','2023-03-21 11:24:48','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-9.00','-10','Inclusive','branch','Inventory','','','','',''),('416794074642222032',829,'41679407463','16','1.00','200','retail','0','2023-03-21 17:04:23','','','','0','Cash',0.00,'200','','','4','','1','2023-03-21 14:04:28','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-10.00','-11','Inclusive','branch','Inventory','','','','',''),('316794117601724134',830,'31679411755','21','1.00','200','retail','0','2023-03-21 18:15:59','','','','0','Cash',0.00,'200','','','3','','1','2023-03-21 15:16:17','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-90.00','-91','Inclusive','branch','Inventory','','','','',''),('316794117733421300',831,'31679411755','21','1.00','200','retail','0','2023-03-21 18:16:12','','','','0','Cash',0.00,'200','','','3','','1','2023-03-21 15:16:17','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-90.00','-91','Inclusive','branch','Inventory','','','','',''),('316794124530202039',832,'31679412452','23','1.00','250','retail','0','2023-03-21 18:27:32','','','','0','Cash',0.00,'250','','','3','','1','2023-03-21 15:27:35','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-16.00','-17','Inclusive','branch','Inventory','','','','',''),('316794128114212432',833,'31679412810','38','1.00','350','retail','0','2023-03-21 18:33:30','','','','0','Cash',0.00,'350','','','3','','1','2023-03-21 15:34:05','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-71.00','-72','Inclusive','branch','Inventory','','','','',''),('316794128402724234',834,'31679412810','17','1.00','200','retail','0','2023-03-21 18:33:59','','','','0','Cash',0.00,'200','','','3','','1','2023-03-21 15:34:05','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-12.00','-13','Inclusive','branch','Inventory','','','','',''),('416794135943022395',835,'41679413593','6','1.00','250','retail','0','2023-03-21 18:46:34','','','','0','Cash',0.00,'250','','','4','','1','2023-03-21 15:46:41','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-11.00','-12','Inclusive','branch','Inventory','','','','',''),('416794135982369392',836,'41679413593','6','1.00','250','retail','0','2023-03-21 18:46:37','','','','0','Cash',0.00,'250','','','4','','1','2023-03-21 15:46:41','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-12.00','-13','Inclusive','branch','Inventory','','','','',''),('316794166912222032',839,'31679416691','48','1.00','20','retail','0','2023-03-21 19:38:11','','','','0','Cash',0.00,'20','','','3','','1','2023-03-21 16:38:20','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','395.00','394','Inclusive','branch','None Inventory','1110','4000','5500','',''),('316794166977270732',840,'31679416691','38','1.00','350','retail','0','2023-03-21 19:38:17','','','','0','Cash',0.00,'350','','','3','','1','2023-03-21 16:38:20','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-74.00','-75','Inclusive','branch','Inventory','','','','',''),('316794194570202039',841,'31679419456','38','1.00','350','retail','0','2023-03-21 20:24:16','','','','0','Cash',0.00,'350','','','3','','1','2023-03-21 17:24:23','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-75.00','-76','Inclusive','branch','Inventory','','','','',''),('316794166632222032',842,'31679416662','38','1.00','350','retail','0','2023-03-21 19:37:42','','','','0','Cash',0.00,'350','','','3','','1','2023-03-21 17:57:45','','7','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-72.00','-73','Inclusive','branch','Inventory','','','','',''),('316794166660202039',843,'31679416662','38','1.00','350','retail','0','2023-03-21 19:37:45','','','','0','Cash',0.00,'350','','','3','','1','2023-03-21 17:57:45','','7','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-73.00','-74','Inclusive','branch','Inventory','','','','',''),('316794214573421300',844,'31679416662','22','1.00','250','retail','0','2023-03-21 20:57:36','','','','0','Cash',0.00,'250','','','3','','1','2023-03-21 17:57:45','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-9.00','-10','Inclusive','branch','Inventory','','','','',''),('416794215054222432',845,'41679421504','46','1.00','200','retail','0','2023-03-21 20:58:24','','','','0','Cash',0.00,'200','','','4','','1','2023-03-21 17:58:28','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','51.00','50','Inclusive','branch','Inventory','','','','',''),('316794243190243123',846,'31679424318','52','1.00','150','retail','0','2023-03-21 21:45:18','','','','200','Cash',0.00,'150','','','3','','1','2023-03-21 18:45:58','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316794243232222032',847,'31679424318','52','1.00','150','retail','0','2023-03-21 21:45:22','','','','200','Cash',0.00,'150','','','3','','1','2023-03-21 18:45:58','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316794243263421300',848,'31679424318','52','1.00','150','retail','0','2023-03-21 21:45:25','','','','200','Cash',0.00,'150','','','3','','1','2023-03-21 18:45:58','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316794243294724434',849,'31679424318','52','1.00','150','retail','0','2023-03-21 21:45:28','','','','200','Cash',0.00,'150','','','3','','1','2023-03-21 18:45:58','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316794257243022327',850,'31679425723','38','1.00','350','retail','0','2023-03-21 22:08:43','','','','0','Cash',0.00,'350','','','3','','1','2023-03-21 19:08:47','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-76.00','-77','Inclusive','branch','Inventory','','','','',''),('316794752772222032',851,'31679475276','2','1.00','200','retail','0','2023-03-22 11:54:36','','','','0','Cash',0.00,'200','','','3','','1','2023-03-22 08:54:39','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-21.00','-22','Inclusive','branch','Inventory','','','','',''),('316794778607200732',852,'31679477859','21','1.00','200','retail','0','2023-03-22 12:37:39','','','','0','Cash',0.00,'200','','','3','','1','2023-03-22 09:37:43','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-91.00','-92','Inclusive','branch','Inventory','','','','',''),('316794788030202039',853,'31679478802','21','1.00','200','retail','0','2023-03-22 12:53:22','','','','0','Cash',0.00,'200','','','3','','1','2023-03-22 09:53:26','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-92.00','-93','Inclusive','branch','Inventory','','','','',''),('316794824110202039',854,'31679482410','12','1.00','200','retail','0','2023-03-22 13:53:30','','','','0','Cash',0.00,'200','','','3','','1','2023-03-22 10:53:49','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-18.00','-19','Inclusive','branch','Inventory','','','','',''),('316794824172724234',855,'31679482410','48','1.00','20','retail','0','2023-03-22 13:53:36','','','','0','Cash',0.00,'20','','','3','','1','2023-03-22 10:53:49','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','394.00','393','Inclusive','branch','None Inventory','1110','4000','5500','',''),('316794901637230732',856,'31679490162','29','1.00','300','retail','0','2023-03-22 16:02:42','','','','0','Cash',0.00,'300','','','3','','1','2023-03-22 13:02:59','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-12.00','-13','Inclusive','branch','Inventory','','','','',''),('316794901730724034',857,'31679490162','48','1.00','20','retail','0','2023-03-22 16:02:52','','','','0','Cash',0.00,'20','','','3','','1','2023-03-22 13:02:59','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','393.00','392','Inclusive','branch','None Inventory','1110','4000','5500','',''),('316794903212222032',858,'31679490321','24','1.00','100','retail','0','2023-03-22 16:05:21','','','','0','Cash',0.00,'100','','','3','','1','2023-03-22 13:05:27','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-6.00','-7','Inclusive','branch','Inventory','','','','',''),('316794915650202039',859,'31679491564','49','1.00','15','retail','0','2023-03-22 16:26:04','','','','10','Cash',0.00,'15','','','3','','1','2023-03-22 13:50:00','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','201.00','200','Inclusive','branch','None Inventory','1110','4000','5500','',''),('316794929832268392',860,'31679491564','49','1.00','15','retail','0','2023-03-22 16:49:43','','','','10','Cash',0.00,'15','','','3','','1','2023-03-22 13:50:00','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','200.00','199','Inclusive','branch','None Inventory','1110','4000','5500','',''),('316794929944292432',861,'31679491564','56','1.00','400','retail','0','2023-03-22 16:49:53','','','','200','Cash',0.00,'400','','','3','','1','2023-03-22 13:50:00','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','20.00','19','Inclusive','branch','Service','1110','4000','5500','',''),('316794929952222032',862,'31679491564','56','1.00','400','retail','0','2023-03-22 16:49:55','','','','200','Cash',0.00,'400','','','3','','1','2023-03-22 13:50:00','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','20.00','19','Inclusive','branch','Service','1110','4000','5500','',''),('316794951903022391',863,'31679495189','7','1.00','200','retail','0','2023-03-22 17:26:29','','','','0','Cash',0.00,'200','','','3','','1','2023-03-22 14:27:00','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-41.00','-42','Inclusive','branch','Inventory','','','','',''),('316794951962222032',864,'31679495189','38','1.00','350','retail','0','2023-03-22 17:26:35','','','','0','Cash',0.00,'350','','','3','','1','2023-03-22 14:27:00','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-77.00','-78','Inclusive','branch','Inventory','','','','',''),('316794952114292432',865,'31679495189','17','1.00','200','retail','0','2023-03-22 17:26:50','','','','0','Cash',0.00,'200','','','3','','1','2023-03-22 14:27:00','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-13.00','-14','Inclusive','branch','Inventory','','','','',''),('316794960914292432',866,'31679496090','58','1.00','30','retail','0','2023-03-22 17:41:30','','','','15','Cash',0.00,'30','','','3','','1','2023-03-22 14:41:37','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','51.00','50','Inclusive','branch','Service','1110','4000','5500','',''),('316794960943022390',867,'31679496090','58','1.00','30','retail','0','2023-03-22 17:41:34','','','','15','Cash',0.00,'30','','','3','','1','2023-03-22 14:41:37','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','51.00','50','Inclusive','branch','Service','1110','4000','5500','',''),('316795031954202432',868,'31679503195','1','1.00','250','retail','0','2023-03-22 19:39:55','','','','0','Cash',0.00,'250','','','3','','1','2023-03-22 16:39:58','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-10.00','-11','Inclusive','branch','Inventory','','','','',''),('316795087124202432',869,'31679508711','52','1.00','150','retail','0','2023-03-22 21:11:51','','','','200','Cash',0.00,'150','','','3','','1','2023-03-22 18:12:22','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316795087150525301',870,'31679508711','52','1.00','150','retail','0','2023-03-22 21:11:54','','','','200','Cash',0.00,'150','','','3','','1','2023-03-22 18:12:22','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316795087184202432',871,'31679508711','52','1.00','150','retail','0','2023-03-22 21:11:57','','','','200','Cash',0.00,'150','','','3','','1','2023-03-22 18:12:22','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316795087260202039',872,'31679508711','52','1.00','150','retail','0','2023-03-22 21:12:05','','','','200','Cash',0.00,'150','','','3','','1','2023-03-22 18:12:22','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316795100811033400',873,'31679510080','4','1.00','150','retail','0','2023-03-22 21:34:40','','','','0','Cash',0.00,'150','','','3','','1','2023-03-22 18:34:53','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-9.00','-10','Inclusive','branch','Inventory','','','','',''),('316795102772222032',874,'31679510276','38','1.00','350','retail','0','2023-03-22 21:37:57','','','','0','Cash',0.00,'350','','','3','','1','2023-03-22 18:38:00','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-78.00','-79','Inclusive','branch','Inventory','','','','',''),('316795114231725134',875,'31679511422','61','1.00','150','retail','0','2023-03-22 21:57:02','','','','100','Cash',0.00,'150','','','3','','1','2023-03-22 18:57:47','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Service','1110','4000','5500','',''),('316795657467260732',876,'31679565746','21','1.00','200','retail','0','2023-03-23 13:02:26','','','','0','Cash',0.00,'200','','','3','','1','2023-03-23 10:02:33','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-93.00','-94','Inclusive','branch','Inventory','','','','',''),('316795657752567392',877,'31679565774','52','1.00','150','retail','0','2023-03-23 13:02:54','','','','200','Cash',0.00,'150','','','3','','1','2023-03-23 10:03:01','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316795705297290732',878,'31679570528','38','1.00','350','retail','0','2023-03-23 14:22:08','','','','0','Cash',0.00,'350','','','3','','1','2023-03-23 11:22:12','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-79.00','-80','Inclusive','branch','Inventory','','','','',''),('416795802750202039',879,'41679580274','21','1.00','200','retail','0','2023-03-23 17:04:34','','','','0','Cash',0.00,'200','','','4','','1','2023-03-23 14:05:04','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-94.00','-95','Inclusive','branch','Inventory','','','','',''),('416795854435725544',881,'41679585442','20','1.00','200','retail','0','2023-03-23 18:30:42','','','','0','Cash',0.00,'200','','','4','','1','2023-03-23 15:30:47','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-26.00','-27','Inclusive','branch','Inventory','','','','',''),('416795854593022354',882,'41679585458','38','1.00','350','retail','0','2023-03-23 18:30:58','','','','0','Cash',0.00,'350','','','4','','1','2023-03-23 15:31:02','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-81.00','-82','Inclusive','branch','Inventory','','','','',''),('416795870370202039',885,'41679587036','1','1.00','250','retail','0','2023-03-23 18:57:16','','','','0','Cash',0.00,'250','','','4','','1','2023-03-23 15:57:29','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-11.00','-12','Inclusive','branch','Inventory','','','','',''),('416795870450202039',886,'41679587036','1','1.00','250','retail','0','2023-03-23 18:57:24','','','','0','Cash',0.00,'250','','','4','','1','2023-03-23 15:57:29','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-12.00','-13','Inclusive','branch','Inventory','','','','',''),('416795876297725744',887,'41679587628','38','1.00','350','retail','0','2023-03-23 19:07:08','','','','0','Cash',0.00,'350','','','4','','1','2023-03-23 16:07:12','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-83.00','-84','Inclusive','branch','Inventory','','','','',''),('416795884358725844',888,'41679588435','1','1.00','250','retail','0','2023-03-23 19:20:35','','','','0','Cash',0.00,'250','','','4','','1','2023-03-23 16:20:38','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-13.00','-14','Inclusive','branch','Inventory','','','','',''),('316795838130202039',889,'31679583812','38','1.00','350','retail','0','2023-03-23 18:03:32','','','','0','Cash',0.00,'350','','','3','','1','2023-03-23 16:34:07','','7','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-80.00','-81','Inclusive','branch','Inventory','','','','',''),('316795867742037364',890,'31679583812','38','1.00','350','retail','0','2023-03-23 18:52:53','','','','0','Cash',0.00,'350','','','3','','1','2023-03-23 16:34:07','','7','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-82.00','-83','Inclusive','branch','Inventory','','','','',''),('316795892423302340',891,'31679583812','20','1.00','200','retail','0','2023-03-23 19:34:01','','','','0','Cash',0.00,'200','','','3','','1','2023-03-23 16:34:07','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-27.00','-28','Inclusive','branch','Inventory','','','','',''),('416795903430725044',892,'41679590342','1','1.00','250','retail','0','2023-03-23 19:52:22','','','','0','Cash',0.00,'250','','','4','','1','2023-03-23 16:52:29','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-14.00','-15','Inclusive','branch','Inventory','','','','',''),('416795903467260732',893,'41679590342','1','1.00','250','retail','0','2023-03-23 19:52:25','','','','0','Cash',0.00,'250','','','4','','1','2023-03-23 16:52:29','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-15.00','-16','Inclusive','branch','Inventory','','','','',''),('316795905262062392',894,'31679590525','1','1.00','250','retail','0','2023-03-23 19:55:25','','','','0','Cash',0.00,'250','','','3','','1','2023-03-23 16:55:28','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-16.00','-17','Inclusive','branch','Inventory','','','','',''),('316795927182222032',895,'31679592717','22','1.00','250','retail','0','2023-03-23 20:31:57','','','','0','Cash',0.00,'250','','','3','','1','2023-03-23 17:32:04','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-10.00','-11','Inclusive','branch','Inventory','','','','',''),('316795930013393300',896,'31679593000','1','1.00','250','retail','0','2023-03-23 20:36:40','','','','0','Cash',0.00,'250','','','3','','1','2023-03-23 17:36:53','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-17.00','-18','Inclusive','branch','Inventory','','','','',''),('316795930087280732',897,'31679593000','2','1.00','200','retail','0','2023-03-23 20:36:47','','','','0','Cash',0.00,'200','','','3','','1','2023-03-23 17:36:53','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-22.00','-23','Inclusive','branch','Inventory','','','','',''),('316795930273421300',898,'31679593026','1','1.00','250','retail','0','2023-03-23 20:37:06','','','','0','Cash',0.00,'250','','','3','','1','2023-03-23 17:37:09','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-18.00','-19','Inclusive','branch','Inventory','','','','',''),('316795930453022340',899,'31679593044','62','1.00','200','retail','0','2023-03-23 20:37:24','','','','200','Cash',0.00,'200','','','3','','1','2023-03-23 17:37:28','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Inventory','1110','4000','5500','',''),('316795930723022370',900,'31679593071','6','1.00','250','retail','0','2023-03-23 20:37:51','','','','0','Cash',0.00,'250','','','3','','1','2023-03-23 17:37:54','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-13.00','-14','Inclusive','branch','Inventory','','','','',''),('316795931982222032',902,'31679593197','1','1.00','250','retail','0','2023-03-23 20:39:57','','','','0','Cash',0.00,'250','','','3','','1','2023-03-23 17:56:56','','1','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-19.00','-20','Inclusive','branch','Inventory','','','','',''),('316795942132461392',903,'31679593197','48','1.00','20','retail','0','2023-03-23 20:56:52','','','','0','Cash',0.00,'20','','','3','','1','2023-03-23 17:56:56','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','392.00','391','Inclusive','branch','None Inventory','1110','4000','5500','',''),('416795990264292432',904,'41679599026','59','1.00','150','retail','0','2023-03-23 22:17:06','','','','100','Cash',0.00,'150','','','4','','1','2023-03-23 19:17:10','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Service','1110','4000','5500','',''),('416796448842468392',905,'41679644883','59','1.00','150','retail','0','2023-03-24 11:01:24','','','','100','Cash',0.00,'150','','','4','','1','2023-03-24 08:01:33','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Service','1110','4000','5500','',''),('416796478434242432',906,'41679647842','11','1.00','250','retail','0','2023-03-24 11:50:42','','','','0','Cash',0.00,'250','','','4','','1','2023-03-24 08:50:57','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','125.00','124','Inclusive','branch','Inventory','','','','',''),('416796562612222032',907,'41679656260','1','1.00','250','retail','0','2023-03-24 14:11:00','','','','0','Cash',0.00,'250','','','4','','1','2023-03-24 11:11:18','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-20.00','-21','Inclusive','branch','Inventory','','','','',''),('416796562747240732',908,'41679656260','48','1.00','20','retail','0','2023-03-24 14:11:13','','','','0','Cash',0.00,'20','','','4','','1','2023-03-24 11:11:18','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','391.00','390','Inclusive','branch','None Inventory','1110','4000','5500','',''),('416796563856726644',909,'41679656385','26','1.00','100','retail','0','2023-03-24 14:13:05','','','','0','Cash',0.00,'100','','','4','','1','2023-03-24 11:13:10','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-8.00','-9','Inclusive','branch','Inventory','','','','',''),('416796597052222032',910,'41679659704','34','1.00','300','retail','0','2023-03-24 15:08:24','','','','0','Cash',0.00,'300','','','4','','1','2023-03-24 12:08:27','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-34.00','-35','Inclusive','branch','Inventory','','','','',''),('316796646734726434',911,'31679664672','16','1.00','200','retail','0','2023-03-24 16:31:12','','','','0','Cash',0.00,'200','','','3','','1','2023-03-24 13:31:17','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-11.00','-12','Inclusive','branch','Inventory','','','','',''),('316796674543421300',912,'31679667453','1','1.00','250','retail','0','2023-03-24 17:17:33','','','','0','Cash',0.00,'250','','','3','','1','2023-03-24 14:17:38','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-21.00','-22','Inclusive','branch','Inventory','','','','',''),('316796675372222032',913,'31679667536','5','1.00','280','retail','0','2023-03-24 17:18:56','','','','0','Cash',0.00,'280','','','3','','1','2023-03-24 14:19:02','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-5.00','-6','Inclusive','branch','Inventory','','','','',''),('316796675537726734',914,'31679667552','21','1.00','200','retail','0','2023-03-24 17:19:12','','','','0','Cash',0.00,'200','','','3','','1','2023-03-24 14:19:14','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-95.00','-96','Inclusive','branch','Inventory','','','','',''),('316796690893022380',915,'31679669088','8','1.00','150','retail','0','2023-03-24 17:44:48','','','','0','Cash',0.00,'150','','','3','','1','2023-03-24 14:45:04','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-25.00','-26','Inclusive','branch','Inventory','','','','',''),('316796691012960392',916,'31679669088','58','1.00','30','retail','0','2023-03-24 17:45:00','','','','15','Cash',0.00,'30','','','3','','1','2023-03-24 14:45:04','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','51.00','50','Inclusive','branch','Service','1110','4000','5500','',''),('416796701493421300',917,'41679670148','40','1.00','600','retail','0','2023-03-24 18:02:28','','','','0','Cash',0.00,'600','','','4','','1','2023-03-24 15:02:32','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-14.00','-15','Inclusive','branch','Inventory','','','','',''),('316796711563421300',918,'31679671155','3','1.00','200','retail','0','2023-03-24 18:19:15','','','','0','Cash',0.00,'200','','','3','','1','2023-03-24 15:19:21','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-28.00','-29','Inclusive','branch','Inventory','','','','',''),('316796727280202039',919,'31679672727','7','1.00','200','retail','0','2023-03-24 18:45:27','','','','0','Cash',0.00,'200','','','3','','1','2023-03-24 15:45:34','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-42.00','-43','Inclusive','branch','Inventory','','','','',''),('316796750634272432',920,'31679675062','21','1.00','200','retail','0','2023-03-24 19:24:22','','','','0','Cash',0.00,'200','','','3','','1','2023-03-24 16:24:26','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-96.00','-97','Inclusive','branch','Inventory','','','','',''),('316796754903022394',921,'31679675489','48','1.00','20','retail','0','2023-03-24 19:31:29','','','','0','Cash',0.00,'20','','','3','','1','2023-03-24 16:31:34','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','390.00','389','Inclusive','branch','None Inventory','1110','4000','5500','',''),('416796789570202039',922,'41679678956','22','1.00','250','retail','0','2023-03-24 20:29:16','','','','0','Cash',0.00,'250','','','4','','1','2023-03-24 17:29:21','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-11.00','-12','Inclusive','branch','Inventory','','','','',''),('316796805482222032',923,'31679680547','48','1.00','20','retail','0','2023-03-24 20:55:47','','','','0','Cash',0.00,'20','','','3','','1','2023-03-24 17:55:51','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','389.00','388','Inclusive','branch','None Inventory','1110','4000','5500','',''),('416796808873421300',924,'41679680886','1','1.00','250','retail','0','2023-03-24 21:01:26','','','','0','Cash',0.00,'250','','','4','','1','2023-03-24 18:01:53','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-22.00','-23','Inclusive','branch','Inventory','','','','',''),('416796809052222032',925,'41679680886','26','1.00','100','retail','0','2023-03-24 21:01:44','','','','0','Cash',0.00,'100','','','4','','1','2023-03-24 18:01:53','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-9.00','-10','Inclusive','branch','Inventory','','','','',''),('316796823903022393',926,'31679682389','43','1.00','600','retail','0','2023-03-24 21:26:29','','','','0','Cash',0.00,'600','','','3','','1','2023-03-24 18:27:54','','9','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-9.00','-10','Inclusive','branch','Inventory','','','','',''),('316796823942726234',927,'31679682389','43','1.00','600','retail','0','2023-03-24 21:26:33','','','','0','Cash',0.00,'600','','','3','','1','2023-03-24 18:27:54','','9','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-10.00','-11','Inclusive','branch','Inventory','','','','',''),('316796824022222032',928,'31679682389','21','1.00','200','retail','0','2023-03-24 21:26:41','','','','0','Cash',0.00,'200','','','3','','1','2023-03-24 18:27:54','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-97.00','-98','Inclusive','branch','Inventory','','','','',''),('316796824702267392',929,'31679682389','1','1.00','250','retail','0','2023-03-24 21:27:49','','','','0','Cash',0.00,'250','','','3','','1','2023-03-24 18:27:54','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-23.00','-24','Inclusive','branch','Inventory','','','','',''),('416797287013022307',930,'41679728700','59','1.00','150','retail','0','2023-03-25 10:18:20','','','','100','Cash',0.00,'150','','','4','','1','2023-03-25 07:18:30','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Service','1110','4000','5500','',''),('416797287307200732',931,'41679728729','59','1.00','150','retail','0','2023-03-25 10:18:49','','','','100','Cash',0.00,'150','','','4','','1','2023-03-25 07:18:53','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Service','1110','4000','5500','',''),('416797287474222432',932,'41679728747','22','1.00','250','retail','0','2023-03-25 10:19:07','','','','0','Cash',0.00,'250','','','4','','1','2023-03-25 07:19:11','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-12.00','-13','Inclusive','branch','Inventory','','','','',''),('416797351433421300',933,'41679735142','3','1.00','200','retail','0','2023-03-25 12:05:42','','','','0','Cash',0.00,'200','','','4','','1','2023-03-25 09:05:46','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-29.00','-30','Inclusive','branch','Inventory','','','','',''),('416797351620202039',934,'41679735162','59','1.00','150','retail','0','2023-03-25 12:06:02','','','','100','Cash',0.00,'150','','','4','','1','2023-03-25 09:06:07','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Service','1110','4000','5500','',''),('416797459497290732',935,'41679745948','38','1.00','350','retail','0','2023-03-25 15:05:48','','','','0','Cash',0.00,'350','','','4','','1','2023-03-25 12:05:58','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-84.00','-85','Inclusive','branch','Inventory','','','','',''),('416797459553022359',936,'41679745948','38','1.00','350','retail','0','2023-03-25 15:05:54','','','','0','Cash',0.00,'350','','','4','','1','2023-03-25 12:05:58','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-85.00','-86','Inclusive','branch','Inventory','','','','',''),('416797459682566392',937,'41679745967','34','1.00','300','retail','0','2023-03-25 15:06:07','','','','0','Cash',0.00,'300','','','4','','1','2023-03-25 12:06:12','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-35.00','-36','Inclusive','branch','Inventory','','','','',''),('416797460280202039',938,'41679746027','49','1.00','15','retail','0','2023-03-25 15:07:07','','','','10','Cash',0.00,'15','','','4','','1','2023-03-25 12:07:12','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','199.00','198','Inclusive','branch','None Inventory','1110','4000','5500','',''),('416797503510727044',939,'41679750351','1','1.00','250','retail','0','2023-03-25 16:19:11','','','','0','Cash',0.00,'250','','','4','','1','2023-03-25 13:19:14','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-24.00','-25','Inclusive','branch','Inventory','','','','',''),('416797503773421300',940,'41679750376','36','1.00','400','retail','0','2023-03-25 16:19:36','','','','0','Cash',0.00,'400','','','4','','1','2023-03-25 13:19:41','','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-8.00','-9','Inclusive','branch','Inventory','','','','',''),('416797514403022344',941,'41679751439','49','1.00','15','retail','0','2023-03-25 16:37:19','','','','10','Cash',0.00,'15','','','4','','1','2023-03-25 13:37:24','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','198.00','197','Inclusive','branch','None Inventory','1110','4000','5500','',''),('316797525503421300',942,'31679752549','34','1.00','300','retail','0','2023-03-25 16:55:49','','','','0','Cash',0.00,'300','','','3','','1','2023-03-25 13:56:25','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-36.00','-37','Inclusive','branch','Inventory','','','','',''),('316797525812268392',943,'31679752549','26','1.00','100','retail','0','2023-03-25 16:56:20','','','','0','Cash',0.00,'100','','','3','','1','2023-03-25 13:56:25','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-10.00','-11','Inclusive','branch','Inventory','','','','',''),('316797549962469392',944,'31679754995','11','1.00','250','retail','0','2023-03-25 17:36:35','','','','0','Cash',0.00,'250','','','3','','1','2023-03-25 14:38:30','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','124.00','123','Inclusive','branch','Inventory','','','','',''),('316797550184252432',945,'31679754995','16','1.00','200','retail','0','2023-03-25 17:36:58','','','','0','Cash',0.00,'200','','','3','','1','2023-03-25 14:38:30','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-12.00','-13','Inclusive','branch','Inventory','','','','',''),('316797550873421300',946,'31679754995','47','1.00','200','retail','0','2023-03-25 17:38:06','','','','0','Cash',0.00,'200','','','3','','1','2023-03-25 14:38:30','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','48.00','47','Inclusive','branch','Inventory','','','','',''),('316797550923022390',947,'31679754995','47','1.00','200','retail','0','2023-03-25 17:38:11','','','','0','Cash',0.00,'200','','','3','','1','2023-03-25 14:38:30','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','47.00','46','Inclusive','branch','Inventory','','','','',''),('316797564213421300',948,'31679756420','38','1.00','350','retail','0','2023-03-25 18:00:20','','','','0','Cash',0.00,'350','','','3','','1','2023-03-25 15:01:32','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-86.00','-87','Inclusive','branch','Inventory','','','','',''),('316797564372663392',949,'31679756420','63','1.00','200','retail','0','2023-03-25 18:00:36','','','','150','Cash',0.00,'200','','','3','','1','2023-03-25 15:01:32','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Service','1110','4000','5500','',''),('316797564856727634',950,'31679756420','48','1.00','20','retail','0','2023-03-25 18:01:24','','','','0','Cash',0.00,'20','','','3','','1','2023-03-25 15:01:32','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','388.00','387','Inclusive','branch','None Inventory','1110','4000','5500','',''),('316797564887280732',951,'31679756420','48','1.00','20','retail','0','2023-03-25 18:01:27','','','','0','Cash',0.00,'20','','','3','','1','2023-03-25 15:01:32','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','387.00','386','Inclusive','branch','None Inventory','1110','4000','5500','',''),('316797620842727234',952,'31679762083','5','1.00','280','retail','0','2023-03-25 19:34:43','','','','0','Cash',0.00,'280','','','3','','1','2023-03-25 16:35:23','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-6.00','-7','Inclusive','branch','Inventory','','','','',''),('316797621171073703',953,'31679762083','7','1.00','200','retail','0','2023-03-25 19:35:16','','','','0','Cash',0.00,'200','','','3','','1','2023-03-25 16:35:23','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-43.00','-44','Inclusive','branch','Inventory','','','','',''),('416797642874262432',954,'41679764286','49','1.00','15','retail','0','2023-03-25 20:11:26','','','','10','Cash',0.00,'15','','','4','','1','2023-03-25 17:11:37','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','197.00','196','Inclusive','branch','None Inventory','1110','4000','5500','',''),('416797642934262432',955,'41679764286','34','1.00','300','retail','0','2023-03-25 20:11:32','','','','0','Cash',0.00,'300','','','4','','1','2023-03-25 17:11:37','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-38.00','-39','Inclusive','branch','Inventory','','','','',''),('316797702382222032',956,'31679770238','38','1.00','350','retail','0','2023-03-25 21:50:38','','','','0','Cash',0.00,'350','','','3','','1','2023-03-25 18:51:12','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-87.00','-88','Inclusive','branch','Inventory','','','','',''),('316798224312222032',957,'31679822430','21','1.00','200','retail','0','2023-03-26 12:20:30','','','','0','Cash',0.00,'200','','','3','','1','2023-03-26 09:20:51','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-98.00','-99','Inclusive','branch','Inventory','','','','',''),('316798224417210732',958,'31679822430','46','1.00','200','retail','0','2023-03-26 12:20:40','','','','0','Cash',0.00,'200','','','3','','1','2023-03-26 09:20:51','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Inventory','','','','',''),('316798364110202039',959,'31679836410','1','1.00','250','retail','0','2023-03-26 16:13:30','','','','0','Cash',0.00,'250','','','3','','1','2023-03-26 13:13:37','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-25.00','-26','Inclusive','branch','Inventory','','','','',''),('316798364348308940',960,'31679836433','21','1.00','200','retail','0','2023-03-26 16:13:53','','','','0','Cash',0.00,'200','','','3','','1','2023-03-26 13:13:57','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-99.00','-100','Inclusive','branch','Inventory','','','','',''),('416798375822768392',961,'41679837582','60','1.00','100','retail','0','2023-03-26 16:33:02','','','','70','Cash',0.00,'100','','','4','','1','2023-03-26 13:33:06','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','29.00','28','Inclusive','branch','Inventory','1110','4000','5500','',''),('316798377577728734',962,'31679837756','21','1.00','200','retail','0','2023-03-26 16:35:56','','','','0','Cash',0.00,'200','','','3','','1','2023-03-26 13:35:59','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-100.00','-101','Inclusive','branch','Inventory','','','','',''),('416798384542865392',963,'41679838453','1','1.00','250','retail','0','2023-03-26 16:47:33','','','','0','Cash',0.00,'250','','','4','','1','2023-03-26 13:49:40','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-26.00','-27','Inclusive','branch','Inventory','','','','',''),('416798384573421300',964,'41679838453','1','1.00','250','retail','0','2023-03-26 16:47:36','','','','0','Cash',0.00,'250','','','4','','1','2023-03-26 13:49:40','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-27.00','-28','Inclusive','branch','Inventory','','','','',''),('416798384612866392',965,'41679838453','1','1.00','250','retail','0','2023-03-26 16:47:40','','','','0','Cash',0.00,'250','','','4','','1','2023-03-26 13:49:40','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-28.00','-29','Inclusive','branch','Inventory','','','','',''),('416798384692866392',966,'41679838453','47','1.00','200','retail','0','2023-03-26 16:47:48','','','','0','Cash',0.00,'200','','','4','','1','2023-03-26 13:49:40','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','46.00','45','Inclusive','branch','Inventory','','','','',''),('416798384710202039',967,'41679838453','46','1.00','200','retail','0','2023-03-26 16:47:50','','','','0','Cash',0.00,'200','','','4','','1','2023-03-26 13:49:40','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','49.00','48','Inclusive','branch','Inventory','','','','',''),('416798387484233723',968,'41679838747','52','1.00','150','retail','0','2023-03-26 16:52:27','','','','200','Cash',0.00,'150','','','4','','1','2023-03-26 13:52:40','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416798387524232432',969,'41679838747','52','1.00','150','retail','0','2023-03-26 16:52:31','','','','200','Cash',0.00,'150','','','4','','1','2023-03-26 13:52:40','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316798399410202039',970,'31679839940','12','1.00','200','retail','0','2023-03-26 17:12:20','','','','0','Cash',0.00,'200','','','3','','1','2023-03-26 14:12:24','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-19.00','-20','Inclusive','branch','Inventory','','','','',''),('416798467622222032',971,'41679846761','38','1.00','350','retail','0','2023-03-26 19:06:01','','','','0','Cash',0.00,'350','','','4','','1','2023-03-26 16:06:12','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-88.00','-89','Inclusive','branch','Inventory','','','','',''),('416798510753421300',972,'41679851074','38','1.00','350','retail','0','2023-03-26 20:17:54','','','','0','Cash',0.00,'350','','','4','','1','2023-03-26 17:17:58','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-89.00','-90','Inclusive','branch','Inventory','','','','',''),('416798559465728544',973,'41679855945','19','1.00','200','retail','0','2023-03-26 21:39:05','','','','0','Cash',0.00,'200','','','4','','1','2023-03-26 18:39:18','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-1.00','-2','Inclusive','branch','Inventory','','','','',''),('416799034274202432',974,'41679903426','52','1.00','150','retail','0','2023-03-27 10:50:26','','','','200','Cash',0.00,'150','','','4','','1','2023-03-27 07:50:30','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416799034463729344',975,'41679903445','16','1.00','200','retail','0','2023-03-27 10:50:45','','','','0','Cash',0.00,'200','','','4','','1','2023-03-27 07:50:50','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-13.00','-14','Inclusive','branch','Inventory','','','','',''),('416799034782367392',976,'41679903477','21','1.00','200','retail','0','2023-03-27 10:51:17','','','','0','Cash',0.00,'200','','','4','','1','2023-03-27 07:51:25','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-101.00','-102','Inclusive','branch','Inventory','','','','',''),('416799233992222032',977,'41679923398','59','1.00','150','retail','0','2023-03-27 16:23:18','','','','100','Cash',0.00,'150','','','4','','1','2023-03-27 13:23:22','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Service','1110','4000','5500','',''),('416799240858233023',978,'41679924084','38','1.00','350','retail','0','2023-03-27 16:34:44','','','','0','Cash',0.00,'350','','','4','','1','2023-03-27 13:34:47','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-90.00','-91','Inclusive','branch','Inventory','','','','',''),('416799280410202039',979,'41679928040','12','1.00','200','retail','0','2023-03-27 17:40:40','','','','0','Cash',0.00,'200','','','4','','1','2023-03-27 14:40:44','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-20.00','-21','Inclusive','branch','Inventory','','','','',''),('416799295470202039',980,'41679929546','12','1.00','200','retail','0','2023-03-27 18:05:46','','','','0','Cash',0.00,'200','','','4','','1','2023-03-27 15:05:50','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-21.00','-22','Inclusive','branch','Inventory','','','','',''),('416799327972222032',981,'41679932796','21','1.00','200','retail','0','2023-03-27 18:59:56','','','','0','Cash',0.00,'200','','','4','','1','2023-03-27 16:00:02','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-102.00','-103','Inclusive','branch','Inventory','','','','',''),('416799880033022300',982,'41679988002','5','1.00','280','retail','0','2023-03-28 10:20:02','','','','0','Cash',0.00,'280','','','4','','1','2023-03-28 07:20:10','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-7.00','-8','Inclusive','branch','Inventory','','','','',''),('416799966202222032',983,'41679996620','59','1.00','150','retail','0','2023-03-28 12:43:40','','','','100','Cash',0.00,'150','','','4','','1','2023-03-28 09:43:45','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Service','1110','4000','5500','',''),('416799966503421300',984,'41679996648','54','1.00','350','retail','0','2023-03-28 12:44:09','','','','200','Cash',0.00,'350','','','4','','1','2023-03-28 09:44:19','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Service','1110','4000','5500','',''),('416799984832868392',985,'41679998482','12','1.00','200','retail','0','2023-03-28 13:14:42','','','','0','Cash',0.00,'200','','','4','','1','2023-03-28 10:14:50','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-22.00','-23','Inclusive','branch','Inventory','','','','',''),('416800047472222032',986,'41680004746','34','1.00','300','retail','0','2023-03-28 14:59:07','','','','0','Cash',0.00,'300','','','4','','1','2023-03-28 11:59:16','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-38.00','-39','Inclusive','branch','Inventory','','','','',''),('416800047522465302',987,'41680004746','57','1.00','350','retail','0','2023-03-28 14:59:11','','','','200','Cash',0.00,'350','','','4','','1','2023-03-28 11:59:16','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Service','1110','4000','5500','',''),('316800069292222032',988,'31680006928','31','1.00','200','retail','0','2023-03-28 15:35:28','','','','0','Cash',0.00,'200','','','3','','1','2023-03-28 12:35:34','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-9.00','-10','Inclusive','branch','Inventory','','','','',''),('316800069713022379',989,'31680006970','23','1.00','250','retail','0','2023-03-28 15:36:10','','','','0','Cash',0.00,'250','','','3','','1','2023-03-28 12:36:31','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-17.00','-18','Inclusive','branch','Inventory','','','','',''),('316800069844202432',990,'31680006970','29','1.00','300','retail','0','2023-03-28 15:36:24','','','','0','Cash',0.00,'300','','','3','','1','2023-03-28 12:36:31','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-13.00','-14','Inclusive','branch','Inventory','','','','',''),('416800144512465302',991,'41680014450','11','1.00','250','retail','0','2023-03-28 17:40:50','','','','0','Cash',0.00,'250','','','4','','1','2023-03-28 14:40:53','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','123.00','122','Inclusive','branch','Inventory','','','','',''),('416800147690202030',992,'41680014768','3','1.00','200','retail','0','2023-03-28 17:46:08','','','','0','Cash',0.00,'200','','','4','','1','2023-03-28 14:46:18','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-30.00','-31','Inclusive','branch','Inventory','','','','',''),('416800160373022330',993,'41680016036','54','1.00','350','retail','0','2023-03-28 18:07:16','','','','200','Cash',0.00,'350','','','4','','1','2023-03-28 15:07:24','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Service','1110','4000','5500','',''),('416800160572222032',994,'41680016056','1','1.00','250','retail','0','2023-03-28 18:07:36','','','','0','Cash',0.00,'250','','','4','','1','2023-03-28 15:07:49','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-29.00','-30','Inclusive','branch','Inventory','','','','',''),('416800160634212432',995,'41680016056','34','1.00','300','retail','0','2023-03-28 18:07:42','','','','0','Cash',0.00,'300','','','4','','1','2023-03-28 15:07:49','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-39.00','-40','Inclusive','branch','Inventory','','','','',''),('316800166284212432',996,'31680016627','23','1.00','250','retail','0','2023-03-28 18:17:07','','','','0','Cash',0.00,'250','','','3','','1','2023-03-28 15:17:27','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-18.00','-19','Inclusive','branch','Inventory','','','','',''),('316800166384212432',997,'31680016627','1','1.00','250','retail','0','2023-03-28 18:17:18','','','','0','Cash',0.00,'250','','','3','','1','2023-03-28 15:17:27','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-30.00','-31','Inclusive','branch','Inventory','','','','',''),('316800191794212432',998,'31680019178','38','1.00','350','retail','0','2023-03-28 18:59:38','','','','0','Cash',0.00,'350','','','3','','1','2023-03-28 15:59:42','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-91.00','-92','Inclusive','branch','Inventory','','','','',''),('316800200312222032',999,'31680020030','23','1.00','250','retail','0','2023-03-28 19:13:50','','','','0','Cash',0.00,'250','','','3','','1','2023-03-28 16:13:53','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-19.00','-20','Inclusive','branch','Inventory','','','','',''),('316800213884222432',1000,'31680021387','38','1.00','350','retail','0','2023-03-28 19:36:27','','','','0','Cash',0.00,'350','','','3','','1','2023-03-28 16:36:43','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-92.00','-93','Inclusive','branch','Inventory','','','','',''),('316800213933022393',1001,'31680021387','38','1.00','350','retail','0','2023-03-28 19:36:32','','','','0','Cash',0.00,'350','','','3','','1','2023-03-28 16:36:43','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-93.00','-94','Inclusive','branch','Inventory','','','','',''),('316800232990202030',1002,'31680023298','5','1.00','280','retail','0','2023-03-28 20:08:18','','','','0','Cash',0.00,'280','','','3','','1','2023-03-28 17:08:37','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-8.00','-9','Inclusive','branch','Inventory','','','','',''),('316800254633421300',1003,'31680025462','38','1.00','350','retail','0','2023-03-28 20:44:22','','','','0','Cash',0.00,'350','','','3','','1','2023-03-28 17:44:27','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-94.00','-95','Inclusive','branch','Inventory','','','','',''),('316800280478270832',1004,'31680028046','61','1.00','150','retail','0','2023-03-28 21:27:26','','','','100','Cash',0.00,'150','','','3','','1','2023-03-28 18:27:31','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Service','1110','4000','5500','',''),('316800281462864302',1005,'31680028145','1','1.00','250','retail','0','2023-03-28 21:29:06','','','','0','Cash',0.00,'250','','','3','','1','2023-03-28 18:29:09','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-31.00','-32','Inclusive','branch','Inventory','','','','',''),('316800286694222432',1006,'31680028668','7','1.00','200','retail','0','2023-03-28 21:37:48','','','','0','Cash',0.00,'200','','','3','','1','2023-03-28 18:37:51','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-44.00','-45','Inclusive','branch','Inventory','','','','',''),('316800718801820134',1007,'31680071879','21','1.00','200','retail','0','2023-03-29 09:37:59','','','','0','Cash',0.00,'200','','','3','','1','2023-03-29 06:38:04','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-103.00','-104','Inclusive','branch','Inventory','','','','',''),('316800731862368302',1008,'31680073185','21','1.00','200','retail','0','2023-03-29 09:59:45','','','','0','Cash',0.00,'200','','','3','','1','2023-03-29 06:59:50','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-104.00','-105','Inclusive','branch','Inventory','','','','',''),('316800838392222032',1009,'31680083838','38','1.00','350','retail','0','2023-03-29 12:57:18','','','','0','Cash',0.00,'350','','','3','','1','2023-03-29 09:57:21','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-95.00','-96','Inclusive','branch','Inventory','','','','',''),('316800847838230832',1010,'31680084782','21','1.00','200','retail','0','2023-03-29 13:13:02','','','','0','Cash',0.00,'200','','','3','','1','2023-03-29 10:13:06','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-105.00','-106','Inclusive','branch','Inventory','','','','',''),('316800848151233823',1011,'31680084814','21','1.00','200','retail','0','2023-03-29 13:13:34','','','','0','Cash',0.00,'200','','','3','','1','2023-03-29 10:13:38','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-106.00','-107','Inclusive','branch','Inventory','','','','',''),('316800918828220832',1012,'31680091881','4','1.00','150','retail','0','2023-03-29 15:11:21','','','','0','Cash',0.00,'150','','','3','','1','2023-03-29 12:11:25','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-10.00','-11','Inclusive','branch','Inventory','','','','',''),('316800921272233123',1013,'31680092126','6','1.00','250','retail','0','2023-03-29 15:15:26','','','','0','Cash',0.00,'250','','','3','','1','2023-03-29 12:15:37','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-14.00','-15','Inclusive','branch','Inventory','','','','',''),('316800982428220832',1014,'31680098241','3','1.00','200','retail','0','2023-03-29 16:57:21','','','','0','Cash',0.00,'200','','','3','','1','2023-03-29 13:57:25','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-31.00','-32','Inclusive','branch','Inventory','','','','',''),('316800992030202030',1015,'31680099202','21','1.00','200','retail','0','2023-03-29 17:13:22','','','','0','Cash',0.00,'200','','','3','','1','2023-03-29 14:13:29','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-107.00','-108','Inclusive','branch','Inventory','','','','',''),('316801016692166302',1016,'31680101668','3','1.00','200','retail','0','2023-03-29 17:54:28','','','','0','Cash',0.00,'200','','','3','','1','2023-03-29 14:54:32','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-32.00','-33','Inclusive','branch','Inventory','','','','',''),('316801038418210832',1017,'31680103841','20','1.00','200','retail','0','2023-03-29 18:30:41','','','','0','Cash',0.00,'200','','','3','','1','2023-03-29 15:30:45','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-28.00','-29','Inclusive','branch','Inventory','','','','',''),('316801047922222032',1018,'31680104791','38','1.00','350','retail','0','2023-03-29 18:46:31','','','','0','Cash',0.00,'350','','','3','','1','2023-03-29 15:47:09','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-96.00','-97','Inclusive','branch','Inventory','','','','',''),('316801048233022328',1019,'31680104791','32','1.00','300','retail','0','2023-03-29 18:47:02','','','','0','Cash',0.00,'300','','','3','','1','2023-03-29 15:47:09','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-17.00','-18','Inclusive','branch','Inventory','','','','',''),('316801068686821634',1020,'31680106867','38','1.00','350','retail','0','2023-03-29 19:21:07','','','','0','Cash',0.00,'350','','','3','','1','2023-03-29 16:21:10','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-97.00','-98','Inclusive','branch','Inventory','','','','',''),('316801079632222032',1021,'31680107963','1','1.00','250','retail','0','2023-03-29 19:39:23','','','','0','Cash',0.00,'250','','','3','','1','2023-03-29 16:39:41','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-32.00','-33','Inclusive','branch','Inventory','','','','',''),('316801079770202030',1022,'31680107963','62','1.00','200','retail','0','2023-03-29 19:39:36','','','','200','Cash',0.00,'200','','','3','','1','2023-03-29 16:39:41','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','29.00','28','Inclusive','branch','Inventory','1110','4000','5500','',''),('316801088078821834',1023,'31680108806','52','1.00','150','retail','0','2023-03-29 19:53:26','','','','200','Cash',0.00,'150','','','3','','1','2023-03-29 16:53:30','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316801117922169302',1024,'31680111792','38','1.00','350','retail','0','2023-03-29 20:43:12','','','','0','Cash',0.00,'350','','','3','','1','2023-03-29 17:43:19','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-98.00','-99','Inclusive','branch','Inventory','','','','',''),('316801120482821234',1025,'31680112048','38','1.00','350','retail','0','2023-03-29 20:47:28','','','','0','Cash',0.00,'350','','','3','','1','2023-03-29 17:47:33','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-99.00','-100','Inclusive','branch','Inventory','','','','',''),('316801120708200832',1026,'31680112069','52','1.00','150','retail','0','2023-03-29 20:47:49','','','','200','Cash',0.00,'150','','','3','','1','2023-03-29 17:47:52','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316801123342263302',1027,'31680112333','46','1.00','200','retail','0','2023-03-29 20:52:13','','','','0','Cash',0.00,'200','','','3','','1','2023-03-29 17:52:17','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','48.00','47','Inclusive','branch','Inventory','','','','',''),('316801147073421300',1028,'31680114706','15','1.00','200','retail','0','2023-03-29 21:31:46','','','','0','Cash',0.00,'200','','','3','','1','2023-03-29 18:31:50','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-5.00','-6','Inclusive','branch','Inventory','','','','',''),('316801156780202030',1029,'31680115677','36','1.00','400','retail','0','2023-03-29 21:47:57','','','','0','Cash',0.00,'400','','','3','','1','2023-03-29 18:48:00','','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-9.00','-10','Inclusive','branch','Inventory','','','','',''),('316801655654262432',1030,'31680165564','15','1.00','200','retail','0','2023-03-30 11:39:24','','','','0','Cash',0.00,'200','','','3','','1','2023-03-30 08:39:31','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-6.00','-7','Inclusive','branch','Inventory','','','','',''),('316801679543421300',1031,'31680167953','54','1.00','350','retail','0','2023-03-30 12:19:13','','','','200','Cash',0.00,'350','','','3','','1','2023-03-30 09:19:27','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Service','1110','4000','5500','',''),('316801707872222032',1032,'31680170786','20','1.00','200','retail','0','2023-03-30 13:06:26','','','','0','Cash',0.00,'200','','','3','','1','2023-03-30 10:06:46','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-29.00','-30','Inclusive','branch','Inventory','','','','',''),('316801708028220832',1033,'31680170786','48','1.00','20','retail','0','2023-03-30 13:06:41','','','','0','Cash',0.00,'20','','','3','','1','2023-03-30 10:06:46','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','386.00','385','Inclusive','branch','None Inventory','1110','4000','5500','',''),('316801709014272432',1034,'31680170900','59','1.00','150','retail','0','2023-03-30 13:08:20','','','','100','Cash',0.00,'150','','','3','','1','2023-03-30 10:08:24','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Service','1110','4000','5500','',''),('316801753058250832',1035,'31680175304','6','1.00','250','retail','0','2023-03-30 14:21:44','','','','0','Cash',0.00,'250','','','3','','1','2023-03-30 11:21:52','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-15.00','-16','Inclusive','branch','Inventory','','','','',''),('316801798948240832',1036,'31680179894','21','1.00','200','retail','0','2023-03-30 15:38:14','','','','0','Cash',0.00,'200','','','3','','1','2023-03-30 12:38:45','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-108.00','-109','Inclusive','branch','Inventory','','','','',''),('416801811803421300',1037,'41680181179','38','1.00','350','retail','0','2023-03-30 15:59:39','','','','0','Cash',0.00,'350','','','4','','1','2023-03-30 12:59:43','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-100.00','-101','Inclusive','branch','Inventory','','','','',''),('416801829332821244',1038,'41680182932','54','1.00','350','retail','0','2023-03-30 16:28:52','','','','200','Cash',0.00,'350','','','4','','1','2023-03-30 13:28:56','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Service','1110','4000','5500','',''),('416801829622266302',1039,'41680182961','21','1.00','200','retail','0','2023-03-30 16:29:21','','','','0','Cash',0.00,'200','','','4','','1','2023-03-30 13:29:30','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-109.00','-110','Inclusive','branch','Inventory','','','','',''),('416801829663022369',1040,'41680182961','21','1.00','200','retail','0','2023-03-30 16:29:25','','','','0','Cash',0.00,'200','','','4','','1','2023-03-30 13:29:30','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-110.00','-111','Inclusive','branch','Inventory','','','','',''),('416801841323421300',1041,'41680184131','60','1.00','100','retail','0','2023-03-30 16:48:51','','','','70','Cash',0.00,'100','','','4','','1','2023-03-30 13:48:55','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','28.00','27','Inclusive','branch','Inventory','1110','4000','5500','',''),('416801854745821544',1042,'41680185473','21','1.00','200','retail','0','2023-03-30 17:11:13','','','','0','Cash',0.00,'200','','','4','','1','2023-03-30 14:11:18','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-111.00','-112','Inclusive','branch','Inventory','','','','',''),('416801855614282432',1043,'41680185559','59','1.00','150','retail','0','2023-03-30 17:12:40','','','','100','Cash',0.00,'150','','','4','','1','2023-03-30 14:16:19','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Service','1110','4000','5500','',''),('416801912144292432',1044,'41680191213','21','1.00','200','retail','0','2023-03-30 18:46:53','','','','0','Cash',0.00,'200','','','4','','1','2023-03-30 15:46:59','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-112.00','-113','Inclusive','branch','Inventory','','','','',''),('416801917482222032',1045,'41680191747','11','1.00','250','retail','0','2023-03-30 18:55:47','','','','0','Cash',0.00,'250','','','4','','1','2023-03-30 15:55:51','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','122.00','121','Inclusive','branch','Inventory','','','','',''),('416801947480202030',1046,'41680194747','38','1.00','350','retail','0','2023-03-30 19:45:48','','','','0','Cash',0.00,'350','','','4','','1','2023-03-30 16:46:06','','7','printed','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-101.00','-102','Inclusive','branch','Inventory','','','','',''),('416801948074292432',1048,'41680194806','38','1.00','350','retail','0','2023-03-30 19:46:46','','','','0','Cash',0.00,'350','','','4','','1','2023-03-30 16:46:52','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-102.00','-103','Inclusive','branch','Inventory','','','','',''),('416801955973022395',1049,'41680195596','21','1.00','200','retail','0','2023-03-30 19:59:56','','','','0','Cash',0.00,'200','','','4','','1','2023-03-30 17:00:01','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-113.00','-114','Inclusive','branch','Inventory','','','','',''),('416801956125821544',1050,'41680195611','58','1.00','30','retail','0','2023-03-30 20:00:11','','','','15','Cash',0.00,'30','','','4','','1','2023-03-30 17:00:14','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','51.00','50','Inclusive','branch','Service','1110','4000','5500','',''),('416801966662222032',1051,'41680196665','3','1.00','200','retail','0','2023-03-30 20:17:45','','','','0','Cash',0.00,'200','','','4','','1','2023-03-30 17:17:52','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-33.00','-34','Inclusive','branch','Inventory','','','','',''),('416801981302863302',1052,'41680198129','38','1.00','350','retail','0','2023-03-30 20:42:10','','','','0','Cash',0.00,'350','','','4','','1','2023-03-30 17:42:14','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-103.00','-104','Inclusive','branch','Inventory','','','','',''),('416801987073022307',1053,'41680198706','21','1.00','200','retail','0','2023-03-30 20:51:46','','','','0','Cash',0.00,'200','','','4','','1','2023-03-30 17:51:50','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-114.00','-115','Inclusive','branch','Inventory','','','','',''),('416801991142961302',1054,'41680199113','58','1.00','30','retail','0','2023-03-30 20:58:33','','','','15','Cash',0.00,'30','','','4','','1','2023-03-30 17:58:36','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','51.00','50','Inclusive','branch','Service','1110','4000','5500','',''),('416801998424292432',1055,'41680199841','52','1.00','150','retail','0','2023-03-30 21:10:41','','','','200','Cash',0.00,'150','','','4','','1','2023-03-30 18:10:45','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316802038873822334',1056,'31680203886','20','1.00','200','retail','0','2023-03-30 22:18:06','','','','0','Cash',0.00,'200','','','3','','1','2023-03-30 19:18:09','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-30.00','-31','Inclusive','branch','Inventory','','','','',''),('316802438122222032',1057,'31680243811','2','1.00','200','retail','0','2023-03-31 09:23:31','','','','0','Cash',0.00,'200','','','3','','1','2023-03-31 06:24:20','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-23.00','-24','Inclusive','branch','Inventory','','','','',''),('316802438213421300',1058,'31680243811','48','1.00','20','retail','0','2023-03-31 09:23:40','','','','0','Cash',0.00,'20','','','3','','1','2023-03-31 06:24:20','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','385.00','384','Inclusive','branch','None Inventory','1110','4000','5500','',''),('416802455720202030',1059,'41680245571','59','1.00','150','retail','0','2023-03-31 09:52:51','','','','100','Cash',0.00,'150','','','4','','1','2023-03-31 06:52:56','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','32.00','31','Inclusive','branch','Service','1110','4000','5500','',''),('416802493629822944',1060,'41680249361','7','1.00','200','retail','0','2023-03-31 10:56:01','','','','0','Cash',0.00,'200','','','4','','1','2023-03-31 07:56:05','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-45.00','-46','Inclusive','branch','Inventory','','','','',''),('316802591213223010',1061,'31680259120','59','1.00','150','retail','0','2023-03-31 13:38:40','','','','100','Cash',0.00,'150','','','3','','1','2023-03-31 10:38:43','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','32.00','31','Inclusive','branch','Service','1110','4000','5500','',''),('316802717124272432',1062,'31680271711','11','1.00','250','retail','0','2023-03-31 17:08:31','','','','0','Cash',0.00,'250','','','3','','1','2023-03-31 14:08:36','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','121.00','120','Inclusive','branch','Inventory','','','','',''),('316802717263202222',1063,'31680271724','5','1.00','280','retail','0','2023-03-31 17:08:45','','','','0','Cash',0.00,'280','','','3','','1','2023-03-31 14:08:48','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-9.00','-10','Inclusive','branch','Inventory','','','','',''),('316802764566822634',1064,'31680276455','52','1.00','150','retail','0','2023-03-31 18:27:35','','','','200','Cash',0.00,'150','','','3','','1','2023-03-31 15:27:39','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316802764950202030',1065,'31680276495','20','1.00','200','retail','0','2023-03-31 18:28:15','','','','0','Cash',0.00,'200','','','3','','1','2023-03-31 15:28:19','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-31.00','-32','Inclusive','branch','Inventory','','','','',''),('416802765264272432',1066,'41680276525','2','1.00','250','retail','0','2023-03-31 18:28:45','','','','0','Cash',0.00,'250','','','4','','1','2023-03-31 15:28:49','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-24.00','-25','Inclusive','branch','Inventory','','','','',''),('416802765466822644',1067,'41680276545','31','1.00','200','retail','0','2023-03-31 18:29:05','','','','0','Cash',0.00,'200','','','4','','1','2023-03-31 15:29:10','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-10.00','-11','Inclusive','branch','Inventory','','','','',''),('416802765693022365',1068,'41680276568','24','1.00','100','retail','0','2023-03-31 18:29:28','','','','0','Cash',0.00,'100','','','4','','1','2023-03-31 15:29:32','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-7.00','-8','Inclusive','branch','Inventory','','','','',''),('416802766813421300',1069,'41680276680','38','1.00','350','retail','0','2023-03-31 18:31:20','','','','0','Cash',0.00,'350','','','4','','1','2023-03-31 15:31:23','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-104.00','-105','Inclusive','branch','Inventory','','','','',''),('416802772928220832',1070,'41680277291','20','1.00','200','retail','0','2023-03-31 18:41:31','','','','0','Cash',0.00,'200','','','4','','1','2023-03-31 15:41:35','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-32.00','-33','Inclusive','branch','Inventory','','','','',''),('316802791699822934',1071,'31680279168','38','1.00','350','retail','0','2023-03-31 19:12:48','','','','0','Cash',0.00,'350','','','3','','1','2023-03-31 16:13:00','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-105.00','-106','Inclusive','branch','Inventory','','','','',''),('416802817493022347',1072,'41680281748','23','1.00','250','retail','0','2023-03-31 19:55:48','','','','0','Cash',0.00,'250','','','4','','1','2023-03-31 16:55:52','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-20.00','-21','Inclusive','branch','Inventory','','','','',''),('316802871293022321',1073,'31680287129','24','1.00','100','retail','0','2023-03-31 21:25:29','','','','0','Cash',0.00,'100','','','3','','1','2023-03-31 18:25:33','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-8.00','-9','Inclusive','branch','Inventory','','','','',''),('316802878602222032',1074,'31680287860','58','1.00','30','retail','0','2023-03-31 21:37:40','','','','15','Cash',0.00,'30','','','3','','1','2023-03-31 18:37:44','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','51.00','50','Inclusive','branch','Service','1110','4000','5500','',''),('316802880113421300',1075,'31680288010','1','1.00','300','retail','0','2023-03-31 21:40:10','','','','0','Cash',0.00,'300','','','3','','1','2023-03-31 18:40:25','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-33.00','-34','Inclusive','branch','Inventory','','','','',''),('416802895302222032',1076,'41680289530','7','1.00','200','retail','0','2023-03-31 22:05:30','','','','0','Cash',0.00,'200','','','4','','1','2023-03-31 19:05:40','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-46.00','-47','Inclusive','branch','Inventory','','','','',''),('416802910008200832',1077,'41680290999','46','1.00','200','retail','0','2023-03-31 22:29:59','','','','0','Cash',0.00,'200','','','4','','1','2023-03-31 19:30:25','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','47.00','46','Inclusive','branch','Inventory','','','','',''),('416802910074292432',1078,'41680290999','46','1.00','200','retail','0','2023-03-31 22:30:06','','','','0','Cash',0.00,'200','','','4','','1','2023-03-31 19:30:25','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','46.00','45','Inclusive','branch','Inventory','','','','',''),('416802910120202030',1079,'41680290999','47','1.00','200','retail','0','2023-03-31 22:30:11','','','','0','Cash',0.00,'200','','','4','','1','2023-03-31 19:30:25','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','45.00','44','Inclusive','branch','Inventory','','','','',''),('416802910223022320',1080,'41680290999','20','1.00','200','retail','0','2023-03-31 22:30:21','','','','0','Cash',0.00,'200','','','4','','1','2023-03-31 19:30:25','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-33.00','-34','Inclusive','branch','Inventory','','','','',''),('416803312230202030',1081,'41680331222','22','1.00','250','retail','0','2023-04-01 09:40:22','','','','0','Cash',0.00,'250','','','4','','1','2023-04-01 06:40:31','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-13.00','-14','Inclusive','branch','Inventory','','','','',''),('416803369872222032',1082,'41680336986','58','1.00','30','retail','0','2023-04-01 11:16:26','','','','15','Cash',0.00,'30','','','4','','1','2023-04-01 08:16:30','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','51.00','50','Inclusive','branch','Service','1110','4000','5500','',''),('416803442602466302',1083,'41680344259','1','1.00','300','retail','0','2023-04-01 13:17:39','','','','0','Cash',0.00,'300','','','4','','1','2023-04-01 10:18:00','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-34.00','-35','Inclusive','branch','Inventory','','','','',''),('416803442770202030',1084,'41680344259','24','1.00','100','retail','0','2023-04-01 13:17:57','','','','0','Cash',0.00,'100','','','4','','1','2023-04-01 10:18:00','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-9.00','-10','Inclusive','branch','Inventory','','','','',''),('316803553950202030',1085,'31680355393','34','1.00','300','retail','0','2023-04-01 16:23:13','','','','0','Cash',0.00,'300','','','3','','1','2023-04-01 13:23:19','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-40.00','-41','Inclusive','branch','Inventory','','','','',''),('316803565476823634',1086,'31680356546','38','1.00','350','retail','0','2023-04-01 16:42:26','','','','0','Cash',0.00,'350','','','3','','1','2023-04-01 13:42:52','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-106.00','-107','Inclusive','branch','Inventory','','','','',''),('316803565526823634',1087,'31680356546','38','1.00','350','retail','0','2023-04-01 16:42:31','','','','0','Cash',0.00,'350','','','3','','1','2023-04-01 13:42:52','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-107.00','-108','Inclusive','branch','Inventory','','','','',''),('316803598803421300',1088,'31680359879','3','1.00','200','retail','0','2023-04-01 17:37:59','','','','0','Cash',0.00,'200','','','3','','1','2023-04-01 14:38:03','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-34.00','-35','Inclusive','branch','Inventory','','','','',''),('316803659043421300',1089,'31680365903','52','1.00','150','retail','0','2023-04-01 19:18:23','','','','200','Cash',0.00,'150','','','3','','1','2023-04-01 16:18:27','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316803659642566302',1090,'31680365963','58','1.00','30','retail','0','2023-04-01 19:19:23','','','','15','Cash',0.00,'30','','','3','','1','2023-04-01 16:19:32','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','51.00','50','Inclusive','branch','Service','1110','4000','5500','',''),('316803659683421300',1091,'31680365963','58','1.00','30','retail','0','2023-04-01 19:19:28','','','','15','Cash',0.00,'30','','','3','','1','2023-04-01 16:19:32','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','51.00','50','Inclusive','branch','Service','1110','4000','5500','',''),('316803697503022357',1092,'31680369749','21','1.00','200','retail','0','2023-04-01 20:22:29','','','','0','Cash',0.00,'200','','','3','','1','2023-04-01 17:22:34','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-115.00','-116','Inclusive','branch','Inventory','','','','',''),('316803718843022388',1093,'31680371883','23','1.00','250','retail','0','2023-04-01 20:58:03','','','','0','Cash',0.00,'250','','','3','','1','2023-04-01 17:58:06','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-21.00','-22','Inclusive','branch','Inventory','','','','',''),('316803729543421300',1094,'31680372953','38','1.00','350','retail','0','2023-04-01 21:15:53','','','','0','Cash',0.00,'350','','','3','','1','2023-04-01 18:15:56','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-108.00','-109','Inclusive','branch','Inventory','','','','',''),('316803760374272432',1095,'31680376036','52','1.00','150','retail','0','2023-04-01 22:07:16','','','','200','Cash',0.00,'150','','','3','','1','2023-04-01 19:07:20','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316803796248240832',1096,'31680379624','11','1.00','280','retail','0','2023-04-01 23:07:04','','','','0','Cash',0.00,'280','','','3','','1','2023-04-01 20:07:08','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','120.00','119','Inclusive','branch','Inventory','','','','',''),('316803797533421300',1097,'31680379752','21','1.00','200','retail','0','2023-04-01 23:09:13','','','','0','Cash',0.00,'200','','','3','','1','2023-04-01 20:09:19','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-116.00','-117','Inclusive','branch','Inventory','','','','',''),('316803797569823934',1098,'31680379752','21','1.00','200','retail','0','2023-04-01 23:09:16','','','','0','Cash',0.00,'200','','','3','','1','2023-04-01 20:09:19','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-117.00','-118','Inclusive','branch','Inventory','','','','',''),('316803805098290832',1099,'31680380508','58','1.00','30','retail','0','2023-04-01 23:21:48','','','','15','Cash',0.00,'30','','','3','','1','2023-04-01 20:21:51','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','51.00','50','Inclusive','branch','Service','1110','4000','5500','',''),('316804305732067302',1100,'31680430572','38','1.00','350','retail','0','2023-04-02 13:16:12','','','','0','Cash',0.00,'350','','','3','','1','2023-04-02 10:16:15','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-109.00','-110','Inclusive','branch','Inventory','','','','',''),('316804306144232432',1101,'31680430613','59','1.00','150','retail','0','2023-04-02 13:16:53','','','','100','Cash',0.00,'150','','','3','','1','2023-04-02 10:16:57','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','32.00','31','Inclusive','branch','Service','1110','4000','5500','',''),('416804416902222032',1102,'41680441690','34','1.00','300','retail','0','2023-04-02 16:21:30','','','','0','Cash',0.00,'300','','','4','','1','2023-04-02 13:21:34','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-41.00','-42','Inclusive','branch','Inventory','','','','',''),('416804452463421300',1103,'41680445245','1','1.00','300','retail','0','2023-04-02 17:20:45','','','','0','Cash',0.00,'300','','','4','','1','2023-04-02 14:21:04','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-35.00','-36','Inclusive','branch','Inventory','','','','',''),('316804471502765302',1105,'31680447149','4','1.00','150','retail','0','2023-04-02 17:52:29','','','','0','Cash',0.00,'150','','','3','','1','2023-04-02 15:16:35','','1','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-11.00','-12','Inclusive','branch','Inventory','','','','',''),('316804485858250832',1106,'31680447149','8','1.00','150','retail','0','2023-04-02 18:16:24','','','','0','Cash',0.00,'150','','','3','','1','2023-04-02 15:16:35','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-26.00','-27','Inclusive','branch','Inventory','','','','',''),('316804493613022363',1107,'31680449360','2','1.00','250','retail','0','2023-04-02 18:29:20','','','','0','Cash',0.00,'250','','','3','','1','2023-04-02 15:30:17','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-25.00','-26','Inclusive','branch','Inventory','','','','',''),('316804494150202030',1108,'31680449360','56','1.00','400','retail','0','2023-04-02 18:30:14','','','','200','Cash',0.00,'400','','','3','','1','2023-04-02 15:30:17','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','20.00','19','Inclusive','branch','Service','1110','4000','5500','',''),('316804494432964302',1109,'31680449442','5','1.00','300','retail','0','2023-04-02 18:30:42','','','','0','Cash',0.00,'300','','','3','','1','2023-04-02 15:30:46','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-10.00','-11','Inclusive','branch','Inventory','','','','',''),('316804495939824934',1110,'31680449592','11','1.00','280','retail','0','2023-04-02 18:33:12','','','','0','Cash',0.00,'280','','','3','','1','2023-04-02 15:34:12','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','119.00','118','Inclusive','branch','Inventory','','','','',''),('416804535592352319',1111,'41680453558','3','1.00','200','retail','0','2023-04-02 19:39:18','','','','0','Cash',0.00,'200','','','4','','1','2023-04-02 16:39:27','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-35.00','-36','Inclusive','branch','Inventory','','','','',''),('416804562418210832',1112,'41680456240','23','1.00','250','retail','0','2023-04-02 20:24:00','','','','0','Cash',0.00,'250','','','4','','1','2023-04-02 17:24:05','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-22.00','-23','Inclusive','branch','Inventory','','','','',''),('416804601133022311',1113,'41680460112','22','1.00','250','retail','0','2023-04-02 21:28:32','','','','0','Cash',0.00,'250','','','4','','1','2023-04-02 18:28:48','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-14.00','-15','Inclusive','branch','Inventory','','','','',''),('416804601253022321',1114,'41680460112','47','1.00','200','retail','0','2023-04-02 21:28:44','','','','0','Cash',0.00,'200','','','4','','1','2023-04-02 18:28:48','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','44.00','43','Inclusive','branch','Inventory','','','','',''),('416804613594262432',1115,'41680461358','11','1.00','280','retail','0','2023-04-02 21:49:18','','','','0','Cash',0.00,'280','','','4','','1','2023-04-02 18:49:23','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','118.00','117','Inclusive','branch','Inventory','','','','',''),('416805019990202030',1116,'41680501998','21','1.00','200','retail','0','2023-04-03 09:06:38','','','','0','Cash',0.00,'200','','','4','','1','2023-04-03 06:06:47','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-118.00','-119','Inclusive','branch','Inventory','','','','',''),('416805040508200832',1117,'41680504049','59','1.00','150','retail','0','2023-04-03 09:40:49','','','','100','Cash',0.00,'150','','','4','','1','2023-04-03 06:41:05','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','32.00','31','Inclusive','branch','Service','1110','4000','5500','',''),('416805150662566302',1118,'41680515066','59','1.00','150','retail','0','2023-04-03 12:44:26','','','','100','Cash',0.00,'150','','','4','','1','2023-04-03 09:44:29','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','32.00','31','Inclusive','branch','Service','1110','4000','5500','',''),('416805219750202030',1119,'41680521975','1','1.00','300','retail','0','2023-04-03 14:39:35','','','','0','Cash',0.00,'300','','','4','','1','2023-04-03 11:40:01','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-36.00','-37','Inclusive','branch','Inventory','','','','',''),('416805219812333322',1120,'41680521975','11','1.00','280','retail','0','2023-04-03 14:39:40','','','','0','Cash',0.00,'280','','','4','','1','2023-04-03 11:40:01','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','117.00','116','Inclusive','branch','Inventory','','','','',''),('416805219908200832',1121,'41680521975','47','1.00','200','retail','0','2023-04-03 14:39:49','','','','0','Cash',0.00,'200','','','4','','1','2023-04-03 11:40:01','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','43.00','42','Inclusive','branch','Inventory','','','','',''),('416805219948240832',1122,'41680521975','46','1.00','200','retail','0','2023-04-03 14:39:53','','','','0','Cash',0.00,'200','','','4','','1','2023-04-03 11:40:01','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','45.00','44','Inclusive','branch','Inventory','','','','',''),('416805288218825844',1123,'41680528820','59','1.00','150','retail','0','2023-04-03 16:33:40','','','','100','Cash',0.00,'150','','','4','','1','2023-04-03 13:33:54','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','32.00','31','Inclusive','branch','Service','1110','4000','5500','',''),('416805288288280832',1124,'41680528820','46','1.00','200','retail','0','2023-04-03 16:33:48','','','','0','Cash',0.00,'200','','','4','','1','2023-04-03 13:33:54','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','44.00','43','Inclusive','branch','Inventory','','','','',''),('416805315780528337',1125,'41680531577','7','1.00','200','retail','0','2023-04-03 17:19:37','','','','0','Cash',0.00,'200','','','4','','1','2023-04-03 14:19:47','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-47.00','-48','Inclusive','branch','Inventory','','','','',''),('416805315810356242',1126,'41680531577','7','1.00','200','retail','0','2023-04-03 17:19:40','','','','0','Cash',0.00,'200','','','4','','1','2023-04-03 14:19:47','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-48.00','-49','Inclusive','branch','Inventory','','','','',''),('416805340382222032',1127,'41680534037','52','1.00','150','retail','0','2023-04-03 18:00:37','','','','200','Cash',0.00,'150','','','4','','1','2023-04-03 15:00:42','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416805400550202030',1128,'41680540054','2','1.00','250','retail','0','2023-04-03 19:40:54','','','','0','Cash',0.00,'250','','','4','','1','2023-04-03 16:40:57','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-26.00','-27','Inclusive','branch','Inventory','','','','',''),('416805924664292432',1129,'41680592465','11','1.00','280','retail','0','2023-04-04 10:14:25','','','','0','Cash',0.00,'280','','','4','','1','2023-04-04 07:14:31','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','116.00','115','Inclusive','branch','Inventory','','','','',''),('416806034643826344',1130,'41680603463','23','1.00','250','retail','0','2023-04-04 13:17:43','','','','0','Cash',0.00,'250','','','4','','1','2023-04-04 10:17:59','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-23.00','-24','Inclusive','branch','Inventory','','','','',''),('416806054962569302',1131,'41680605495','21','1.00','200','retail','0','2023-04-04 13:51:35','','','','0','Cash',0.00,'200','','','4','','1','2023-04-04 10:52:00','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-119.00','-120','Inclusive','branch','Inventory','','','','',''),('316806127242826234',1132,'31680612723','1','1.00','300','retail','0','2023-04-04 15:52:04','','','','0','Cash',0.00,'300','','','3','','1','2023-04-04 12:52:18','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-37.00','-38','Inclusive','branch','Inventory','','','','',''),('416806159068260832',1133,'41680615905','32','1.00','300','retail','0','2023-04-04 16:45:05','','','','0','Cash',0.00,'300','','','4','','1','2023-04-04 13:45:17','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-18.00','-19','Inclusive','branch','Inventory','','','','',''),('416806159120202030',1134,'41680615905','56','1.00','400','retail','0','2023-04-04 16:45:11','','','','200','Cash',0.00,'400','','','4','','1','2023-04-04 13:45:17','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','20.00','19','Inclusive','branch','Service','1110','4000','5500','',''),('316806184854212432',1135,'31680618484','3','1.00','200','retail','0','2023-04-04 17:28:04','','','','0','Cash',0.00,'200','','','3','','1','2023-04-04 14:28:13','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-36.00','-37','Inclusive','branch','Inventory','','','','',''),('316806184883421300',1136,'31680618484','8','1.00','150','retail','0','2023-04-04 17:28:07','','','','0','Cash',0.00,'150','','','3','','1','2023-04-04 14:28:13','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-27.00','-28','Inclusive','branch','Inventory','','','','',''),('316806250274222432',1137,'31680625026','21','1.00','200','retail','0','2023-04-04 19:17:06','','','','0','Cash',0.00,'200','','','3','','1','2023-04-04 16:17:15','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-120.00','-121','Inclusive','branch','Inventory','','','','',''),('316806291603022361',1138,'31680629159','55','1.00','200','retail','0','2023-04-04 20:26:00','','','','150','Cash',0.00,'200','','','3','','1','2023-04-04 17:26:04','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','299.00','298','Inclusive','branch','Inventory','1110','4000','5500','',''),('316806302362222032',1139,'31680630235','52','1.00','150','retail','0','2023-04-04 20:43:55','','','','200','Cash',0.00,'150','','','3','','1','2023-04-04 17:43:59','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316806349058250832',1140,'31680634904','1','1.00','300','retail','0','2023-04-04 22:01:44','','','','0','Cash',0.00,'300','','','3','','1','2023-04-04 19:01:48','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-38.00','-39','Inclusive','branch','Inventory','','','','',''),('316806357763022377',1141,'31680635776','5','1.00','300','retail','0','2023-04-04 22:16:16','','','','0','Cash',0.00,'300','','','3','','1','2023-04-04 19:16:22','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-11.00','-12','Inclusive','branch','Inventory','','','','',''),('316806783850202030',1142,'31680678384','8','1.00','150','retail','0','2023-04-05 10:06:24','','','','0','Cash',0.00,'150','','','3','','1','2023-04-05 07:06:29','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-28.00','-29','Inclusive','branch','Inventory','','','','',''),('316806947562003336',1143,'31680694755','38','1.00','350','retail','0','2023-04-05 14:39:15','','','','0','Cash',0.00,'350','','','3','','1','2023-04-05 11:39:19','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-110.00','-111','Inclusive','branch','Inventory','','','','',''),('316806989442222032',1144,'31680698943','34','1.00','300','retail','0','2023-04-05 15:49:04','','','','0','Cash',0.00,'300','','','3','','1','2023-04-05 12:49:07','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-42.00','-43','Inclusive','branch','Inventory','','','','',''),('316806989593421300',1145,'31680698958','52','1.00','150','retail','0','2023-04-05 15:49:18','','','','200','Cash',0.00,'150','','','3','','1','2023-04-05 12:49:21','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316806989724292432',1146,'31680698971','36','1.00','400','retail','0','2023-04-05 15:49:31','','','','0','Cash',0.00,'400','','','3','','1','2023-04-05 12:49:34','','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-10.00','-11','Inclusive','branch','Inventory','','','','',''),('316806989861033408',1147,'31680698985','2','1.00','250','retail','0','2023-04-05 15:49:45','','','','0','Cash',0.00,'250','','','3','','1','2023-04-05 12:49:51','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-27.00','-28','Inclusive','branch','Inventory','','','','',''),('316807017763421300',1148,'31680701776','52','1.00','150','retail','0','2023-04-05 16:36:16','','','','200','Cash',0.00,'150','','','3','','1','2023-04-05 13:36:22','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316807049103421300',1149,'31680704909','11','1.00','280','retail','0','2023-04-05 17:28:29','','','','0','Cash',0.00,'280','','','3','','1','2023-04-05 14:28:35','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','115.00','114','Inclusive','branch','Inventory','','','','',''),('316807060043022300',1150,'31680706003','38','1.00','350','retail','0','2023-04-05 17:46:43','','','','0','Cash',0.00,'350','','','3','','1','2023-04-05 14:46:47','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-111.00','-112','Inclusive','branch','Inventory','','','','',''),('316807063423022343',1151,'31680706341','1','1.00','300','retail','0','2023-04-05 17:52:21','','','','0','Cash',0.00,'300','','','3','','1','2023-04-05 14:52:25','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-39.00','-40','Inclusive','branch','Inventory','','','','',''),('316807063963022393',1152,'31680706395','12','1.00','250','retail','0','2023-04-05 17:53:15','','','','0','Cash',0.00,'250','','','3','','1','2023-04-05 14:53:19','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-23.00','-24','Inclusive','branch','Inventory','','','','',''),('316807070422764302',1153,'31680707041','30','1.00','330','retail','0','2023-04-05 18:04:01','','','','0','Cash',0.00,'330','','','3','','1','2023-04-05 15:04:06','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-5.00','-6','Inclusive','branch','Inventory','','','','',''),('316807081833022381',1154,'31680708182','59','1.00','150','retail','0','2023-04-05 18:23:02','','','','100','Cash',0.00,'150','','','3','','1','2023-04-05 15:23:12','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','32.00','31','Inclusive','branch','Service','1110','4000','5500','',''),('316807118822168302',1155,'31680711881','52','1.00','150','retail','0','2023-04-05 19:24:41','','','','200','Cash',0.00,'150','','','3','','1','2023-04-05 16:24:49','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316807118851827134',1156,'31680711881','52','1.00','150','retail','0','2023-04-05 19:24:44','','','','200','Cash',0.00,'150','','','3','','1','2023-04-05 16:24:49','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316807118994212432',1157,'31680711898','7','1.00','200','retail','0','2023-04-05 19:24:58','','','','0','Cash',0.00,'200','','','3','','1','2023-04-05 16:25:01','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-49.00','-50','Inclusive','branch','Inventory','','','','',''),('316807119153022319',1158,'31680711914','23','1.00','250','retail','0','2023-04-05 19:25:14','','','','0','Cash',0.00,'250','','','3','','1','2023-04-05 16:25:19','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-24.00','-25','Inclusive','branch','Inventory','','','','',''),('316807121171621133',1159,'31680712116','15','1.00','200','retail','0','2023-04-05 19:28:36','','','','0','Cash',0.00,'200','','','3','','1','2023-04-05 16:28:40','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-7.00','-8','Inclusive','branch','Inventory','','','','',''),('316807157734212432',1160,'31680715772','23','1.00','250','retail','0','2023-04-05 20:29:32','','','','0','Cash',0.00,'250','','','3','','1','2023-04-05 17:29:36','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-25.00','-26','Inclusive','branch','Inventory','','','','',''),('316807201833022381',1161,'31680720182','21','1.00','200','retail','0','2023-04-05 21:43:02','','','','0','Cash',0.00,'200','','','3','','1','2023-04-05 18:43:06','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-121.00','-122','Inclusive','branch','Inventory','','','','',''),('316807205153421300',1162,'31680720514','59','1.00','150','retail','0','2023-04-05 21:48:34','','','','100','Cash',0.00,'150','','','3','','1','2023-04-05 18:48:37','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','32.00','31','Inclusive','branch','Service','1110','4000','5500','',''),('316807801154282432',1163,'31680780115','38','1.00','350','retail','0','2023-04-06 14:21:55','','','','0','Cash',0.00,'350','','','3','','1','2023-04-06 11:21:59','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-112.00','-113','Inclusive','branch','Inventory','','','','',''),('316807801383421300',1164,'31680780137','59','1.00','150','retail','0','2023-04-06 14:22:17','','','','100','Cash',0.00,'150','','','3','','1','2023-04-06 11:22:22','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','32.00','31','Inclusive','branch','Service','1110','4000','5500','',''),('316807801602222032',1165,'31680780159','54','1.00','350','retail','0','2023-04-06 14:22:39','','','','200','Cash',0.00,'350','','','3','','1','2023-04-06 11:22:42','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Service','1110','4000','5500','',''),('316807819812168302',1166,'31680781980','11','1.00','280','retail','0','2023-04-06 14:53:00','','','','0','Cash',0.00,'280','','','3','','1','2023-04-06 11:53:13','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','114.00','113','Inclusive','branch','Inventory','','','','',''),('416807899722222032',1167,'41680789971','38','1.00','350','retail','0','2023-04-06 17:06:11','','','','0','Cash',0.00,'350','','','4','','1','2023-04-06 14:06:15','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-113.00','-114','Inclusive','branch','Inventory','','','','',''),('416807899894282432',1168,'41680789988','8','1.00','150','retail','0','2023-04-06 17:06:28','','','','0','Cash',0.00,'150','','','4','','1','2023-04-06 14:06:33','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-29.00','-30','Inclusive','branch','Inventory','','','','',''),('416807927370202030',1169,'41680792736','38','1.00','350','retail','0','2023-04-06 17:52:16','','','','0','Cash',0.00,'350','','','4','','1','2023-04-06 14:52:19','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-114.00','-115','Inclusive','branch','Inventory','','','','',''),('316807935173827334',1170,'31680793516','11','1.00','280','retail','0','2023-04-06 18:05:16','','','','0','Cash',0.00,'280','','','3','','1','2023-04-06 15:05:30','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','113.00','112','Inclusive','branch','Inventory','','','','',''),('316807948624292432',1171,'31680794861','17','1.00','200','retail','0','2023-04-06 18:27:41','','','','0','Cash',0.00,'200','','','3','','1','2023-04-06 15:27:47','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-14.00','-15','Inclusive','branch','Inventory','','','','',''),('416807967376827644',1172,'41680796736','23','1.00','250','retail','0','2023-04-06 18:58:56','','','','0','Cash',0.00,'250','','','4','','1','2023-04-06 15:59:00','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-26.00','-27','Inclusive','branch','Inventory','','','','',''),('416808001133022311',1173,'41680800113','38','1.00','350','retail','0','2023-04-06 19:55:13','','','','0','Cash',0.00,'350','','','4','','1','2023-04-06 16:55:16','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-115.00','-116','Inclusive','branch','Inventory','','','','',''),('416808001320202030',1174,'41680800131','38','1.00','350','retail','0','2023-04-06 19:55:31','','','','0','Cash',0.00,'350','','','4','','1','2023-04-06 16:55:35','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-116.00','-117','Inclusive','branch','Inventory','','','','',''),('416808017130202030',1175,'41680801712','38','1.00','350','retail','0','2023-04-06 20:21:52','','','','0','Cash',0.00,'350','','','4','','1','2023-04-06 17:21:55','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-117.00','-118','Inclusive','branch','Inventory','','','','',''),('416808022963022392',1176,'41680802296','52','1.00','150','retail','0','2023-04-06 20:31:36','','','','200','Cash',0.00,'150','','','4','','1','2023-04-06 17:31:40','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416808030263421300',1177,'41680803025','4','1.00','150','retail','0','2023-04-06 20:43:45','','','','0','Cash',0.00,'150','','','4','','1','2023-04-06 17:43:49','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-12.00','-13','Inclusive','branch','Inventory','','','','',''),('416808038753022378',1178,'41680803874','7','1.00','200','retail','0','2023-04-06 20:57:54','','','','0','Cash',0.00,'200','','','4','','1','2023-04-06 17:57:58','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-50.00','-51','Inclusive','branch','Inventory','','','','',''),('416808050333322200',1179,'41680805032','2','1.00','250','retail','0','2023-04-06 21:17:12','','','','0','Cash',0.00,'250','','','4','','1','2023-04-06 18:19:23','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-28.00','-29','Inclusive','branch','Inventory','','','','',''),('416808052892568302',1180,'41680805288','38','1.00','350','retail','0','2023-04-06 21:21:28','','','','0','Cash',0.00,'350','','','4','','1','2023-04-06 18:21:45','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-118.00','-119','Inclusive','branch','Inventory','','','','',''),('416808082722222032',1181,'41680808271','38','1.00','350','retail','0','2023-04-06 22:11:11','','','','0','Cash',0.00,'350','','','4','','1','2023-04-06 19:11:16','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-119.00','-120','Inclusive','branch','Inventory','','','','',''),('416808472462222032',1182,'41680847245','5','1.00','300','retail','0','2023-04-07 09:00:45','','','','0','Cash',0.00,'300','','','4','','1','2023-04-07 06:00:51','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-12.00','-13','Inclusive','branch','Inventory','','','','',''),('416808498582965302',1183,'41680849857','12','1.00','250','retail','0','2023-04-07 09:44:17','','','','0','Cash',0.00,'250','','','4','','1','2023-04-07 06:44:21','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-24.00','-25','Inclusive','branch','Inventory','','','','',''),('416808498712222032',1184,'41680849870','24','1.00','100','retail','0','2023-04-07 09:44:30','','','','0','Cash',0.00,'100','','','4','','1','2023-04-07 06:44:36','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-10.00','-11','Inclusive','branch','Inventory','','','','',''),('316808549094828434',1185,'31680854908','54','1.00','350','retail','0','2023-04-07 11:08:28','','','','200','Cash',0.00,'350','','','3','','1','2023-04-07 08:08:32','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Service','1110','4000','5500','',''),('416808573215033238',1186,'41680857320','38','1.00','350','retail','0','2023-04-07 11:48:40','','','','0','Cash',0.00,'350','','','4','','1','2023-04-07 08:48:44','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-120.00','-121','Inclusive','branch','Inventory','','','','',''),('416808660733421300',1187,'41680866072','20','1.00','200','retail','0','2023-04-07 14:14:32','','','','0','Cash',0.00,'200','','','4','','1','2023-04-07 11:14:37','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-34.00','-35','Inclusive','branch','Inventory','','','','',''),('416808660904262432',1188,'41680866089','34','1.00','300','retail','0','2023-04-07 14:14:49','','','','0','Cash',0.00,'300','','','4','','1','2023-04-07 11:14:53','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-43.00','-44','Inclusive','branch','Inventory','','','','',''),('416808673204262432',1189,'41680867319','8','1.00','150','retail','0','2023-04-07 14:35:19','','','','0','Cash',0.00,'150','','','4','','1','2023-04-07 11:35:24','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-30.00','-31','Inclusive','branch','Inventory','','','','',''),('316808659878270832',1190,'31680865986','22','1.00','250','retail','0','2023-04-07 14:13:06','','','','0','Cash',0.00,'250','','','3','','1','2023-04-07 11:50:21','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-15.00','-16','Inclusive','branch','Inventory','','','','',''),('316808682192861302',1191,'31680865986','52','1.00','150','retail','0','2023-04-07 14:50:18','','','','200','Cash',0.00,'150','','','3','','1','2023-04-07 11:50:21','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416808700740302242',1192,'41680870073','40','1.00','600','retail','0','2023-04-07 15:21:13','','','','0','Cash',0.00,'600','','','4','','1','2023-04-07 12:21:17','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-15.00','-16','Inclusive','branch','Inventory','','','','',''),('316808709793022379',1193,'31680870978','32','1.00','300','retail','0','2023-04-07 15:36:18','','','','0','Cash',0.00,'300','','','3','','1','2023-04-07 12:36:22','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-19.00','-20','Inclusive','branch','Inventory','','','','',''),('316808710643022360',1194,'31680871063','38','1.00','350','retail','0','2023-04-07 15:37:43','','','','0','Cash',0.00,'350','','','3','','1','2023-04-07 12:37:47','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-121.00','-122','Inclusive','branch','Inventory','','','','',''),('316808743664828434',1195,'31680874366','4','1.00','150','retail','0','2023-04-07 16:32:46','','','','0','Cash',0.00,'150','','','3','','1','2023-04-07 13:32:49','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-13.00','-14','Inclusive','branch','Inventory','','','','',''),('416808749062420302',1196,'41680874905','21','1.00','200','retail','0','2023-04-07 16:41:45','','','','0','Cash',0.00,'200','','','4','','1','2023-04-07 13:41:50','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-122.00','-123','Inclusive','branch','Inventory','','','','',''),('416808783008828844',1197,'41680878299','1','1.00','300','retail','0','2023-04-07 17:38:19','','','','0','Cash',0.00,'300','','','4','','1','2023-04-07 14:38:24','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-40.00','-41','Inclusive','branch','Inventory','','','','',''),('416808808833022388',1198,'41680880882','52','1.00','150','retail','0','2023-04-07 18:21:22','','','','200','Cash',0.00,'150','','','4','','1','2023-04-07 15:21:26','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316808928322222032',1199,'31680892831','23','1.00','250','retail','0','2023-04-07 21:40:31','','','','0','Cash',0.00,'250','','','3','','1','2023-04-07 18:40:35','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-27.00','-28','Inclusive','branch','Inventory','','','','',''),('316808928738230832',1200,'31680892872','40','1.00','600','retail','0','2023-04-07 21:41:12','','','','0','Cash',0.00,'600','','','3','','1','2023-04-07 18:41:16','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-16.00','-17','Inclusive','branch','Inventory','','','','',''),('416808945662222032',1201,'41680894565','5','1.00','300','retail','0','2023-04-07 22:09:25','','','','0','Cash',0.00,'300','','','4','','1','2023-04-07 19:19:09','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-13.00','-14','Inclusive','branch','Inventory','','','','',''),('416808951632222032',1202,'41680895162','30','1.00','330','retail','0','2023-04-07 22:19:22','','','','0','Cash',0.00,'330','','','4','','1','2023-04-07 19:19:26','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-6.00','-7','Inclusive','branch','Inventory','','','','',''),('416809400428220832',1203,'41680940042','23','1.00','250','retail','0','2023-04-08 10:47:22','','','','0','Cash',0.00,'250','','','4','','1','2023-04-08 07:47:27','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-28.00','-29','Inclusive','branch','Inventory','','','','',''),('416809400703022370',1204,'41680940069','1','1.00','300','retail','0','2023-04-08 10:47:50','','','','0','Cash',0.00,'300','','','4','','1','2023-04-08 07:47:54','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-41.00','-42','Inclusive','branch','Inventory','','','','',''),('416809457333022337',1205,'41680945732','12','1.00','250','retail','0','2023-04-08 12:22:12','','','','0','Cash',0.00,'250','','','4','','1','2023-04-08 09:22:20','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-25.00','-26','Inclusive','branch','Inventory','','','','',''),('416809496498290832',1206,'41680949648','18','1.00','200','retail','0','2023-04-08 13:27:28','','','','0','Cash',0.00,'200','','','4','','1','2023-04-08 10:27:34','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-17.00','-18','Inclusive','branch','Inventory','','','','',''),('416809501022060302',1207,'41680950101','2','1.00','250','retail','0','2023-04-08 13:35:01','','','','0','Cash',0.00,'250','','','4','','1','2023-04-08 10:35:07','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-29.00','-30','Inclusive','branch','Inventory','','','','',''),('416809518430202030',1208,'41680951842','11','1.00','280','retail','0','2023-04-08 14:04:02','','','','0','Cash',0.00,'280','','','4','','1','2023-04-08 11:04:06','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','112.00','111','Inclusive','branch','Inventory','','','','',''),('416809518551829144',1209,'41680951854','11','1.00','280','retail','0','2023-04-08 14:04:14','','','','0','Cash',0.00,'280','','','4','','1','2023-04-08 11:04:18','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','111.00','110','Inclusive','branch','Inventory','','','','',''),('416809537163421300',1210,'41680953715','12','1.00','250','retail','0','2023-04-08 14:35:15','','','','0','Cash',0.00,'250','','','4','','1','2023-04-08 11:35:22','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-26.00','-27','Inclusive','branch','Inventory','','','','',''),('416809569564252432',1211,'41680956955','8','1.00','150','retail','0','2023-04-08 15:29:15','','','','0','Cash',0.00,'150','','','4','','1','2023-04-08 12:29:20','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-31.00','-32','Inclusive','branch','Inventory','','','','',''),('316809575843421300',1212,'31680957583','59','1.00','150','retail','0','2023-04-08 15:39:43','','','','100','Cash',0.00,'150','','','3','','1','2023-04-08 12:39:47','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','32.00','31','Inclusive','branch','Service','1110','4000','5500','',''),('316809575998290832',1213,'31680957598','17','1.00','200','retail','0','2023-04-08 15:39:58','','','','0','Cash',0.00,'200','','','3','','1','2023-04-08 12:40:05','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-15.00','-16','Inclusive','branch','Inventory','','','','',''),('316809581110202030',1214,'31680958110','11','1.00','280','retail','0','2023-04-08 15:48:30','','','','0','Cash',0.00,'280','','','3','','1','2023-04-08 12:48:35','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','110.00','109','Inclusive','branch','Inventory','','','','',''),('316809600383421300',1215,'31680960037','20','1.00','200','retail','0','2023-04-08 16:20:37','','','','0','Cash',0.00,'200','','','3','','1','2023-04-08 13:21:07','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-35.00','-36','Inclusive','branch','Inventory','','','','',''),('316809600642066302',1216,'31680960037','38','1.00','350','retail','0','2023-04-08 16:21:03','','','','0','Cash',0.00,'350','','','3','','1','2023-04-08 13:21:07','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-122.00','-123','Inclusive','branch','Inventory','','','','',''),('416809608198290832',1217,'41680960818','4','1.00','150','retail','0','2023-04-08 16:33:38','','','','0','Cash',0.00,'150','','','4','','1','2023-04-08 13:33:44','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-14.00','-15','Inclusive','branch','Inventory','','','','',''),('416809649348240832',1218,'41680964934','38','1.00','350','retail','0','2023-04-08 17:42:14','','','','0','Cash',0.00,'350','','','4','','1','2023-04-08 14:42:18','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-123.00','-124','Inclusive','branch','Inventory','','','','',''),('316809683430202030',1219,'31680968342','38','1.00','350','retail','0','2023-04-08 18:39:02','','','','0','Cash',0.00,'350','','','3','','1','2023-04-08 15:43:35','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-124.00','-125','Inclusive','branch','Inventory','','','','',''),('316809683478270832',1220,'31680968342','38','1.00','350','retail','0','2023-04-08 18:39:06','','','','0','Cash',0.00,'350','','','3','','1','2023-04-08 15:43:35','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-125.00','-126','Inclusive','branch','Inventory','','','','',''),('316809685713421300',1221,'31680968342','17','1.00','200','retail','0','2023-04-08 18:42:51','','','','0','Cash',0.00,'200','','','3','','1','2023-04-08 15:43:35','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-16.00','-17','Inclusive','branch','Inventory','','','','',''),('316809685773022375',1222,'31680968342','21','1.00','200','retail','0','2023-04-08 18:42:56','','','','0','Cash',0.00,'200','','','3','','1','2023-04-08 15:43:35','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-123.00','-124','Inclusive','branch','Inventory','','','','',''),('316809685888280832',1223,'31680968342','20','1.00','200','retail','0','2023-04-08 18:43:07','','','','0','Cash',0.00,'200','','','3','','1','2023-04-08 15:43:35','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-36.00','-37','Inclusive','branch','Inventory','','','','',''),('316809734718210832',1224,'31680973470','52','1.00','150','retail','0','2023-04-08 20:04:30','','','','200','Cash',0.00,'150','','','3','','1','2023-04-08 17:04:34','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316809769996829634',1225,'31680976998','59','1.00','150','retail','0','2023-04-08 21:03:18','','','','100','Cash',0.00,'150','','','3','','1','2023-04-08 18:03:27','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','32.00','31','Inclusive','branch','Service','1110','4000','5500','',''),('316809800480829034',1226,'31680980047','38','1.00','350','retail','0','2023-04-08 21:54:07','','','','0','Cash',0.00,'350','','','3','','1','2023-04-08 18:54:21','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-126.00','-127','Inclusive','branch','Inventory','','','','',''),('316809800570202030',1227,'31680980047','38','1.00','350','retail','0','2023-04-08 21:54:16','','','','0','Cash',0.00,'350','','','3','','1','2023-04-08 18:54:21','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-127.00','-128','Inclusive','branch','Inventory','','','','',''),('316809803062060302',1228,'31680980305','5','1.00','300','retail','0','2023-04-08 21:58:25','','','','0','Cash',0.00,'300','','','3','','1','2023-04-08 18:58:33','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-14.00','-15','Inclusive','branch','Inventory','','','','',''),('316809803542065302',1229,'31680980353','21','1.00','200','retail','0','2023-04-08 21:59:13','','','','0','Cash',0.00,'200','','','3','','1','2023-04-08 19:00:41','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-124.00','-125','Inclusive','branch','Inventory','','','','',''),('316809804550022393',1230,'31680980454','21','1.00','200','retail','0','2023-04-08 22:00:54','','','','0','Cash',0.00,'200','','','3','','1','2023-04-08 19:00:58','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-125.00','-126','Inclusive','branch','Inventory','','','','',''),('316810341084820434',1231,'31681034107','21','1.00','200','retail','0','2023-04-09 12:55:07','','','','0','Cash',0.00,'200','','','3','','1','2023-04-09 09:55:14','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-126.00','-127','Inclusive','branch','Inventory','','','','',''),('316810341254232432',1232,'31681034124','5','1.00','300','retail','0','2023-04-09 12:55:24','','','','0','Cash',0.00,'300','','','3','','1','2023-04-09 09:55:28','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-15.00','-16','Inclusive','branch','Inventory','','','','',''),('316810378318210832',1233,'31681037830','8','1.00','150','retail','0','2023-04-09 13:57:10','','','','0','Cash',0.00,'150','','','3','','1','2023-04-09 10:57:18','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-32.00','-33','Inclusive','branch','Inventory','','','','',''),('316810378908200832',1234,'31681037889','38','1.00','350','retail','0','2023-04-09 13:58:09','','','','0','Cash',0.00,'350','','','3','','1','2023-04-09 10:58:12','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-128.00','-129','Inclusive','branch','Inventory','','','','',''),('416810393633022363',1235,'41681039363','8','1.00','150','retail','0','2023-04-09 14:22:43','','','','0','Cash',0.00,'150','','','4','','1','2023-04-09 11:22:47','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-33.00','-34','Inclusive','branch','Inventory','','','','',''),('416810418264242432',1236,'41681041825','7','1.00','200','retail','0','2023-04-09 15:03:45','','','','0','Cash',0.00,'200','','','4','','1','2023-04-09 12:03:50','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-51.00','-52','Inclusive','branch','Inventory','','','','',''),('416810439522365312',1237,'41681043951','1','1.00','300','retail','0','2023-04-09 15:39:11','','','','0','Cash',0.00,'300','','','4','','1','2023-04-09 12:39:15','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-42.00','-43','Inclusive','branch','Inventory','','','','',''),('416810497202962312',1238,'41681049719','52','1.00','150','retail','0','2023-04-09 17:15:19','','','','200','Cash',0.00,'150','','','4','','1','2023-04-09 14:15:23','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416810506802222032',1239,'41681050679','58','1.00','30','retail','0','2023-04-09 17:31:19','','','','15','Cash',0.00,'30','','','4','','1','2023-04-09 14:31:30','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','51.00','50','Inclusive','branch','Service','1110','4000','5500','',''),('416810506842343223',1240,'41681050679','58','1.00','30','retail','0','2023-04-09 17:31:23','','','','15','Cash',0.00,'30','','','4','','1','2023-04-09 14:31:30','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','51.00','50','Inclusive','branch','Service','1110','4000','5500','',''),('416810506873022386',1241,'41681050679','58','1.00','30','retail','0','2023-04-09 17:31:26','','','','15','Cash',0.00,'30','','','4','','1','2023-04-09 14:31:30','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','51.00','50','Inclusive','branch','Service','1110','4000','5500','',''),('316810519971820134',1242,'31681051996','2','1.00','250','retail','0','2023-04-09 17:53:16','','','','0','Cash',0.00,'250','','','3','','1','2023-04-09 14:53:21','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-30.00','-31','Inclusive','branch','Inventory','','','','',''),('416810524492222032',1243,'41681052448','38','1.00','350','retail','0','2023-04-09 18:00:48','','','','0','Cash',0.00,'350','','','4','','1','2023-04-09 15:00:51','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-129.00','-130','Inclusive','branch','Inventory','','','','',''),('416810623550202031',1244,'41681062354','11','1.00','280','retail','0','2023-04-09 20:45:54','','','','0','Cash',0.00,'280','','','4','','1','2023-04-09 17:46:35','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','109.00','108','Inclusive','branch','Inventory','','','','',''),('416810623923022393',1245,'41681062354','7','1.00','200','retail','0','2023-04-09 20:46:31','','','','0','Cash',0.00,'200','','','4','','1','2023-04-09 17:46:35','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-52.00','-53','Inclusive','branch','Inventory','','','','',''),('416810627840202031',1246,'41681062783','11','1.00','280','retail','0','2023-04-09 20:53:03','','','','0','Cash',0.00,'280','','','4','','1','2023-04-09 17:53:07','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','108.00','107','Inclusive','branch','Inventory','','','','',''),('416811084168260832',1247,'41681108415','11','1.00','280','retail','0','2023-04-10 09:33:35','','','','0','Cash',0.00,'280','','','4','','1','2023-04-10 06:33:40','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','107.00','106','Inclusive','branch','Inventory','','','','',''),('416811088940202031',1248,'41681108893','11','1.00','280','retail','0','2023-04-10 09:41:33','','','','0','Cash',0.00,'280','','','4','','1','2023-04-10 06:41:38','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','106.00','105','Inclusive','branch','Inventory','','','','',''),('416811131648240832',1249,'41681113163','33','1.00','300','retail','0','2023-04-10 10:52:43','','','','0','Cash',0.00,'300','','','4','','1','2023-04-10 07:52:58','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','39.00','38','Inclusive','branch','Inventory','','','','',''),('416811131754212432',1250,'41681113163','29','1.00','300','retail','0','2023-04-10 10:52:54','','','','0','Cash',0.00,'300','','','4','','1','2023-04-10 07:52:58','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-14.00','-15','Inclusive','branch','Inventory','','','','',''),('416811255840202031',1251,'41681125583','11','1.00','280','retail','0','2023-04-10 14:19:43','','','','0','Cash',0.00,'280','','','4','','1','2023-04-10 11:19:48','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','105.00','104','Inclusive','branch','Inventory','','','','',''),('416811340473022340',1252,'41681134047','11','1.00','280','retail','0','2023-04-10 16:40:47','','','','0','Cash',0.00,'280','','','4','','1','2023-04-10 13:40:50','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','104.00','103','Inclusive','branch','Inventory','','','','',''),('416811347318210832',1253,'41681134730','59','1.00','150','retail','0','2023-04-10 16:52:10','','','','100','Cash',0.00,'150','','','4','','1','2023-04-10 13:52:17','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','32.00','31','Inclusive','branch','Service','1110','4000','5500','',''),('416811374523022354',1254,'41681137451','20','1.00','200','retail','0','2023-04-10 17:37:31','','','','0','Cash',0.00,'200','','','4','','1','2023-04-10 14:37:45','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-37.00','-38','Inclusive','branch','Inventory','','','','',''),('416811374567821744',1255,'41681137451','20','1.00','200','retail','0','2023-04-10 17:37:35','','','','0','Cash',0.00,'200','','','4','','1','2023-04-10 14:37:45','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-38.00','-39','Inclusive','branch','Inventory','','','','',''),('416811374594232432',1256,'41681137451','20','1.00','200','retail','0','2023-04-10 17:37:38','','','','0','Cash',0.00,'200','','','4','','1','2023-04-10 14:37:45','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-39.00','-40','Inclusive','branch','Inventory','','','','',''),('416811386140202031',1257,'41681138613','12','1.00','250','retail','0','2023-04-10 17:56:53','','','','0','Cash',0.00,'250','','','4','','1','2023-04-10 14:57:09','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-27.00','-28','Inclusive','branch','Inventory','','','','',''),('416811386262862312',1258,'41681138613','26','1.00','100','retail','0','2023-04-10 17:57:05','','','','0','Cash',0.00,'100','','','4','','1','2023-04-10 14:57:09','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-11.00','-12','Inclusive','branch','Inventory','','','','',''),('416811397203022327',1259,'41681139719','5','1.00','300','retail','0','2023-04-10 18:15:19','','','','0','Cash',0.00,'300','','','4','','1','2023-04-10 15:15:25','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-16.00','-17','Inclusive','branch','Inventory','','','','',''),('416811426480202031',1260,'41681142647','52','1.00','150','retail','0','2023-04-10 19:04:07','','','','200','Cash',0.00,'150','','','4','','1','2023-04-10 16:04:13','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416812014801822144',1261,'41681201479','7','1.00','200','retail','0','2023-04-11 11:24:39','','','','0','Cash',0.00,'200','','','4','','1','2023-04-11 08:25:01','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-53.00','-54','Inclusive','branch','Inventory','','','','',''),('416812014893421300',1262,'41681201479','30','1.00','330','retail','0','2023-04-11 11:24:48','','','','0','Cash',0.00,'330','','','4','','1','2023-04-11 08:25:01','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-7.00','-8','Inclusive','branch','Inventory','','','','',''),('416812014978270832',1263,'41681201479','57','1.00','350','retail','0','2023-04-11 11:24:56','','','','200','Cash',0.00,'350','','','4','','1','2023-04-11 08:25:01','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Service','1110','4000','5500','',''),('416812019343022339',1264,'41681201933','57','1.00','350','retail','0','2023-04-11 11:32:13','','','','200','Cash',0.00,'350','','','4','','1','2023-04-11 08:32:19','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Service','1110','4000','5500','',''),('416812066822668312',1265,'41681206681','21','1.00','200','retail','0','2023-04-11 12:51:21','','','','0','Cash',0.00,'200','','','4','','1','2023-04-11 09:51:24','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-127.00','-128','Inclusive','branch','Inventory','','','','',''),('416812168203421300',1266,'41681216819','11','1.00','280','retail','0','2023-04-11 15:40:19','','','','0','Cash',0.00,'280','','','4','','1','2023-04-11 12:40:32','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','103.00','102','Inclusive','branch','Inventory','','','','',''),('416812169596822644',1267,'41681216958','22','1.00','250','retail','0','2023-04-11 15:42:38','','','','0','Cash',0.00,'250','','','4','','1','2023-04-11 12:42:42','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-16.00','-17','Inclusive','branch','Inventory','','','','',''),('416812173094212432',1268,'41681217308','1','1.00','300','retail','0','2023-04-11 15:48:28','','','','0','Cash',0.00,'300','','','4','','1','2023-04-11 12:48:32','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-43.00','-44','Inclusive','branch','Inventory','','','','',''),('416812173104212432',1269,'41681217308','11','1.00','280','retail','0','2023-04-11 15:48:29','','','','0','Cash',0.00,'280','','','4','','1','2023-04-11 12:48:32','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','102.00','101','Inclusive','branch','Inventory','','','','',''),('416812192523421300',1270,'41681219251','1','1.00','300','retail','0','2023-04-11 16:20:51','','','','0','Cash',0.00,'300','','','4','','1','2023-04-11 13:20:58','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-44.00','-45','Inclusive','branch','Inventory','','','','',''),('416812200150822044',1271,'41681220014','46','1.00','200','retail','0','2023-04-11 16:33:34','','','','0','Cash',0.00,'200','','','4','','1','2023-04-11 13:33:38','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','43.00','42','Inclusive','branch','Inventory','','','','',''),('316812219751822134',1272,'31681221974','21','1.00','200','retail','0','2023-04-11 17:06:14','','','','0','Cash',0.00,'200','','','3','','1','2023-04-11 14:06:18','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-128.00','-129','Inclusive','branch','Inventory','','','','',''),('316812239538230832',1273,'31681223952','21','1.00','200','retail','0','2023-04-11 17:39:12','','','','0','Cash',0.00,'200','','','3','','1','2023-04-11 14:39:16','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-129.00','-130','Inclusive','branch','Inventory','','','','',''),('416812267753022377',1274,'41681226774','52','1.00','150','retail','0','2023-04-11 18:26:14','','','','200','Cash',0.00,'150','','','4','','1','2023-04-11 15:26:18','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316812268156822634',1275,'31681226814','1','1.00','300','retail','0','2023-04-11 18:26:54','','','','0','Cash',0.00,'300','','','3','','1','2023-04-11 15:26:57','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-45.00','-46','Inclusive','branch','Inventory','','','','',''),('316812308180822034',1276,'31681230817','38','1.00','350','retail','0','2023-04-11 19:33:37','','','','0','Cash',0.00,'350','','','3','','1','2023-04-11 16:33:42','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-130.00','-131','Inclusive','branch','Inventory','','','','',''),('316812335890202031',1277,'31681233588','52','1.00','150','retail','0','2023-04-11 20:19:48','','','','200','Cash',0.00,'150','','','3','','1','2023-04-11 17:19:51','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316812336542365312',1278,'31681233653','7','1.00','200','retail','0','2023-04-11 20:20:53','','','','0','Cash',0.00,'200','','','3','','1','2023-04-11 17:20:57','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-54.00','-55','Inclusive','branch','Inventory','','','','',''),('316812354312563312',1279,'31681235430','59','1.00','150','retail','0','2023-04-11 20:50:30','','','','100','Cash',0.00,'150','','','3','','1','2023-04-11 17:50:41','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','32.00','31','Inclusive','branch','Service','1110','4000','5500','',''),('316812400724242432',1280,'31681240071','21','1.00','200','retail','0','2023-04-11 22:07:51','','','','0','Cash',0.00,'200','','','3','','1','2023-04-11 19:08:11','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-130.00','-131','Inclusive','branch','Inventory','','','','',''),('316812400810202031',1281,'31681240071','15','1.00','200','retail','0','2023-04-11 22:08:00','','','','0','Cash',0.00,'200','','','3','','1','2023-04-11 19:08:11','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-8.00','-9','Inclusive','branch','Inventory','','','','',''),('316812411888280832',1282,'31681241187','34','1.00','300','retail','0','2023-04-11 22:26:27','','','','0','Cash',0.00,'300','','','3','','1','2023-04-11 19:26:35','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-44.00','-45','Inclusive','branch','Inventory','','','','',''),('316812411914242432',1283,'31681241187','34','1.00','300','retail','0','2023-04-11 22:26:30','','','','0','Cash',0.00,'300','','','3','','1','2023-04-11 19:26:35','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-45.00','-46','Inclusive','branch','Inventory','','','','',''),('316812417231822134',1284,'31681241722','5','1.00','300','retail','0','2023-04-11 22:35:22','','','','0','Cash',0.00,'300','','','3','','1','2023-04-11 19:35:28','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-17.00','-18','Inclusive','branch','Inventory','','','','',''),('316812417592165312',1285,'31681241759','5','1.00','300','retail','0','2023-04-11 22:35:59','','','','0','Cash',0.00,'300','','','3','','1','2023-04-11 19:36:02','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-18.00','-19','Inclusive','branch','Inventory','','','','',''),('316812417898290832',1286,'31681241788','1','1.00','300','retail','0','2023-04-11 22:36:29','','','','0','Cash',0.00,'300','','','3','','1','2023-04-11 19:36:43','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-46.00','-47','Inclusive','branch','Inventory','','','','',''),('316812418002160312',1287,'31681241788','21','1.00','200','retail','0','2023-04-11 22:36:39','','','','0','Cash',0.00,'200','','','3','','1','2023-04-11 19:36:43','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-131.00','-132','Inclusive','branch','Inventory','','','','',''),('316812939353421300',1288,'31681293934','21','1.00','200','retail','0','2023-04-12 13:05:34','','','','0','Cash',0.00,'200','','','3','','1','2023-04-12 10:05:47','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-132.00','-133','Inclusive','branch','Inventory','','','','',''),('316812939394292432',1289,'31681293934','21','1.00','200','retail','0','2023-04-12 13:05:38','','','','0','Cash',0.00,'200','','','3','','1','2023-04-12 10:05:47','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-133.00','-134','Inclusive','branch','Inventory','','','','',''),('316812941584822434',1290,'31681294157','5','1.00','300','retail','0','2023-04-12 13:09:17','','','','0','Cash',0.00,'300','','','3','','1','2023-04-12 10:09:21','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-19.00','-20','Inclusive','branch','Inventory','','','','',''),('316812953734292432',1291,'31681295372','59','1.00','150','retail','0','2023-04-12 13:29:32','','','','100','Cash',0.00,'150','','','3','','1','2023-04-12 10:29:36','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','32.00','31','Inclusive','branch','Service','1110','4000','5500','',''),('316812965364292432',1292,'31681296535','2','1.00','250','retail','0','2023-04-12 13:48:56','','','','0','Cash',0.00,'250','','','3','','1','2023-04-12 10:48:59','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-31.00','-32','Inclusive','branch','Inventory','','','','',''),('316813103033421300',1293,'31681310302','52','1.00','150','retail','0','2023-04-12 17:38:22','','','','200','Cash',0.00,'150','','','3','','1','2023-04-12 14:38:27','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316813103483022343',1294,'31681310347','59','1.00','150','retail','0','2023-04-12 17:39:07','','','','100','Cash',0.00,'150','','','3','','1','2023-04-12 14:39:19','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','32.00','31','Inclusive','branch','Service','1110','4000','5500','',''),('316813113892222032',1295,'31681311388','21','1.00','200','retail','0','2023-04-12 17:56:28','','','','0','Cash',0.00,'200','','','3','','1','2023-04-12 14:56:32','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-134.00','-135','Inclusive','branch','Inventory','','','','',''),('316813116972222032',1296,'31681311696','52','1.00','150','retail','0','2023-04-12 18:01:36','','','','200','Cash',0.00,'150','','','3','','1','2023-04-12 15:01:40','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316813142102461312',1297,'31681314209','12','1.00','250','retail','0','2023-04-12 18:43:29','','','','0','Cash',0.00,'250','','','3','','1','2023-04-12 15:43:36','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-28.00','-29','Inclusive','branch','Inventory','','','','',''),('316813151962222032',1298,'31681315195','35','1.00','350','retail','0','2023-04-12 18:59:55','','','','0','Cash',0.00,'350','','','3','','1','2023-04-12 16:00:40','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-3.00','-4','Inclusive','branch','Inventory','','','','',''),('316813152258250832',1299,'31681315195','3','1.00','200','retail','0','2023-04-12 19:00:24','','','','0','Cash',0.00,'200','','','3','','1','2023-04-12 16:00:40','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-37.00','-38','Inclusive','branch','Inventory','','','','',''),('316813180808200832',1300,'31681318079','2','1.00','250','retail','0','2023-04-12 19:47:59','','','','0','Cash',0.00,'250','','','3','','1','2023-04-12 16:48:02','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-32.00','-33','Inclusive','branch','Inventory','','','','',''),('316813191118210832',1301,'31681319110','7','1.00','200','retail','0','2023-04-12 20:05:10','','','','0','Cash',0.00,'200','','','3','','1','2023-04-12 17:05:14','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-55.00','-56','Inclusive','branch','Inventory','','','','',''),('316813191238230832',1302,'31681319122','38','1.00','350','retail','0','2023-04-12 20:05:22','','','','0','Cash',0.00,'350','','','3','','1','2023-04-12 17:05:24','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-131.00','-132','Inclusive','branch','Inventory','','','','',''),('316813200650202031',1303,'31681320064','7','1.00','200','retail','0','2023-04-12 20:21:04','','','','0','Cash',0.00,'200','','','3','','1','2023-04-12 17:21:08','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-56.00','-57','Inclusive','branch','Inventory','','','','',''),('316813244282222032',1304,'31681324427','12','1.00','250','retail','0','2023-04-12 21:33:47','','','','0','Cash',0.00,'250','','','3','','1','2023-04-12 18:33:51','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-29.00','-30','Inclusive','branch','Inventory','','','','',''),('316813266033421300',1305,'31681326603','5','1.00','300','retail','0','2023-04-12 22:10:03','','','','0','Cash',0.00,'300','','','3','','1','2023-04-12 19:10:08','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-20.00','-21','Inclusive','branch','Inventory','','','','',''),('316813765066823634',1306,'31681376505','1','1.00','280','retail','0','2023-04-13 12:01:45','','','','0','Cash',0.00,'280','','','3','','1','2023-04-13 09:01:56','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-47.00','-48','Inclusive','branch','Inventory','','','','',''),('316813787850202031',1307,'31681378784','38','1.00','350','retail','0','2023-04-13 12:39:44','','','','0','Cash',0.00,'350','','','3','','1','2023-04-13 09:40:10','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-132.00','-133','Inclusive','branch','Inventory','','','','',''),('316813787938230832',1308,'31681378784','54','1.00','350','retail','0','2023-04-13 12:39:52','','','','200','Cash',0.00,'350','','','3','','1','2023-04-13 09:40:10','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Service','1110','4000','5500','',''),('316813787970202031',1309,'31681378784','54','1.00','350','retail','0','2023-04-13 12:39:56','','','','200','Cash',0.00,'350','','','3','','1','2023-04-13 09:40:10','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Service','1110','4000','5500','',''),('316813788548240832',1310,'31681378853','36','1.00','400','retail','0','2023-04-13 12:40:53','','','','0','Cash',0.00,'400','','','3','','1','2023-04-13 09:40:59','','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-11.00','-12','Inclusive','branch','Inventory','','','','',''),('316813851833022381',1311,'31681385182','5','1.00','300','retail','0','2023-04-13 14:26:22','','','','0','Cash',0.00,'300','','','3','','1','2023-04-13 11:26:27','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-21.00','-22','Inclusive','branch','Inventory','','','','',''),('316813892783022372',1312,'31681389277','1','1.00','280','retail','0','2023-04-13 15:34:37','','','','0','Cash',0.00,'280','','','3','','1','2023-04-13 12:34:46','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-48.00','-49','Inclusive','branch','Inventory','','','','',''),('416813931024292432',1313,'41681393102','38','1.00','350','retail','0','2023-04-13 16:38:22','','','','0','Cash',0.00,'350','','','4','','1','2023-04-13 13:38:26','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-133.00','-134','Inclusive','branch','Inventory','','','','',''),('416813963128220832',1314,'41681396311','52','1.00','150','retail','0','2023-04-13 17:31:51','','','','200','Cash',0.00,'150','','','4','','1','2023-04-13 14:31:55','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416813990378270832',1315,'41681399036','38','1.00','350','retail','0','2023-04-13 18:17:16','','','','0','Cash',0.00,'350','','','4','','1','2023-04-13 15:17:20','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-134.00','-135','Inclusive','branch','Inventory','','','','',''),('416814021280202031',1316,'41681402127','38','1.00','350','retail','0','2023-04-13 19:08:47','','','','0','Cash',0.00,'350','','','4','','1','2023-04-13 16:08:51','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-135.00','-136','Inclusive','branch','Inventory','','','','',''),('416814044092222032',1317,'41681404408','21','1.00','200','retail','0','2023-04-13 19:46:48','','','','0','Cash',0.00,'200','','','4','','1','2023-04-13 16:46:53','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-135.00','-136','Inclusive','branch','Inventory','','','','',''),('416814089203022329',1318,'41681408919','4','1.00','150','retail','0','2023-04-13 21:01:59','','','','0','Cash',0.00,'150','','','4','','1','2023-04-13 18:02:03','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-15.00','-16','Inclusive','branch','Inventory','','','','',''),('416814122262262312',1319,'41681412225','59','1.00','150','retail','0','2023-04-13 21:57:05','','','','100','Cash',0.00,'150','','','4','','1','2023-04-13 18:57:08','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','33.00','32','Inclusive','branch','Service','1110','4000','5500','',''),('416814123150202031',1320,'41681412314','12','1.00','250','retail','0','2023-04-13 21:58:34','','','','0','Cash',0.00,'250','','','4','','1','2023-04-13 18:58:38','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-30.00','-31','Inclusive','branch','Inventory','','','','',''),('416814130423022340',1321,'41681413041','20','1.00','200','retail','0','2023-04-13 22:10:41','','','','0','Cash',0.00,'200','','','4','','1','2023-04-13 19:10:44','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-40.00','-41','Inclusive','branch','Inventory','','','','',''),('416814543762233043',1322,'41681454375','59','1.00','150','retail','0','2023-04-14 09:39:35','','','','100','Cash',0.00,'150','','','4','','1','2023-04-14 06:39:39','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','33.00','32','Inclusive','branch','Service','1110','4000','5500','',''),('416814564932669312',1323,'41681456492','23','1.00','250','retail','0','2023-04-14 10:14:52','','','','0','Cash',0.00,'250','','','4','','1','2023-04-14 07:14:56','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-29.00','-30','Inclusive','branch','Inventory','','','','',''),('416814572872768312',1324,'41681457286','8','1.00','150','retail','0','2023-04-14 10:28:06','','','','0','Cash',0.00,'150','','','4','','1','2023-04-14 07:28:12','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-34.00','-35','Inclusive','branch','Inventory','','','','',''),('416814710474272432',1325,'41681471046','38','1.00','350','retail','0','2023-04-14 14:17:27','','','','0','Cash',0.00,'350','','','4','','1','2023-04-14 11:17:36','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-136.00','-137','Inclusive','branch','Inventory','','','','',''),('316814799519824934',1326,'31681479950','32','1.00','300','retail','0','2023-04-14 16:45:50','','','','0','Cash',0.00,'300','','','3','','1','2023-04-14 13:45:59','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-20.00','-21','Inclusive','branch','Inventory','','','','',''),('316814799559083403',1327,'31681479950','34','1.00','300','retail','0','2023-04-14 16:45:54','','','','0','Cash',0.00,'300','','','3','','1','2023-04-14 13:45:59','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-46.00','-47','Inclusive','branch','Inventory','','','','',''),('316814800402222032',1328,'31681480039','59','1.00','150','retail','0','2023-04-14 16:47:20','','','','100','Cash',0.00,'150','','','3','','1','2023-04-14 13:47:59','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','33.00','32','Inclusive','branch','Service','1110','4000','5500','',''),('316814800448240832',1329,'31681480039','59','1.00','150','retail','0','2023-04-14 16:47:23','','','','100','Cash',0.00,'150','','','3','','1','2023-04-14 13:47:59','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','33.00','32','Inclusive','branch','Service','1110','4000','5500','',''),('316814824103421300',1330,'31681482410','1','1.00','280','retail','0','2023-04-14 17:26:50','','','','0','Cash',0.00,'280','','','3','','1','2023-04-14 14:26:55','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-49.00','-50','Inclusive','branch','Inventory','','','','',''),('316814824652824234',1331,'31681482464','52','1.00','150','retail','0','2023-04-14 17:27:44','','','','200','Cash',0.00,'150','','','3','','1','2023-04-14 14:27:48','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316814830643330232',1332,'31681483063','21','1.00','200','retail','0','2023-04-14 17:37:43','','','','0','Cash',0.00,'200','','','3','','1','2023-04-14 14:37:46','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-136.00','-137','Inclusive','branch','Inventory','','','','',''),('416814846084824444',1333,'41681484607','3','1.00','200','retail','0','2023-04-14 18:03:27','','','','0','Cash',0.00,'200','','','4','','1','2023-04-14 15:03:34','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-38.00','-39','Inclusive','branch','Inventory','','','','',''),('416814851232562312',1334,'41681485122','21','1.00','200','retail','0','2023-04-14 18:12:02','','','','0','Cash',0.00,'200','','','4','','1','2023-04-14 15:12:07','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-137.00','-138','Inclusive','branch','Inventory','','','','',''),('416814862163022312',1335,'41681486215','38','1.00','350','retail','0','2023-04-14 18:30:15','','','','0','Cash',0.00,'350','','','4','','1','2023-04-14 15:30:27','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-137.00','-138','Inclusive','branch','Inventory','','','','',''),('416814872283421300',1336,'41681487228','9','1.00','200','retail','0','2023-04-14 18:47:08','','','','0','Cash',0.00,'200','','','4','','1','2023-04-14 15:47:13','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-6.00','-7','Inclusive','branch','Inventory','','','','',''),('416814882153421300',1337,'41681488215','4','1.00','150','retail','0','2023-04-14 19:03:35','','','','0','Cash',0.00,'150','','','4','','1','2023-04-14 16:03:39','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-16.00','-17','Inclusive','branch','Inventory','','','','',''),('416814882364282432',1338,'41681488235','52','1.00','150','retail','0','2023-04-14 19:03:55','','','','200','Cash',0.00,'150','','','4','','1','2023-04-14 16:04:02','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416814884988824844',1339,'41681488497','52','1.00','150','retail','0','2023-04-14 19:08:17','','','','200','Cash',0.00,'150','','','4','','1','2023-04-14 16:08:20','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316814898908200832',1340,'31681489889','7','1.00','200','retail','0','2023-04-14 19:31:29','','','','0','Cash',0.00,'200','','','3','','1','2023-04-14 16:31:33','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-57.00','-58','Inclusive','branch','Inventory','','','','',''),('316814899220202031',1341,'31681489921','59','1.00','150','retail','0','2023-04-14 19:32:01','','','','100','Cash',0.00,'150','','','3','','1','2023-04-14 16:32:04','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','33.00','32','Inclusive','branch','Service','1110','4000','5500','',''),('316814904652222032',1342,'31681490464','52','1.00','150','retail','0','2023-04-14 19:41:04','','','','200','Cash',0.00,'150','','','3','','1','2023-04-14 16:41:07','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416814905293022325',1343,'41681490528','38','1.00','350','retail','0','2023-04-14 19:42:08','','','','0','Cash',0.00,'350','','','4','','1','2023-04-14 16:42:14','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-138.00','-139','Inclusive','branch','Inventory','','','','',''),('416814905328220832',1344,'41681490528','38','1.00','350','retail','0','2023-04-14 19:42:11','','','','0','Cash',0.00,'350','','','4','','1','2023-04-14 16:42:14','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-139.00','-140','Inclusive','branch','Inventory','','','','',''),('316814978673421300',1345,'31681497866','38','1.00','350','retail','0','2023-04-14 21:44:26','','','','0','Cash',0.00,'350','','','3','','1','2023-04-14 18:44:32','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-140.00','-141','Inclusive','branch','Inventory','','','','',''),('316814984702867312',1346,'31681498469','59','1.00','150','retail','0','2023-04-14 21:54:29','','','','100','Cash',0.00,'150','','','3','','1','2023-04-14 18:54:33','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','33.00','32','Inclusive','branch','Service','1110','4000','5500','',''),('316815002983421300',1347,'31681500297','38','1.00','350','retail','0','2023-04-14 22:24:57','','','','0','Cash',0.00,'350','','','3','','1','2023-04-14 19:25:00','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-141.00','-142','Inclusive','branch','Inventory','','','','',''),('316815010818210832',1348,'31681501080','11','1.00','280','retail','0','2023-04-14 22:38:01','','','','0','Cash',0.00,'280','','','3','','1','2023-04-14 19:38:07','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','101.00','100','Inclusive','branch','Inventory','','','','',''),('316815010844202432',1349,'31681501080','1','1.00','280','retail','0','2023-04-14 22:38:03','','','','0','Cash',0.00,'280','','','3','','1','2023-04-14 19:38:07','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-50.00','-51','Inclusive','branch','Inventory','','','','',''),('416815376062760312',1350,'41681537605','7','1.00','200','retail','0','2023-04-15 08:46:45','','','','0','Cash',0.00,'200','','','4','','1','2023-04-15 05:46:49','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-58.00','-59','Inclusive','branch','Inventory','','','','',''),('416815376200202031',1351,'41681537619','8','1.00','150','retail','0','2023-04-15 08:47:00','','','','0','Cash',0.00,'150','','','4','','1','2023-04-15 05:47:04','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-35.00','-36','Inclusive','branch','Inventory','','','','',''),('416815400770825044',1352,'41681540077','59','1.00','150','retail','0','2023-04-15 09:27:57','','','','100','Cash',0.00,'150','','','4','','1','2023-04-15 06:28:21','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','33.00','32','Inclusive','branch','Service','1110','4000','5500','',''),('416815437764242432',1353,'41681543775','8','1.00','150','retail','0','2023-04-15 10:29:35','','','','0','Cash',0.00,'150','','','4','','1','2023-04-15 07:29:43','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-36.00','-37','Inclusive','branch','Inventory','','','','',''),('416815457784242432',1354,'41681545777','21','1.00','200','retail','0','2023-04-15 11:02:57','','','','0','Cash',0.00,'200','','','4','','1','2023-04-15 08:03:04','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-138.00','-139','Inclusive','branch','Inventory','','','','',''),('416815457955825544',1355,'41681545794','21','1.00','200','retail','0','2023-04-15 11:03:14','','','','0','Cash',0.00,'200','','','4','','1','2023-04-15 08:03:18','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-139.00','-140','Inclusive','branch','Inventory','','','','',''),('416815458077404380',1356,'41681545806','21','1.00','200','retail','0','2023-04-15 11:03:26','','','','0','Cash',0.00,'200','','','4','','1','2023-04-15 08:03:30','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-140.00','-141','Inclusive','branch','Inventory','','','','',''),('416815459853835152',1357,'41681545984','59','1.00','150','retail','0','2023-04-15 11:06:24','','','','100','Cash',0.00,'150','','','4','','1','2023-04-15 08:06:28','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','33.00','32','Inclusive','branch','Service','1110','4000','5500','',''),('416815521872825244',1358,'41681552186','40','1.00','600','retail','0','2023-04-15 12:49:46','','','','0','Cash',0.00,'600','','','4','','1','2023-04-15 09:49:50','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-17.00','-18','Inclusive','branch','Inventory','','','','',''),('416815522103022312',1359,'41681552210','5','1.00','300','retail','0','2023-04-15 12:50:10','','','','0','Cash',0.00,'300','','','4','','1','2023-04-15 09:50:14','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-22.00','-23','Inclusive','branch','Inventory','','','','',''),('416815548994825444',1360,'41681554899','66','1.00','600','retail','0','2023-04-15 13:34:59','','','','450','Cash',0.00,'600','','','4','','1','2023-04-15 10:35:06','','9','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Service','1110','4000','5500','',''),('316815609162061312',1361,'31681560915','3','1.00','200','retail','0','2023-04-15 15:15:15','','','','0','Cash',0.00,'200','','','3','','1','2023-04-15 12:15:22','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-39.00','-40','Inclusive','branch','Inventory','','','','',''),('316815673062760312',1362,'31681567304','38','1.00','350','retail','0','2023-04-15 17:01:45','','','','0','Cash',0.00,'350','','','3','','1','2023-04-15 14:02:01','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-142.00','-143','Inclusive','branch','Inventory','','','','',''),('316815673158250832',1363,'31681567304','38','1.00','350','retail','0','2023-04-15 17:01:54','','','','0','Cash',0.00,'350','','','3','','1','2023-04-15 14:02:01','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-143.00','-144','Inclusive','branch','Inventory','','','','',''),('416815701230202031',1364,'41681570122','38','1.00','350','retail','0','2023-04-15 17:48:42','','','','0','Cash',0.00,'350','','','4','','1','2023-04-15 14:48:48','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-144.00','-145','Inclusive','branch','Inventory','','','','',''),('416815706722222032',1365,'41681570671','52','1.00','150','retail','0','2023-04-15 17:57:51','','','','200','Cash',0.00,'150','','','4','','1','2023-04-15 14:57:56','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416815715630202031',1366,'41681571562','12','1.00','250','retail','0','2023-04-15 18:12:43','','','','0','Cash',0.00,'250','','','4','','1','2023-04-15 15:12:55','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-31.00','-32','Inclusive','branch','Inventory','','','','',''),('416815715702222032',1367,'41681571562','2','1.00','250','retail','0','2023-04-15 18:12:49','','','','0','Cash',0.00,'250','','','4','','1','2023-04-15 15:12:55','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-33.00','-34','Inclusive','branch','Inventory','','','','',''),('316815720742333327',1369,'31681572073','8','1.00','150','retail','0','2023-04-15 18:21:13','','','','0','Cash',0.00,'150','','','3','','1','2023-04-15 15:35:23','','1','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-37.00','-38','Inclusive','branch','Inventory','','','','',''),('316815729162825234',1370,'31681572073','1','1.00','280','retail','0','2023-04-15 18:35:15','','','','0','Cash',0.00,'280','','','3','','1','2023-04-15 15:35:23','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-51.00','-52','Inclusive','branch','Inventory','','','','',''),('316815741764825434',1371,'31681574175','23','1.00','250','retail','0','2023-04-15 18:56:15','','','','0','Cash',0.00,'250','','','3','','1','2023-04-15 15:56:19','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-30.00','-31','Inclusive','branch','Inventory','','','','',''),('316815742614272432',1372,'31681574260','59','1.00','150','retail','0','2023-04-15 18:57:40','','','','100','Cash',0.00,'150','','','3','','1','2023-04-15 15:57:49','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','33.00','32','Inclusive','branch','Service','1110','4000','5500','',''),('316815759847033835',1373,'31681575983','38','1.00','350','retail','0','2023-04-15 19:26:23','','','','0','Cash',0.00,'350','','','3','','1','2023-04-15 16:26:33','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-145.00','-146','Inclusive','branch','Inventory','','','','',''),('316815774862768312',1374,'31681577485','38','1.00','350','retail','0','2023-04-15 19:51:25','','','','0','Cash',0.00,'350','','','3','','1','2023-04-15 16:51:29','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-146.00','-147','Inclusive','branch','Inventory','','','','',''),('316815804670825034',1375,'31681580466','22','1.00','250','retail','0','2023-04-15 20:41:06','','','','0','Cash',0.00,'250','','','3','','1','2023-04-15 17:41:10','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-17.00','-18','Inclusive','branch','Inventory','','','','',''),('316815811554282432',1376,'31681581154','5','1.00','300','retail','0','2023-04-15 20:52:34','','','','0','Cash',0.00,'300','','','3','','1','2023-04-15 17:52:38','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-23.00','-24','Inclusive','branch','Inventory','','','','',''),('316815812061825134',1377,'31681581205','12','1.00','250','retail','0','2023-04-15 20:53:25','','','','0','Cash',0.00,'250','','','3','','1','2023-04-15 17:53:32','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-32.00','-33','Inclusive','branch','Inventory','','','','',''),('316815813361825134',1378,'31681581335','21','1.00','200','retail','0','2023-04-15 20:55:35','','','','0','Cash',0.00,'200','','','3','','1','2023-04-15 17:55:38','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-141.00','-142','Inclusive','branch','Inventory','','','','',''),('316815843512351338',1379,'31681584350','38','1.00','350','retail','0','2023-04-15 21:45:50','','','','0','Cash',0.00,'350','','','3','','1','2023-04-15 18:45:57','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-147.00','-148','Inclusive','branch','Inventory','','','','',''),('316815843544825434',1380,'31681584350','38','1.00','350','retail','0','2023-04-15 21:45:53','','','','0','Cash',0.00,'350','','','3','','1','2023-04-15 18:45:57','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-148.00','-149','Inclusive','branch','Inventory','','','','',''),('316816397274232432',1381,'31681639726','38','1.00','350','retail','0','2023-04-16 13:08:46','','','','0','Cash',0.00,'350','','','3','','1','2023-04-16 10:08:51','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-149.00','-150','Inclusive','branch','Inventory','','','','',''),('316816477638230832',1382,'31681647762','1','1.00','280','retail','0','2023-04-16 15:22:42','','','','0','Cash',0.00,'280','','','3','','1','2023-04-16 12:22:47','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-52.00','-53','Inclusive','branch','Inventory','','','','',''),('316816478098290832',1383,'31681647809','52','1.00','150','retail','0','2023-04-16 15:23:29','','','','200','Cash',0.00,'150','','','3','','1','2023-04-16 12:23:33','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316816496198290832',1384,'31681649618','21','1.00','200','retail','0','2023-04-16 15:53:38','','','','0','Cash',0.00,'200','','','3','','1','2023-04-16 12:53:50','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-142.00','-143','Inclusive','branch','Inventory','','','','',''),('316816496272962312',1385,'31681649618','5','1.00','300','retail','0','2023-04-16 15:53:46','','','','0','Cash',0.00,'300','','','3','','1','2023-04-16 12:53:50','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-24.00','-25','Inclusive','branch','Inventory','','','','',''),('416816565374252432',1386,'41681656536','52','1.00','150','retail','0','2023-04-16 17:48:56','','','','200','Cash',0.00,'150','','','4','','1','2023-04-16 14:49:00','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416816611154262432',1387,'41681661115','59','1.00','150','retail','0','2023-04-16 19:05:15','','','','100','Cash',0.00,'150','','','4','','1','2023-04-16 16:05:18','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','33.00','32','Inclusive','branch','Service','1110','4000','5500','',''),('416816642443022342',1388,'41681664243','38','1.00','350','retail','0','2023-04-16 19:57:23','','','','0','Cash',0.00,'350','','','4','','1','2023-04-16 16:57:27','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-150.00','-151','Inclusive','branch','Inventory','','','','',''),('416816642682222032',1389,'41681664267','11','1.00','280','retail','0','2023-04-16 19:57:47','','','','0','Cash',0.00,'280','','','4','','1','2023-04-16 16:57:56','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','100.00','99','Inclusive','branch','Inventory','','','','',''),('416816654513421300',1390,'41681665450','52','1.00','150','retail','0','2023-04-16 20:17:30','','','','200','Cash',0.00,'150','','','4','','1','2023-04-16 17:17:34','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416816676354262432',1391,'41681667634','21','1.00','200','retail','0','2023-04-16 20:53:54','','','','0','Cash',0.00,'200','','','4','','1','2023-04-16 17:53:59','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-143.00','-144','Inclusive','branch','Inventory','','','','',''),('416816676500202031',1392,'41681667649','7','1.00','200','retail','0','2023-04-16 20:54:09','','','','0','Cash',0.00,'200','','','4','','1','2023-04-16 17:54:13','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-59.00','-60','Inclusive','branch','Inventory','','','','',''),('416816678262222032',1393,'41681667826','60','1.00','100','retail','0','2023-04-16 20:57:06','','','','70','Cash',0.00,'100','','','4','','1','2023-04-16 17:57:10','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','27.00','26','Inclusive','branch','Inventory','1110','4000','5500','',''),('416816711371826144',1394,'41681671136','11','1.00','280','retail','0','2023-04-16 21:52:16','','','','0','Cash',0.00,'280','','','4','','1','2023-04-16 18:52:51','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','99.00','98','Inclusive','branch','Inventory','','','','',''),('416816711444272432',1395,'41681671136','5','1.00','300','retail','0','2023-04-16 21:52:23','','','','0','Cash',0.00,'300','','','4','','1','2023-04-16 18:52:51','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-25.00','-26','Inclusive','branch','Inventory','','','','',''),('416816711524272432',1396,'41681671136','2','1.00','250','retail','0','2023-04-16 21:52:31','','','','0','Cash',0.00,'250','','','4','','1','2023-04-16 18:52:51','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-34.00','-35','Inclusive','branch','Inventory','','','','',''),('416816711638230832',1397,'41681671136','17','1.00','200','retail','0','2023-04-16 21:52:42','','','','0','Cash',0.00,'200','','','4','','1','2023-04-16 18:52:51','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-17.00','-18','Inclusive','branch','Inventory','','','','',''),('416817152900202031',1398,'41681715289','6','1.00','280','retail','0','2023-04-17 10:08:09','','','','0','Cash',0.00,'280','','','4','','1','2023-04-17 07:08:13','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-16.00','-17','Inclusive','branch','Inventory','','','','',''),('416817153072233053',1399,'41681715306','54','1.00','350','retail','0','2023-04-17 10:08:26','','','','200','Cash',0.00,'350','','','4','','1','2023-04-17 07:08:30','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Service','1110','4000','5500','',''),('416817184382863312',1400,'41681718437','38','1.00','350','retail','0','2023-04-17 11:00:37','','','','0','Cash',0.00,'350','','','4','','1','2023-04-17 08:00:40','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-151.00','-152','Inclusive','branch','Inventory','','','','',''),('416817236270202031',1401,'41681723626','59','1.00','150','retail','0','2023-04-17 12:27:06','','','','100','Cash',0.00,'150','','','4','','1','2023-04-17 09:27:10','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','33.00','32','Inclusive','branch','Service','1110','4000','5500','',''),('416817236483421300',1402,'41681723647','21','1.00','200','retail','0','2023-04-17 12:27:27','','','','0','Cash',0.00,'200','','','4','','1','2023-04-17 09:27:36','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-144.00','-145','Inclusive','branch','Inventory','','','','',''),('416817236733421300',1403,'41681723672','12','1.00','250','retail','0','2023-04-17 12:27:52','','','','0','Cash',0.00,'250','','','4','','1','2023-04-17 09:27:57','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-33.00','-34','Inclusive','branch','Inventory','','','','',''),('416817237020202031',1404,'41681723701','23','1.00','250','retail','0','2023-04-17 12:28:21','','','','0','Cash',0.00,'250','','','4','','1','2023-04-17 09:28:25','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-31.00','-32','Inclusive','branch','Inventory','','','','',''),('416817243773421300',1405,'41681724376','8','1.00','150','retail','0','2023-04-17 12:39:36','','','','0','Cash',0.00,'150','','','4','','1','2023-04-17 09:39:54','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-38.00','-39','Inclusive','branch','Inventory','','','','',''),('416817243802222032',1406,'41681724376','8','1.00','150','retail','0','2023-04-17 12:39:40','','','','0','Cash',0.00,'150','','','4','','1','2023-04-17 09:39:54','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-39.00','-40','Inclusive','branch','Inventory','','','','',''),('416817243904222432',1407,'41681724376','8','1.00','150','retail','0','2023-04-17 12:39:49','','','','0','Cash',0.00,'150','','','4','','1','2023-04-17 09:39:54','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-40.00','-41','Inclusive','branch','Inventory','','','','',''),('416817327842222032',1408,'41681732783','52','1.00','150','retail','0','2023-04-17 14:59:43','','','','200','Cash',0.00,'150','','','4','','1','2023-04-17 11:59:47','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416817396883022386',1409,'41681739687','22','1.00','250','retail','0','2023-04-17 16:54:47','','','','0','Cash',0.00,'250','','','4','','1','2023-04-17 13:54:52','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-18.00','-19','Inclusive','branch','Inventory','','','','',''),('416817413420202031',1410,'41681741341','34','1.00','300','retail','0','2023-04-17 17:22:21','','','','0','Cash',0.00,'300','','','4','','1','2023-04-17 14:22:28','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-47.00','-48','Inclusive','branch','Inventory','','','','',''),('416817437408200832',1411,'41681743739','2','1.00','250','retail','0','2023-04-17 18:02:19','','','','0','Cash',0.00,'250','','','4','','1','2023-04-17 15:02:29','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-35.00','-36','Inclusive','branch','Inventory','','','','',''),('416817437453022347',1412,'41681743739','6','1.00','280','retail','0','2023-04-17 18:02:24','','','','0','Cash',0.00,'280','','','4','','1','2023-04-17 15:02:29','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-17.00','-18','Inclusive','branch','Inventory','','','','',''),('416817457493421300',1413,'41681745748','20','1.00','200','retail','0','2023-04-17 18:35:48','','','','0','Cash',0.00,'200','','','4','','1','2023-04-17 15:35:54','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-41.00','-42','Inclusive','branch','Inventory','','','','',''),('416817469753421300',1414,'41681746974','52','1.00','150','retail','0','2023-04-17 18:56:14','','','','200','Cash',0.00,'150','','','4','','1','2023-04-17 15:56:19','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416817469880202031',1415,'41681746987','38','1.00','350','retail','0','2023-04-17 18:56:27','','','','0','Cash',0.00,'350','','','4','','1','2023-04-17 15:56:30','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-152.00','-153','Inclusive','branch','Inventory','','','','',''),('416817482372863312',1416,'41681748236','38','1.00','350','retail','0','2023-04-17 19:17:16','','','','0','Cash',0.00,'350','','','4','','1','2023-04-17 16:17:21','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-153.00','-154','Inclusive','branch','Inventory','','','','',''),('416817482608200832',1417,'41681748259','2','1.00','250','retail','0','2023-04-17 19:17:40','','','','0','Cash',0.00,'250','','','4','','1','2023-04-17 16:17:43','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-36.00','-37','Inclusive','branch','Inventory','','','','',''),('416818054164202432',1418,'41681805416','38','1.00','350','retail','0','2023-04-18 11:10:16','','','','0','Cash',0.00,'350','','','4','','1','2023-04-18 08:10:19','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-154.00','-155','Inclusive','branch','Inventory','','','','',''),('416818054342563312',1419,'41681805433','1','1.00','280','retail','0','2023-04-18 11:10:33','','','','0','Cash',0.00,'280','','','4','','1','2023-04-18 08:10:36','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-53.00','-54','Inclusive','branch','Inventory','','','','',''),('416818055392222032',1420,'41681805538','8','1.00','150','retail','0','2023-04-18 11:12:18','','','','0','Cash',0.00,'150','','','4','','1','2023-04-18 08:12:23','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-41.00','-42','Inclusive','branch','Inventory','','','','',''),('416818069923421300',1421,'41681806991','29','1.00','300','retail','0','2023-04-18 11:36:31','','','','0','Cash',0.00,'300','','','4','','1','2023-04-18 08:36:39','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-15.00','-16','Inclusive','branch','Inventory','','','','',''),('416818077674202432',1422,'41681807767','7','1.00','200','retail','0','2023-04-18 11:49:27','','','','0','Cash',0.00,'200','','','4','','1','2023-04-18 08:49:32','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-60.00','-61','Inclusive','branch','Inventory','','','','',''),('416818115042160312',1423,'41681811503','1','1.00','280','retail','0','2023-04-18 12:51:43','','','','0','Cash',0.00,'280','','','4','','1','2023-04-18 09:51:46','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-54.00','-55','Inclusive','branch','Inventory','','','','',''),('416818161103421300',1424,'41681816109','38','1.00','350','retail','0','2023-04-18 14:08:29','','','','0','Cash',0.00,'350','','','4','','1','2023-04-18 11:08:33','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-155.00','-156','Inclusive','branch','Inventory','','','','',''),('316818222272828234',1425,'31681822226','38','1.00','350','retail','0','2023-04-18 15:50:26','','','','0','Cash',0.00,'350','','','3','','1','2023-04-18 12:50:30','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-156.00','-157','Inclusive','branch','Inventory','','','','',''),('416818259288280832',1426,'41681825928','36','1.00','400','retail','0','2023-04-18 16:52:08','','','','0','Cash',0.00,'400','','','4','','1','2023-04-18 13:52:12','','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-12.00','-13','Inclusive','branch','Inventory','','','','',''),('416818259503421300',1427,'41681825950','38','1.00','350','retail','0','2023-04-18 16:52:30','','','','0','Cash',0.00,'350','','','4','','1','2023-04-18 13:52:40','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-157.00','-158','Inclusive','branch','Inventory','','','','',''),('316818285812868312',1428,'31681828580','36','1.00','400','retail','0','2023-04-18 17:36:20','','','','0','Cash',0.00,'400','','','3','','1','2023-04-18 14:36:25','','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-13.00','-14','Inclusive','branch','Inventory','','','','',''),('316818299903022399',1429,'31681829989','13','1.00','280','retail','0','2023-04-18 17:59:49','','','','0','Cash',0.00,'280','','','3','','1','2023-04-18 15:03:39','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-3.00','-4','Inclusive','branch','Inventory','','','','',''),('316818300010202031',1430,'31681829989','24','1.00','100','retail','0','2023-04-18 18:00:00','','','','0','Cash',0.00,'100','','','3','','1','2023-04-18 15:03:39','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-11.00','-12','Inclusive','branch','Inventory','','','','',''),('316818300450202031',1431,'31681829989','57','1.00','350','retail','0','2023-04-18 18:00:44','','','','200','Cash',0.00,'350','','','3','','1','2023-04-18 15:03:39','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Service','1110','4000','5500','',''),('416818307370202031',1432,'41681830736','52','1.00','150','retail','0','2023-04-18 18:12:16','','','','200','Cash',0.00,'150','','','4','','1','2023-04-18 15:12:20','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416818309512222032',1433,'41681830951','2','1.00','250','retail','0','2023-04-18 18:15:51','','','','0','Cash',0.00,'250','','','4','','1','2023-04-18 15:15:55','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-37.00','-38','Inclusive','branch','Inventory','','','','',''),('316818331453828334',1434,'31681833144','2','1.00','250','retail','0','2023-04-18 18:52:24','','','','0','Cash',0.00,'250','','','3','','1','2023-04-18 15:52:54','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-38.00','-39','Inclusive','branch','Inventory','','','','',''),('316818331703022371',1435,'31681833144','27','1.00','100','retail','0','2023-04-18 18:52:50','','','','0','Cash',0.00,'100','','','3','','1','2023-04-18 15:52:54','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-2.00','-3','Inclusive','branch','Inventory','','','','',''),('316818360092660312',1436,'31681836008','38','1.00','350','retail','0','2023-04-18 19:40:08','','','','0','Cash',0.00,'350','','','3','','1','2023-04-18 16:40:13','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-158.00','-159','Inclusive','branch','Inventory','','','','',''),('316818360282662312',1437,'31681836028','38','1.00','350','retail','0','2023-04-18 19:40:28','','','','0','Cash',0.00,'350','','','3','','1','2023-04-18 16:40:50','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-159.00','-160','Inclusive','branch','Inventory','','','','',''),('316818360363022330',1438,'31681836028','38','1.00','350','retail','0','2023-04-18 19:40:35','','','','0','Cash',0.00,'350','','','3','','1','2023-04-18 16:40:50','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-160.00','-161','Inclusive','branch','Inventory','','','','',''),('316818366492222032',1439,'31681836648','23','1.00','250','retail','0','2023-04-18 19:50:48','','','','0','Cash',0.00,'250','','','3','','1','2023-04-18 16:50:52','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-32.00','-33','Inclusive','branch','Inventory','','','','',''),('316818376284232432',1440,'31681837627','34','1.00','300','retail','0','2023-04-18 20:07:08','','','','0','Cash',0.00,'300','','','3','','1','2023-04-18 17:07:11','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-48.00','-49','Inclusive','branch','Inventory','','','','',''),('316818382712103336',1441,'31681838270','59','1.00','150','retail','0','2023-04-18 20:17:50','','','','100','Cash',0.00,'150','','','3','','1','2023-04-18 17:17:54','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','33.00','32','Inclusive','branch','Service','1110','4000','5500','',''),('316818424162222032',1442,'31681842415','39','1.00','300','retail','0','2023-04-18 21:26:55','','','','0','Cash',0.00,'300','','','3','','1','2023-04-18 18:27:00','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-1.00','-2','Inclusive','branch','Inventory','','','','',''),('316818424374242432',1443,'31681842436','53','1.00','200','retail','0','2023-04-18 21:27:16','','','','150','Cash',0.00,'200','','','3','','1','2023-04-18 18:27:20','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','48.00','47','Inclusive','branch','Inventory','1110','4000','5500','',''),('316818445273022325',1444,'31681844526','12','1.00','250','retail','0','2023-04-18 22:02:06','','','','0','Cash',0.00,'250','','','3','','1','2023-04-18 19:02:11','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-34.00','-35','Inclusive','branch','Inventory','','','','',''),('316818904502065312',1445,'31681890449','39','1.00','300','retail','0','2023-04-19 10:47:30','','','','0','Cash',0.00,'300','','','3','','1','2023-04-19 07:47:33','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-2.00','-3','Inclusive','branch','Inventory','','','','',''),('316818904682066312',1446,'31681890467','59','1.00','150','retail','0','2023-04-19 10:47:47','','','','100','Cash',0.00,'150','','','3','','1','2023-04-19 07:47:52','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','33.00','32','Inclusive','branch','Service','1110','4000','5500','',''),('316818904848240832',1447,'31681890483','59','1.00','150','retail','0','2023-04-19 10:48:04','','','','100','Cash',0.00,'150','','','3','','1','2023-04-19 07:52:08','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','33.00','32','Inclusive','branch','Service','1110','4000','5500','',''),('316819143754212432',1448,'31681914374','52','1.00','150','retail','0','2023-04-19 17:26:14','','','','200','Cash',0.00,'150','','','3','','1','2023-04-19 14:26:17','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316819146313022336',1449,'31681914630','2','1.00','250','retail','0','2023-04-19 17:30:30','','','','0','Cash',0.00,'250','','','3','','1','2023-04-19 14:30:34','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-39.00','-40','Inclusive','branch','Inventory','','','','',''),('316819168730202031',1450,'31681916872','20','1.00','200','retail','0','2023-04-19 18:07:52','','','','0','Cash',0.00,'200','','','3','','1','2023-04-19 15:07:55','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-42.00','-43','Inclusive','branch','Inventory','','','','',''),('316819168873223070',1451,'31681916886','38','1.00','350','retail','0','2023-04-19 18:08:06','','','','0','Cash',0.00,'350','','','3','','1','2023-04-19 15:08:10','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-161.00','-162','Inclusive','branch','Inventory','','','','',''),('316819185333421300',1452,'31681918532','1','1.00','280','retail','0','2023-04-19 18:35:32','','','','0','Cash',0.00,'280','','','3','','1','2023-04-19 15:35:35','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-55.00','-56','Inclusive','branch','Inventory','','','','',''),('316819185653421300',1453,'31681918564','2','1.00','250','retail','0','2023-04-19 18:36:04','','','','0','Cash',0.00,'250','','','3','','1','2023-04-19 15:36:08','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-40.00','-41','Inclusive','branch','Inventory','','','','',''),('316819197810202031',1455,'31681919781','21','1.00','200','retail','0','2023-04-19 18:56:21','','','','0','Cash',0.00,'200','','','3','','1','2023-04-19 15:56:24','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-145.00','-146','Inclusive','branch','Inventory','','','','',''),('316819198213421300',1456,'31681919820','38','1.00','350','retail','0','2023-04-19 18:57:00','','','','0','Cash',0.00,'350','','','3','','1','2023-04-19 15:57:05','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-162.00','-163','Inclusive','branch','Inventory','','','','',''),('316819192143421300',1457,'31681919213','52','1.00','150','retail','0','2023-04-19 18:46:53','','','','200','Cash',0.00,'150','','','3','','1','2023-04-19 16:03:24','','2','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316819202013022302',1458,'31681919213','7','1.00','200','retail','0','2023-04-19 19:03:20','','','','0','Cash',0.00,'200','','','3','','1','2023-04-19 16:03:24','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-61.00','-62','Inclusive','branch','Inventory','','','','',''),('316819222168260832',1459,'31681922215','2','1.00','250','retail','0','2023-04-19 19:36:55','','','','0','Cash',0.00,'250','','','3','','1','2023-04-19 16:36:59','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-41.00','-42','Inclusive','branch','Inventory','','','','',''),('316819237542222032',1460,'31681923753','23','1.00','250','retail','0','2023-04-19 20:02:33','','','','0','Cash',0.00,'250','','','3','','1','2023-04-19 17:02:36','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-33.00','-34','Inclusive','branch','Inventory','','','','',''),('316819266036829634',1461,'31681926602','21','1.00','200','retail','0','2023-04-19 20:50:02','','','','0','Cash',0.00,'200','','','3','','1','2023-04-19 17:50:06','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-146.00','-147','Inclusive','branch','Inventory','','','','',''),('316819302483421300',1462,'31681930247','12','1.00','250','retail','0','2023-04-19 21:50:47','','','','0','Cash',0.00,'250','','','3','','1','2023-04-19 18:50:50','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-35.00','-36','Inclusive','branch','Inventory','','','','',''),('316819748912469312',1463,'31681974890','7','1.00','200','retail','0','2023-04-20 10:14:50','','','','0','Cash',0.00,'200','','','3','','1','2023-04-20 07:14:53','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-62.00','-63','Inclusive','branch','Inventory','','','','',''),('316819828452264312',1464,'31681982844','59','1.00','150','retail','0','2023-04-20 12:27:24','','','','100','Cash',0.00,'150','','','3','','1','2023-04-20 09:27:27','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','33.00','32','Inclusive','branch','Service','1110','4000','5500','',''),('316819828598290832',1465,'31681982859','59','1.00','150','retail','0','2023-04-20 12:27:39','','','','100','Cash',0.00,'150','','','3','','1','2023-04-20 09:27:42','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','33.00','32','Inclusive','branch','Service','1110','4000','5500','',''),('416819981368829844',1466,'41681998135','21','1.00','200','retail','0','2023-04-20 16:42:15','','','','0','Cash',0.00,'200','','','4','','1','2023-04-20 13:42:21','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-147.00','-148','Inclusive','branch','Inventory','','','','',''),('416819981654292432',1467,'41681998164','38','1.00','350','retail','0','2023-04-20 16:42:44','','','','0','Cash',0.00,'350','','','4','','1','2023-04-20 13:42:49','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-163.00','-164','Inclusive','branch','Inventory','','','','',''),('416820005843022385',1468,'41682000583','54','1.00','350','retail','0','2023-04-20 17:23:03','','','','200','Cash',0.00,'350','','','4','','1','2023-04-20 14:23:08','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Service','1110','4000','5500','',''),('416820006032060322',1469,'41682000602','21','1.00','200','retail','0','2023-04-20 17:23:22','','','','0','Cash',0.00,'200','','','4','','1','2023-04-20 14:24:09','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-148.00','-149','Inclusive','branch','Inventory','','','','',''),('316820020763421300',1470,'31682002075','38','1.00','350','retail','0','2023-04-20 17:47:55','','','','0','Cash',0.00,'350','','','3','','1','2023-04-20 14:48:16','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-164.00','-165','Inclusive','branch','Inventory','','','','',''),('316820020793022370',1471,'31682002075','38','1.00','350','retail','0','2023-04-20 17:47:59','','','','0','Cash',0.00,'350','','','3','','1','2023-04-20 14:48:16','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-165.00','-166','Inclusive','branch','Inventory','','','','',''),('316820020913022390',1472,'31682002075','32','1.00','300','retail','0','2023-04-20 17:48:10','','','','0','Cash',0.00,'300','','','3','','1','2023-04-20 14:48:16','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-21.00','-22','Inclusive','branch','Inventory','','','','',''),('416820041842222032',1473,'41682004183','52','1.00','150','retail','0','2023-04-20 18:23:03','','','','200','Cash',0.00,'150','','','4','','1','2023-04-20 15:23:18','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416820083584202432',1474,'41682008357','52','1.00','150','retail','0','2023-04-20 19:32:37','','','','200','Cash',0.00,'150','','','4','','1','2023-04-20 16:32:42','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416820096043421300',1475,'41682009604','12','1.00','250','retail','0','2023-04-20 19:53:24','','','','0','Cash',0.00,'250','','','4','','1','2023-04-20 16:53:27','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-36.00','-37','Inclusive','branch','Inventory','','','','',''),('416820105930820044',1476,'41682010592','6','1.00','280','retail','0','2023-04-20 20:09:52','','','','0','Cash',0.00,'280','','','4','','1','2023-04-20 17:09:56','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-18.00','-19','Inclusive','branch','Inventory','','','','',''),('416820110482222032',1477,'41682011048','52','1.00','150','retail','0','2023-04-20 20:17:28','','','','200','Cash',0.00,'150','','','4','','1','2023-04-20 17:17:31','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416820148918210832',1478,'41682014890','3','1.00','200','retail','0','2023-04-20 21:21:30','','','','0','Cash',0.00,'200','','','4','','1','2023-04-20 18:21:35','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-40.00','-41','Inclusive','branch','Inventory','','','','',''),('416820682178820844',1479,'41682068217','67','1.00','800','retail','0','2023-04-21 12:10:17','','','','600','Cash',0.00,'800','','','4','','1','2023-04-21 09:10:39','','9','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Inventory','1110','4000','5500','',''),('416820682514262432',1480,'41682068250','38','1.00','350','retail','0','2023-04-21 12:10:50','','','','0','Cash',0.00,'350','','','4','','1','2023-04-21 09:10:57','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-166.00','-167','Inclusive','branch','Inventory','','','','',''),('416820682754262432',1481,'41682068274','54','1.00','350','retail','0','2023-04-21 12:11:14','','','','200','Cash',0.00,'350','','','4','','1','2023-04-21 09:11:19','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Service','1110','4000','5500','',''),('316820686263022326',1482,'31682068625','59','1.00','150','retail','0','2023-04-21 12:17:05','','','','100','Cash',0.00,'150','','','3','','1','2023-04-21 09:17:09','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','33.00','32','Inclusive','branch','Service','1110','4000','5500','',''),('316820766162661322',1483,'31682076615','52','1.00','150','retail','0','2023-04-21 14:30:15','','','','200','Cash',0.00,'150','','','3','','1','2023-04-21 11:30:20','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416820767493421300',1484,'41682076748','38','1.00','350','retail','0','2023-04-21 14:32:28','','','','0','Cash',0.00,'350','','','4','','1','2023-04-21 11:32:33','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-167.00','-168','Inclusive','branch','Inventory','','','','',''),('316820775352763322',1485,'31682077535','3','1.00','200','retail','0','2023-04-21 14:45:35','','','','0','Cash',0.00,'200','','','3','','1','2023-04-21 11:45:38','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-41.00','-42','Inclusive','branch','Inventory','','','','',''),('416820777437820744',1486,'41682077742','34','1.00','300','retail','0','2023-04-21 14:49:02','','','','0','Cash',0.00,'300','','','4','','1','2023-04-21 11:49:07','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-49.00','-50','Inclusive','branch','Inventory','','','','',''),('416820796703421300',1487,'41682079669','33','1.00','300','retail','0','2023-04-21 15:21:09','','','','0','Cash',0.00,'300','','','4','','1','2023-04-21 12:21:15','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','38.00','37','Inclusive','branch','Inventory','','','','',''),('316820823522265322',1488,'31682082351','38','1.00','350','retail','0','2023-04-21 16:05:51','','','','0','Cash',0.00,'350','','','3','','1','2023-04-21 13:05:55','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-168.00','-169','Inclusive','branch','Inventory','','','','',''),('316820823903421300',1489,'31682082389','52','1.00','150','retail','0','2023-04-21 16:06:29','','','','200','Cash',0.00,'150','','','3','','1','2023-04-21 13:06:33','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416820885613421300',1490,'41682088560','2','1.00','250','retail','0','2023-04-21 17:49:20','','','','0','Cash',0.00,'250','','','4','','1','2023-04-21 14:49:26','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-42.00','-43','Inclusive','branch','Inventory','','','','',''),('416820895979820944',1491,'41682089597','52','1.00','150','retail','0','2023-04-21 18:06:37','','','','200','Cash',0.00,'150','','','4','','1','2023-04-21 15:06:47','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316820922844292432',1494,'31682092283','52','1.00','150','retail','0','2023-04-21 18:51:23','','','','200','Cash',0.00,'150','','','3','','1','2023-04-21 16:23:22','','2','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316820922923022392',1495,'31682092283','58','1.00','30','retail','0','2023-04-21 18:51:31','','','','15','Cash',0.00,'30','','','3','','1','2023-04-21 16:23:22','','7','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','51.00','50','Inclusive','branch','Service','1110','4000','5500','',''),('316820941790202032',1496,'31682092283','7','1.00','200','retail','0','2023-04-21 19:22:58','','','','0','Cash',0.00,'200','','','3','','1','2023-04-21 16:23:22','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-63.00','-64','Inclusive','branch','Inventory','','','','',''),('416820946183022316',1497,'41682094617','23','1.00','250','retail','0','2023-04-21 19:30:18','','','','0','Cash',0.00,'250','','','4','','1','2023-04-21 16:30:22','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-34.00','-35','Inclusive','branch','Inventory','','','','',''),('416820957085820544',1498,'41682095707','59','1.00','150','retail','0','2023-04-21 19:48:27','','','','100','Cash',0.00,'150','','','4','','1','2023-04-21 16:48:31','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','33.00','32','Inclusive','branch','Service','1110','4000','5500','',''),('416820971752767322',1499,'41682097174','21','1.00','200','retail','0','2023-04-21 20:12:54','','','','0','Cash',0.00,'200','','','4','','1','2023-04-21 17:13:04','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-149.00','-150','Inclusive','branch','Inventory','','','','',''),('316821020122821234',1500,'31682102011','23','1.00','250','retail','0','2023-04-21 21:33:31','','','','0','Cash',0.00,'250','','','3','','1','2023-04-21 18:33:36','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-35.00','-36','Inclusive','branch','Inventory','','','','',''),('316821062453022342',1501,'31682106244','8','1.00','150','retail','0','2023-04-21 22:44:04','','','','0','Cash',0.00,'150','','','3','','1','2023-04-21 19:44:08','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-42.00','-43','Inclusive','branch','Inventory','','','','',''),('316821069212222032',1502,'31682106920','5','1.00','300','retail','0','2023-04-21 22:55:20','','','','0','Cash',0.00,'300','','','3','','1','2023-04-21 19:55:24','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-26.00','-27','Inclusive','branch','Inventory','','','','',''),('316821069853421300',1503,'31682106984','1','1.00','280','retail','0','2023-04-21 22:56:24','','','','0','Cash',0.00,'280','','','3','','1','2023-04-21 19:56:27','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-56.00','-57','Inclusive','branch','Inventory','','','','',''),('316821070087821734',1504,'31682107008','1','1.00','280','retail','0','2023-04-21 22:56:48','','','','0','Cash',0.00,'280','','','3','','1','2023-04-21 19:56:52','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-57.00','-58','Inclusive','branch','Inventory','','','','',''),('316821070298290832',1505,'31682107028','39','1.00','300','retail','0','2023-04-21 22:57:08','','','','0','Cash',0.00,'300','','','3','','1','2023-04-21 19:57:11','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-3.00','-4','Inclusive','branch','Inventory','','','','',''),('416821467306821644',1506,'41682146729','3','1.00','200','retail','0','2023-04-22 09:58:49','','','','0','Cash',0.00,'200','','','4','','1','2023-04-22 06:58:54','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-42.00','-43','Inclusive','branch','Inventory','','','','',''),('416821532403022342',1507,'41682153239','20','1.00','200','retail','0','2023-04-22 11:47:19','','','','0','Cash',0.00,'200','','','4','','1','2023-04-22 08:47:23','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-43.00','-44','Inclusive','branch','Inventory','','','','',''),('416821562492664322',1508,'41682156248','38','1.00','350','retail','0','2023-04-22 12:37:28','','','','0','Cash',0.00,'350','','','4','','1','2023-04-22 09:37:42','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-169.00','-170','Inclusive','branch','Inventory','','','','',''),('416821562592665322',1509,'41682156248','38','1.00','350','retail','0','2023-04-22 12:37:38','','','','0','Cash',0.00,'350','','','4','','1','2023-04-22 09:37:42','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-170.00','-171','Inclusive','branch','Inventory','','','','',''),('416821562742222032',1510,'41682156273','38','1.00','350','retail','0','2023-04-22 12:37:53','','','','0','Cash',0.00,'350','','','4','','1','2023-04-22 09:38:02','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-171.00','-172','Inclusive','branch','Inventory','','','','',''),('416821562782222032',1511,'41682156273','38','1.00','350','retail','0','2023-04-22 12:37:57','','','','0','Cash',0.00,'350','','','4','','1','2023-04-22 09:38:02','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-172.00','-173','Inclusive','branch','Inventory','','','','',''),('416821568918210832',1512,'41682156890','7','1.00','200','retail','0','2023-04-22 12:48:10','','','','0','Cash',0.00,'200','','','4','','1','2023-04-22 09:50:47','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-64.00','-65','Inclusive','branch','Inventory','','','','',''),('416821575484252432',1513,'41682157547','20','1.00','200','retail','0','2023-04-22 12:59:07','','','','0','Cash',0.00,'200','','','4','','1','2023-04-22 09:59:21','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-44.00','-45','Inclusive','branch','Inventory','','','','',''),('416821575857821744',1514,'41682157584','7','1.00','200','retail','0','2023-04-22 12:59:44','','','','0','Cash',0.00,'200','','','4','','1','2023-04-22 09:59:49','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-65.00','-66','Inclusive','branch','Inventory','','','','',''),('416821623362263322',1515,'41682162335','2','1.00','250','retail','0','2023-04-22 14:18:55','','','','0','Cash',0.00,'250','','','4','','1','2023-04-22 11:18:59','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-43.00','-44','Inclusive','branch','Inventory','','','','',''),('416821631351626133',1516,'41682163134','38','1.00','350','retail','0','2023-04-22 14:32:14','','','','0','Cash',0.00,'350','','','4','','1','2023-04-22 11:32:18','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-173.00','-174','Inclusive','branch','Inventory','','','','',''),('416821648092460322',1517,'41682164808','12','1.00','250','retail','0','2023-04-22 15:00:08','','','','0','Cash',0.00,'250','','','4','','1','2023-04-22 12:00:15','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-37.00','-38','Inclusive','branch','Inventory','','','','',''),('416821648370202032',1518,'41682164836','12','1.00','250','retail','0','2023-04-22 15:00:36','','','','0','Cash',0.00,'250','','','4','','1','2023-04-22 12:00:40','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-38.00','-39','Inclusive','branch','Inventory','','','','',''),('416821669452034365',1519,'41682166944','21','1.00','200','retail','0','2023-04-22 15:35:44','','','','0','Cash',0.00,'200','','','4','','1','2023-04-22 12:35:48','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-150.00','-151','Inclusive','branch','Inventory','','','','',''),('316821674703421300',1520,'31682167469','52','1.00','150','retail','0','2023-04-22 15:44:29','','','','200','Cash',0.00,'150','','','3','','1','2023-04-22 12:44:33','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316821691143421300',1521,'31682169113','33','1.00','300','retail','0','2023-04-22 16:11:53','','','','0','Cash',0.00,'300','','','3','','1','2023-04-22 13:11:58','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Inventory','','','','',''),('416821693282962322',1522,'41682169327','21','1.00','200','retail','0','2023-04-22 16:15:27','','','','0','Cash',0.00,'200','','','4','','1','2023-04-22 13:15:30','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-151.00','-152','Inclusive','branch','Inventory','','','','',''),('316821693800202032',1523,'31682169379','23','1.00','250','retail','0','2023-04-22 16:16:19','','','','0','Cash',0.00,'250','','','3','','1','2023-04-22 13:16:23','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-36.00','-37','Inclusive','branch','Inventory','','','','',''),('316821699648240832',1524,'31682169963','59','1.00','150','retail','0','2023-04-22 16:26:03','','','','100','Cash',0.00,'150','','','3','','1','2023-04-22 13:26:07','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','33.00','32','Inclusive','branch','Service','1110','4000','5500','',''),('416821704220202032',1525,'41682170421','7','1.00','200','retail','0','2023-04-22 16:33:41','','','','0','Cash',0.00,'200','','','4','','1','2023-04-22 13:33:46','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-66.00','-67','Inclusive','branch','Inventory','','','','',''),('316821711843421300',1526,'31682171183','38','1.00','350','retail','0','2023-04-22 16:46:23','','','','0','Cash',0.00,'350','','','3','','1','2023-04-22 13:46:27','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-174.00','-175','Inclusive','branch','Inventory','','','','',''),('416821713753022373',1527,'41682171374','7','1.00','200','retail','0','2023-04-22 16:49:34','','','','0','Cash',0.00,'200','','','4','','1','2023-04-22 13:49:39','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-67.00','-68','Inclusive','branch','Inventory','','','','',''),('416821713947033931',1528,'41682171393','7','1.00','200','retail','0','2023-04-22 16:49:53','','','','0','Cash',0.00,'200','','','4','','1','2023-04-22 13:49:59','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-68.00','-69','Inclusive','branch','Inventory','','','','',''),('416821740214272432',1529,'41682174020','59','1.00','150','retail','0','2023-04-22 17:33:40','','','','100','Cash',0.00,'150','','','4','','1','2023-04-22 14:33:44','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','33.00','32','Inclusive','branch','Service','1110','4000','5500','',''),('316821741042232228',1530,'31682174103','59','1.00','150','retail','0','2023-04-22 17:35:03','','','','100','Cash',0.00,'150','','','3','','1','2023-04-22 14:35:05','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','33.00','32','Inclusive','branch','Service','1110','4000','5500','',''),('416821748853421300',1531,'41682174884','7','1.00','200','retail','0','2023-04-22 17:48:04','','','','0','Cash',0.00,'200','','','4','','1','2023-04-22 14:48:08','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-69.00','-70','Inclusive','branch','Inventory','','','','',''),('416821760188280832',1532,'41682176017','52','1.00','150','retail','0','2023-04-22 18:06:57','','','','200','Cash',0.00,'150','','','4','','1','2023-04-22 15:07:00','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316821792923022392',1533,'31682179291','8','1.00','150','retail','0','2023-04-22 19:01:31','','','','0','Cash',0.00,'150','','','3','','1','2023-04-22 16:01:45','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-43.00','-44','Inclusive','branch','Inventory','','','','',''),('316821792973421300',1534,'31682179291','8','1.00','150','retail','0','2023-04-22 19:01:36','','','','0','Cash',0.00,'150','','','3','','1','2023-04-22 16:01:45','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-44.00','-45','Inclusive','branch','Inventory','','','','',''),('316821793014272432',1535,'31682179291','8','1.00','150','retail','0','2023-04-22 19:01:40','','','','0','Cash',0.00,'150','','','3','','1','2023-04-22 16:01:45','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-45.00','-46','Inclusive','branch','Inventory','','','','',''),('316821795040202032',1536,'31682179499','59','1.00','150','retail','0','2023-04-22 19:05:03','','','','100','Cash',0.00,'150','','','3','','1','2023-04-22 16:05:16','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','33.00','32','Inclusive','branch','Service','1110','4000','5500','',''),('316821795308200832',1537,'31682179529','59','1.00','150','retail','0','2023-04-22 19:05:29','','','','100','Cash',0.00,'150','','','3','','1','2023-04-22 16:05:32','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','34.00','33','Inclusive','branch','Service','1110','4000','5500','',''),('316821804272222032',1538,'31682180426','59','1.00','150','retail','0','2023-04-22 19:20:26','','','','100','Cash',0.00,'150','','','3','','1','2023-04-22 16:20:30','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','34.00','33','Inclusive','branch','Service','1110','4000','5500','',''),('316821808804282432',1539,'31682180879','59','1.00','150','retail','0','2023-04-22 19:27:59','','','','100','Cash',0.00,'150','','','3','','1','2023-04-22 16:28:02','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','34.00','33','Inclusive','branch','Service','1110','4000','5500','',''),('316821821982821234',1540,'31682182197','38','1.00','350','retail','0','2023-04-22 19:49:57','','','','0','Cash',0.00,'350','','','3','','1','2023-04-22 16:50:00','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-175.00','-176','Inclusive','branch','Inventory','','','','',''),('316821920810202032',1541,'31682192080','52','1.00','150','retail','0','2023-04-22 22:34:40','','','','200','Cash',0.00,'150','','','3','','1','2023-04-22 19:34:42','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316821920923421300',1542,'31682192091','38','1.00','350','retail','0','2023-04-22 22:34:51','','','','0','Cash',0.00,'350','','','3','','1','2023-04-22 19:34:53','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-176.00','-177','Inclusive','branch','Inventory','','','','',''),('316821923483022343',1543,'31682192347','1','1.00','280','retail','0','2023-04-22 22:39:07','','','','0','Cash',0.00,'280','','','3','','1','2023-04-22 19:39:16','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-58.00','-59','Inclusive','branch','Inventory','','','','',''),('316821946552465322',1544,'31682194654','38','1.00','350','retail','0','2023-04-22 23:17:34','','','','0','Cash',0.00,'350','','','3','','1','2023-04-22 20:17:38','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-177.00','-178','Inclusive','branch','Inventory','','','','',''),('316821964660202032',1545,'31682196465','12','1.00','250','retail','0','2023-04-22 23:47:45','','','','0','Cash',0.00,'250','','','3','','1','2023-04-22 20:47:48','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-39.00','-40','Inclusive','branch','Inventory','','','','',''),('316821964834292432',1546,'31682196482','5','1.00','300','retail','0','2023-04-22 23:48:02','','','','0','Cash',0.00,'300','','','3','','1','2023-04-22 20:48:05','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-27.00','-28','Inclusive','branch','Inventory','','','','',''),('316822383294232432',1547,'31682238328','21','1.00','200','retail','0','2023-04-23 11:25:28','','','','0','Cash',0.00,'200','','','3','','1','2023-04-23 08:40:30','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-152.00','-153','Inclusive','branch','Inventory','','','','',''),('316822393042222032',1548,'31682239303','52','1.00','150','retail','0','2023-04-23 11:41:43','','','','200','Cash',0.00,'150','','','3','','1','2023-04-23 08:41:58','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316822393153421300',1549,'31682239303','58','1.00','30','retail','0','2023-04-23 11:41:54','','','','15','Cash',0.00,'30','','','3','','1','2023-04-23 08:41:58','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','52.00','51','Inclusive','branch','Service','1110','4000','5500','',''),('316822434588280832',1550,'31682243457','8','1.00','150','retail','0','2023-04-23 12:50:57','','','','0','Cash',0.00,'150','','','3','','1','2023-04-23 09:51:06','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-46.00','-47','Inclusive','branch','Inventory','','','','',''),('316822434634242432',1551,'31682243457','8','1.00','150','retail','0','2023-04-23 12:51:02','','','','0','Cash',0.00,'150','','','3','','1','2023-04-23 09:51:06','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-47.00','-48','Inclusive','branch','Inventory','','','','',''),('316822477697822734',1552,'31682247768','7','1.00','200','retail','0','2023-04-23 14:02:48','','','','0','Cash',0.00,'200','','','3','','1','2023-04-23 11:02:51','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-70.00','-71','Inclusive','branch','Inventory','','','','',''),('416822630332343302',1553,'41682263032','7','1.00','200','retail','0','2023-04-23 18:17:12','','','','0','Cash',0.00,'200','','','4','','1','2023-04-23 15:17:18','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-71.00','-72','Inclusive','branch','Inventory','','','','',''),('416822630512365322',1554,'41682263050','23','1.00','250','retail','0','2023-04-23 18:17:30','','','','0','Cash',0.00,'250','','','4','','1','2023-04-23 15:17:35','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-37.00','-38','Inclusive','branch','Inventory','','','','',''),('416822678252222032',1555,'41682267825','5','1.00','300','retail','0','2023-04-23 19:37:05','','','','0','Cash',0.00,'300','','','4','','1','2023-04-23 16:37:11','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-28.00','-29','Inclusive','branch','Inventory','','','','',''),('416822678283421300',1556,'41682267825','11','1.00','280','retail','0','2023-04-23 19:37:08','','','','0','Cash',0.00,'280','','','4','','1','2023-04-23 16:37:11','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','98.00','97','Inclusive','branch','Inventory','','','','',''),('316822689223022329',1557,'31682268921','59','1.00','150','retail','0','2023-04-23 19:55:21','','','','100','Cash',0.00,'150','','','3','','1','2023-04-23 16:55:27','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','34.00','33','Inclusive','branch','Service','1110','4000','5500','',''),('416822692998290832',1558,'41682269299','38','1.00','350','retail','0','2023-04-23 20:01:39','','','','0','Cash',0.00,'350','','','4','','1','2023-04-23 17:01:42','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-178.00','-179','Inclusive','branch','Inventory','','','','',''),('416822693283022323',1559,'41682269327','38','1.00','350','retail','0','2023-04-23 20:02:07','','','','0','Cash',0.00,'350','','','4','','1','2023-04-23 17:02:11','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-179.00','-180','Inclusive','branch','Inventory','','','','',''),('416822693442222032',1560,'41682269343','52','1.00','150','retail','0','2023-04-23 20:02:23','','','','200','Cash',0.00,'150','','','4','','1','2023-04-23 17:02:29','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416822698154262432',1561,'41682269814','8','1.00','150','retail','0','2023-04-23 20:10:14','','','','0','Cash',0.00,'150','','','4','','1','2023-04-23 17:10:18','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-48.00','-49','Inclusive','branch','Inventory','','','','',''),('416822767533421300',1562,'41682276752','30','1.00','330','retail','0','2023-04-23 22:05:52','','','','0','Cash',0.00,'330','','','4','','1','2023-04-23 19:06:03','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-8.00','-9','Inclusive','branch','Inventory','','','','',''),('416822767568260832',1563,'41682276752','30','1.00','330','retail','0','2023-04-23 22:05:55','','','','0','Cash',0.00,'330','','','4','','1','2023-04-23 19:06:03','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-9.00','-10','Inclusive','branch','Inventory','','','','',''),('416822767594272432',1564,'41682276752','30','1.00','330','retail','0','2023-04-23 22:05:58','','','','0','Cash',0.00,'330','','','4','','1','2023-04-23 19:06:03','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-10.00','-11','Inclusive','branch','Inventory','','','','',''),('416822767730202032',1565,'41682276772','2','1.00','250','retail','0','2023-04-23 22:06:12','','','','0','Cash',0.00,'250','','','4','','1','2023-04-23 19:06:17','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-44.00','-45','Inclusive','branch','Inventory','','','','',''),('416823220332823244',1566,'41682322032','23','1.00','250','retail','0','2023-04-24 10:40:32','','','','0','Cash',0.00,'250','','','4','','1','2023-04-24 07:40:37','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-38.00','-39','Inclusive','branch','Inventory','','','','',''),('416823225842823244',1567,'41682322584','12','1.00','250','retail','0','2023-04-24 10:49:44','','','','0','Cash',0.00,'250','','','4','','1','2023-04-24 07:50:06','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-40.00','-41','Inclusive','branch','Inventory','','','','',''),('416823226012222032',1568,'41682322584','26','1.00','100','retail','0','2023-04-24 10:50:00','','','','0','Cash',0.00,'100','','','4','','1','2023-04-24 07:50:06','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-12.00','-13','Inclusive','branch','Inventory','','','','',''),('416823401470202032',1569,'41682340146','38','1.00','350','retail','0','2023-04-24 15:42:26','','','','0','Cash',0.00,'350','','','4','','1','2023-04-24 12:42:29','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-180.00','-181','Inclusive','branch','Inventory','','','','',''),('416823401570823044',1570,'41682340156','52','1.00','150','retail','0','2023-04-24 15:42:36','','','','200','Cash',0.00,'150','','','4','','1','2023-04-24 12:42:40','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416823429608200832',1571,'41682342959','56','1.00','400','retail','0','2023-04-24 16:29:19','','','','200','Cash',0.00,'400','','','4','','1','2023-04-24 13:30:30','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','20.00','19','Inclusive','branch','Service','1110','4000','5500','',''),('416823446622466322',1572,'41682344662','8','1.00','150','retail','0','2023-04-24 16:57:42','','','','0','Cash',0.00,'150','','','4','','1','2023-04-24 13:57:53','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-49.00','-50','Inclusive','branch','Inventory','','','','',''),('416823476037823744',1573,'41682347602','21','1.00','200','retail','0','2023-04-24 17:46:42','','','','0','Cash',0.00,'200','','','4','','1','2023-04-24 14:46:49','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-153.00','-154','Inclusive','branch','Inventory','','','','',''),('416823476523022356',1574,'41682347651','23','1.00','250','retail','0','2023-04-24 17:47:31','','','','0','Cash',0.00,'250','','','4','','1','2023-04-24 14:47:35','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-39.00','-40','Inclusive','branch','Inventory','','','','',''),('416823487172222032',1575,'41682348716','38','1.00','350','retail','0','2023-04-24 18:05:16','','','','0','Cash',0.00,'350','','','4','','1','2023-04-24 15:05:21','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-181.00','-182','Inclusive','branch','Inventory','','','','',''),('416823491592965322',1576,'41682349158','59','1.00','150','retail','0','2023-04-24 18:12:38','','','','100','Cash',0.00,'150','','','4','','1','2023-04-24 15:12:43','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','34.00','33','Inclusive','branch','Service','1110','4000','5500','',''),('416823499151233923',1577,'41682349914','59','1.00','150','retail','0','2023-04-24 18:25:14','','','','100','Cash',0.00,'150','','','4','','1','2023-04-24 15:25:19','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','34.00','33','Inclusive','branch','Service','1110','4000','5500','',''),('416823505258250832',1578,'41682350524','21','1.00','200','retail','0','2023-04-24 18:35:24','','','','0','Cash',0.00,'200','','','4','','1','2023-04-24 15:35:28','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-154.00','-155','Inclusive','branch','Inventory','','','','',''),('416823535842368322',1579,'41682353583','38','1.00','350','retail','0','2023-04-24 19:26:23','','','','0','Cash',0.00,'350','','','4','','1','2023-04-24 16:26:27','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-182.00','-183','Inclusive','branch','Inventory','','','','',''),('416823541773421300',1580,'41682354176','21','1.00','200','retail','0','2023-04-24 19:36:16','','','','0','Cash',0.00,'200','','','4','','1','2023-04-24 16:36:20','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-155.00','-156','Inclusive','branch','Inventory','','','','',''),('416823549553423300',1581,'41682354954','2','1.00','250','retail','0','2023-04-24 19:49:14','','','','0','Cash',0.00,'250','','','4','','1','2023-04-24 16:49:25','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-45.00','-46','Inclusive','branch','Inventory','','','','',''),('416823549624823444',1582,'41682354954','26','1.00','100','retail','0','2023-04-24 19:49:21','','','','0','Cash',0.00,'100','','','4','','1','2023-04-24 16:49:25','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-13.00','-14','Inclusive','branch','Inventory','','','','',''),('416823613962222032',1583,'41682361395','38','1.00','350','retail','0','2023-04-24 21:36:35','','','','0','Cash',0.00,'350','','','4','','1','2023-04-24 18:36:39','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-183.00','-184','Inclusive','branch','Inventory','','','','',''),('416824262540202032',1584,'41682426253','40','1.00','600','retail','0','2023-04-25 15:37:33','','','','0','Cash',0.00,'600','','','4','','1','2023-04-25 12:37:40','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-18.00','-19','Inclusive','branch','Inventory','','','','',''),('416824262574222432',1585,'41682426253','40','1.00','600','retail','0','2023-04-25 15:37:36','','','','0','Cash',0.00,'600','','','4','','1','2023-04-25 12:37:40','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-19.00','-20','Inclusive','branch','Inventory','','','','',''),('416824267973421300',1586,'41682426796','59','1.00','150','retail','0','2023-04-25 15:46:36','','','','100','Cash',0.00,'150','','','4','','1','2023-04-25 12:46:40','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','34.00','33','Inclusive','branch','Service','1110','4000','5500','',''),('416824307270202032',1587,'41682430726','36','1.00','400','retail','0','2023-04-25 16:52:06','','','','0','Cash',0.00,'400','','','4','','1','2023-04-25 13:52:10','','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-14.00','-15','Inclusive','branch','Inventory','','','','',''),('416824319563421300',1588,'41682431955','64','1.00','150','retail','0','2023-04-25 17:12:35','','','','100','Cash',0.00,'150','','','4','','1','2023-04-25 14:12:41','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Service','1110','4000','5500','',''),('416824340020202032',1589,'41682434001','21','1.00','200','retail','0','2023-04-25 17:46:41','','','','0','Cash',0.00,'200','','','4','','1','2023-04-25 14:47:17','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-156.00','-157','Inclusive','branch','Inventory','','','','',''),('416824340083022300',1590,'41682434001','21','1.00','200','retail','0','2023-04-25 17:46:47','','','','0','Cash',0.00,'200','','','4','','1','2023-04-25 14:47:17','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-157.00','-158','Inclusive','branch','Inventory','','','','',''),('416824340248240832',1591,'41682434001','3','1.00','200','retail','0','2023-04-25 17:47:03','','','','0','Cash',0.00,'200','','','4','','1','2023-04-25 14:47:17','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-43.00','-44','Inclusive','branch','Inventory','','','','',''),('316824370714232432',1592,'31682437070','38','1.00','350','retail','0','2023-04-25 18:37:50','','','','0','Cash',0.00,'350','','','3','','1','2023-04-25 15:37:54','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-184.00','-185','Inclusive','branch','Inventory','','','','',''),('316824428868083403',1595,'31682442885','1','1.00','280','retail','0','2023-04-25 20:14:45','','','','0','Cash',0.00,'280','','','3','','1','2023-04-25 17:14:50','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-59.00','-60','Inclusive','branch','Inventory','','','','',''),('316824377482764322',1596,'31682437747','52','1.00','150','retail','0','2023-04-25 18:49:07','','','','200','Cash',0.00,'150','','','3','','1','2023-04-25 17:29:22','','2','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316824377574232432',1597,'31682437747','58','1.00','30','retail','0','2023-04-25 18:49:16','','','','15','Cash',0.00,'30','','','3','','1','2023-04-25 17:29:22','','7','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','52.00','51','Inclusive','branch','Service','1110','4000','5500','',''),('316824437594242432',1598,'31682437747','58','1.00','30','retail','0','2023-04-25 20:29:18','','','','15','Cash',0.00,'30','','','3','','1','2023-04-25 17:29:22','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','52.00','51','Inclusive','branch','Service','1110','4000','5500','',''),('316824438262362322',1599,'31682443825','20','1.00','200','retail','0','2023-04-25 20:30:25','','','','0','Cash',0.00,'200','','','3','','1','2023-04-25 17:30:32','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-45.00','-46','Inclusive','branch','Inventory','','','','',''),('316824438292232228',1600,'31682443825','20','1.00','200','retail','0','2023-04-25 20:30:28','','','','0','Cash',0.00,'200','','','3','','1','2023-04-25 17:30:32','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-46.00','-47','Inclusive','branch','Inventory','','','','',''),('316824448820243843',1601,'31682444881','54','1.00','350','retail','0','2023-04-25 20:48:01','','','','200','Cash',0.00,'350','','','3','','1','2023-04-25 17:48:06','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Service','1110','4000','5500','',''),('316824470293421300',1602,'31682447028','32','1.00','300','retail','0','2023-04-25 21:23:48','','','','0','Cash',0.00,'300','','','3','','1','2023-04-25 18:23:53','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-22.00','-23','Inclusive','branch','Inventory','','','','',''),('316824470432233073',1603,'31682447042','38','1.00','350','retail','0','2023-04-25 21:24:02','','','','0','Cash',0.00,'350','','','3','','1','2023-04-25 18:24:06','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-185.00','-186','Inclusive','branch','Inventory','','','','',''),('316824477950202032',1604,'31682447794','2','1.00','250','retail','0','2023-04-25 21:36:34','','','','0','Cash',0.00,'250','','','3','','1','2023-04-25 18:36:41','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-46.00','-47','Inclusive','branch','Inventory','','','','',''),('316824478177824734',1605,'31682447816','2','1.00','250','retail','0','2023-04-25 21:36:56','','','','0','Cash',0.00,'250','','','3','','1','2023-04-25 18:37:01','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-47.00','-48','Inclusive','branch','Inventory','','','','',''),('316824478938230832',1606,'31682447892','3','1.00','200','retail','0','2023-04-25 21:38:12','','','','0','Cash',0.00,'200','','','3','','1','2023-04-25 18:38:30','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-44.00','-45','Inclusive','branch','Inventory','','','','',''),('316824479003421300',1607,'31682447892','21','1.00','200','retail','0','2023-04-25 21:38:19','','','','0','Cash',0.00,'200','','','3','','1','2023-04-25 18:38:30','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-159.00','-160','Inclusive','branch','Inventory','','','','',''),('316824479723330232',1608,'31682447971','5','1.00','300','retail','0','2023-04-25 21:39:31','','','','0','Cash',0.00,'300','','','3','','1','2023-04-25 18:39:35','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-29.00','-30','Inclusive','branch','Inventory','','','','',''),('316824977850202032',1609,'31682497784','12','1.00','250','retail','0','2023-04-26 11:29:44','','','','0','Cash',0.00,'250','','','3','','1','2023-04-26 08:29:51','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-41.00','-42','Inclusive','branch','Inventory','','','','',''),('316824994463421300',1610,'31682499445','31','1.00','200','retail','0','2023-04-26 11:57:25','','','','0','Cash',0.00,'200','','','3','','1','2023-04-26 08:57:29','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-11.00','-12','Inclusive','branch','Inventory','','','','',''),('316825019992222032',1611,'31682501998','59','1.00','150','retail','0','2023-04-26 12:39:58','','','','100','Cash',0.00,'150','','','3','','1','2023-04-26 09:40:03','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','34.00','33','Inclusive','branch','Service','1110','4000','5500','',''),('316825072437825734',1612,'31682507242','1','1.00','280','retail','0','2023-04-26 14:07:22','','','','0','Cash',0.00,'280','','','3','','1','2023-04-26 11:07:27','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-60.00','-61','Inclusive','branch','Inventory','','','','',''),('316825190923022390',1613,'31682519091','21','1.00','200','retail','0','2023-04-26 17:24:51','','','','0','Cash',0.00,'200','','','3','','1','2023-04-26 14:24:56','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-159.00','-160','Inclusive','branch','Inventory','','','','',''),('316825218532165322',1614,'31682521852','52','1.00','150','retail','0','2023-04-26 18:10:52','','','','200','Cash',0.00,'150','','','3','','1','2023-04-26 15:10:57','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316825248982469322',1615,'31682524897','21','1.00','200','retail','0','2023-04-26 19:01:37','','','','0','Cash',0.00,'200','','','3','','1','2023-04-26 16:01:42','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-160.00','-161','Inclusive','branch','Inventory','','','','',''),('316825295260202032',1616,'31682529525','23','1.00','250','retail','0','2023-04-26 20:18:45','','','','0','Cash',0.00,'250','','','3','','1','2023-04-26 17:18:53','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-40.00','-41','Inclusive','branch','Inventory','','','','',''),('316825295302963322',1617,'31682529525','23','1.00','250','retail','0','2023-04-26 20:18:49','','','','0','Cash',0.00,'250','','','3','','1','2023-04-26 17:18:53','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-41.00','-42','Inclusive','branch','Inventory','','','','',''),('316825298660202032',1618,'31682529865','7','1.00','200','retail','0','2023-04-26 20:24:25','','','','0','Cash',0.00,'200','','','3','','1','2023-04-26 17:24:29','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-72.00','-73','Inclusive','branch','Inventory','','','','',''),('316825311193022311',1619,'31682531118','59','1.00','150','retail','0','2023-04-26 20:45:18','','','','100','Cash',0.00,'150','','','3','','1','2023-04-26 17:45:22','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','35.00','34','Inclusive','branch','Service','1110','4000','5500','',''),('316825313012160322',1620,'31682531300','21','1.00','200','retail','0','2023-04-26 20:48:20','','','','0','Cash',0.00,'200','','','3','','1','2023-04-26 17:48:37','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-161.00','-162','Inclusive','branch','Inventory','','','','',''),('316825313851825134',1621,'31682531384','6','1.00','280','retail','0','2023-04-26 20:49:44','','','','0','Cash',0.00,'280','','','3','','1','2023-04-26 17:50:11','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-19.00','-20','Inclusive','branch','Inventory','','','','',''),('316825314538230832',1622,'31682531452','58','1.00','30','retail','0','2023-04-26 20:50:52','','','','15','Cash',0.00,'30','','','3','','1','2023-04-26 17:50:56','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','52.00','51','Inclusive','branch','Service','1110','4000','5500','',''),('316825344392463322',1623,'31682534438','2','1.00','250','retail','0','2023-04-26 21:40:38','','','','0','Cash',0.00,'250','','','3','','1','2023-04-26 18:40:48','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-48.00','-49','Inclusive','branch','Inventory','','','','',''),('316825351945825534',1624,'31682535193','21','1.00','200','retail','0','2023-04-26 21:53:13','','','','0','Cash',0.00,'200','','','3','','1','2023-04-26 18:53:21','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-162.00','-163','Inclusive','branch','Inventory','','','','',''),('316825351988280832',1625,'31682535193','21','1.00','200','retail','0','2023-04-26 21:53:17','','','','0','Cash',0.00,'200','','','3','','1','2023-04-26 18:53:21','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-163.00','-164','Inclusive','branch','Inventory','','','','',''),('316825771068260832',1626,'31682577105','11','1.00','280','retail','0','2023-04-27 09:31:45','','','','0','Cash',0.00,'280','','','3','','1','2023-04-27 06:32:06','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','97.00','96','Inclusive','branch','Inventory','','','','',''),('316825771144272432',1627,'31682577105','24','1.00','100','retail','0','2023-04-27 09:31:53','','','','0','Cash',0.00,'100','','','3','','1','2023-04-27 06:32:06','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-12.00','-13','Inclusive','branch','Inventory','','','','',''),('316825817630202032',1628,'31682581762','7','1.00','200','retail','0','2023-04-27 10:49:22','','','','0','Cash',0.00,'200','','','3','','1','2023-04-27 07:49:29','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-73.00','-74','Inclusive','branch','Inventory','','','','',''),('316825859032560322',1630,'31682585903','7','1.00','200','retail','0','2023-04-27 11:58:23','','','','0','Cash',0.00,'200','','','3','','1','2023-04-27 09:16:13','','1','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-74.00','-75','Inclusive','branch','Inventory','','','','',''),('316825869622222032',1631,'31682585903','21','1.00','200','retail','0','2023-04-27 12:16:01','','','','0','Cash',0.00,'200','','','3','','1','2023-04-27 09:16:13','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-164.00','-165','Inclusive','branch','Inventory','','','','',''),('316825873208200832',1632,'31682587320','39','1.00','300','retail','0','2023-04-27 12:22:00','','','','0','Cash',0.00,'300','','','3','','1','2023-04-27 09:22:03','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-4.00','-5','Inclusive','branch','Inventory','','','','',''),('316825909630202032',1634,'31682590962','22','1.00','250','retail','0','2023-04-27 13:22:42','','','','0','Cash',0.00,'250','','','3','','1','2023-04-27 10:56:22','','2','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-19.00','-20','Inclusive','branch','Inventory','','','','',''),('316825929794292432',1635,'31682590962','46','1.00','200','retail','0','2023-04-27 13:56:18','','','','0','Cash',0.00,'200','','','3','','1','2023-04-27 10:56:22','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','42.00','41','Inclusive','branch','Inventory','','','','',''),('316825958208200832',1636,'31682595819','59','1.00','150','retail','0','2023-04-27 14:43:39','','','','100','Cash',0.00,'150','','','3','','1','2023-04-27 11:43:51','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','35.00','34','Inclusive','branch','Service','1110','4000','5500','',''),('416826017233022327',1637,'41682601722','21','1.00','200','retail','0','2023-04-27 16:22:02','','','','0','Cash',0.00,'200','','','4','','1','2023-04-27 13:22:06','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-165.00','-166','Inclusive','branch','Inventory','','','','',''),('416826017383022337',1638,'41682601737','38','1.00','350','retail','0','2023-04-27 16:22:17','','','','0','Cash',0.00,'350','','','4','','1','2023-04-27 13:22:22','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-186.00','-187','Inclusive','branch','Inventory','','','','',''),('316826073347826734',1639,'31682607333','52','1.00','150','retail','0','2023-04-27 17:55:33','','','','200','Cash',0.00,'150','','','3','','1','2023-04-27 14:55:38','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316826075417826734',1640,'31682607540','58','1.00','30','retail','0','2023-04-27 17:59:00','','','','15','Cash',0.00,'30','','','3','','1','2023-04-27 14:59:03','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','52.00','51','Inclusive','branch','Service','1110','4000','5500','',''),('416826105293022325',1641,'41682610528','52','1.00','150','retail','0','2023-04-27 18:48:48','','','','200','Cash',0.00,'150','','','4','','1','2023-04-27 15:48:55','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416826105310202032',1642,'41682610528','23','1.00','250','retail','0','2023-04-27 18:48:51','','','','0','Cash',0.00,'250','','','4','','1','2023-04-27 15:48:55','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-42.00','-43','Inclusive','branch','Inventory','','','','',''),('416826142372463322',1643,'41682614236','59','1.00','150','retail','0','2023-04-27 19:50:36','','','','100','Cash',0.00,'150','','','4','','1','2023-04-27 16:50:40','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','35.00','34','Inclusive','branch','Service','1110','4000','5500','',''),('416826158102222032',1644,'41682615809','52','1.00','150','retail','0','2023-04-27 20:16:49','','','','200','Cash',0.00,'150','','','4','','1','2023-04-27 17:17:01','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416826158174212432',1645,'41682615809','58','1.00','30','retail','0','2023-04-27 20:16:57','','','','15','Cash',0.00,'30','','','4','','1','2023-04-27 17:17:01','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','52.00','51','Inclusive','branch','Service','1110','4000','5500','',''),('416826201663022361',1646,'41682620165','59','1.00','150','retail','0','2023-04-27 21:29:25','','','','100','Cash',0.00,'150','','','4','','1','2023-04-27 18:29:33','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','35.00','34','Inclusive','branch','Service','1110','4000','5500','',''),('416826202482222032',1647,'41682620242','2','1.00','250','retail','0','2023-04-27 21:30:47','','','','0','Cash',0.00,'250','','','4','','1','2023-04-27 18:30:54','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-49.00','-50','Inclusive','branch','Inventory','','','','',''),('316826707643022367',1648,'31682670763','7','1.00','200','retail','0','2023-04-28 11:32:43','','','','0','Cash',0.00,'200','','','3','','1','2023-04-28 08:32:46','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-75.00','-76','Inclusive','branch','Inventory','','','','',''),('416826708770202032',1649,'41682670876','2','1.00','250','retail','0','2023-04-28 11:34:36','','','','0','Cash',0.00,'250','','','4','','1','2023-04-28 08:34:44','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-50.00','-51','Inclusive','branch','Inventory','','','','',''),('416826708984272432',1650,'41682670897','21','1.00','200','retail','0','2023-04-28 11:34:57','','','','0','Cash',0.00,'200','','','4','','1','2023-04-28 08:35:02','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-166.00','-167','Inclusive','branch','Inventory','','','','',''),('416826709183022319',1651,'41682670917','21','1.00','200','retail','0','2023-04-28 11:35:17','','','','0','Cash',0.00,'200','','','4','','1','2023-04-28 08:35:21','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-167.00','-168','Inclusive','branch','Inventory','','','','',''),('416826709313421300',1652,'41682670930','21','1.00','200','retail','0','2023-04-28 11:35:30','','','','0','Cash',0.00,'200','','','4','','1','2023-04-28 08:35:34','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-168.00','-169','Inclusive','branch','Inventory','','','','',''),('316826719703022379',1653,'31682671969','17','1.00','200','retail','0','2023-04-28 11:52:49','','','','0','Cash',0.00,'200','','','3','','1','2023-04-28 08:52:52','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-18.00','-19','Inclusive','branch','Inventory','','','','',''),('416826749108200832',1654,'41682674909','17','1.00','200','retail','0','2023-04-28 12:41:49','','','','0','Cash',0.00,'200','','','4','','1','2023-04-28 09:41:53','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-19.00','-20','Inclusive','branch','Inventory','','','','',''),('416826749234826444',1655,'41682674922','17','1.00','200','retail','0','2023-04-28 12:42:02','','','','0','Cash',0.00,'200','','','4','','1','2023-04-28 09:42:06','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-20.00','-21','Inclusive','branch','Inventory','','','','',''),('416826749352463322',1656,'41682674934','7','1.00','200','retail','0','2023-04-28 12:42:14','','','','0','Cash',0.00,'200','','','4','','1','2023-04-28 09:42:17','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-76.00','-77','Inclusive','branch','Inventory','','','','',''),('416826749460202032',1657,'41682674945','58','1.00','30','retail','0','2023-04-28 12:42:25','','','','15','Cash',0.00,'30','','','4','','1','2023-04-28 09:42:29','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','52.00','51','Inclusive','branch','Service','1110','4000','5500','',''),('416826768103421300',1658,'41682676809','11','1.00','280','retail','0','2023-04-28 13:13:29','','','','0','Cash',0.00,'280','','','4','','1','2023-04-28 10:13:33','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','96.00','95','Inclusive','branch','Inventory','','','','',''),('416826768222222032',1659,'41682676821','20','1.00','200','retail','0','2023-04-28 13:13:41','','','','0','Cash',0.00,'200','','','4','','1','2023-04-28 10:13:45','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-47.00','-48','Inclusive','branch','Inventory','','','','',''),('416826816404282432',1660,'41682681639','3','1.00','200','retail','0','2023-04-28 14:33:59','','','','0','Cash',0.00,'200','','','4','','1','2023-04-28 11:34:03','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-45.00','-46','Inclusive','branch','Inventory','','','','',''),('416826816528220832',1661,'41682681651','23','1.00','250','retail','0','2023-04-28 14:34:11','','','','0','Cash',0.00,'250','','','4','','1','2023-04-28 11:34:15','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-43.00','-44','Inclusive','branch','Inventory','','','','',''),('416826816703022376',1662,'41682681670','23','1.00','250','retail','0','2023-04-28 14:34:30','','','','0','Cash',0.00,'250','','','4','','1','2023-04-28 11:34:33','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-44.00','-45','Inclusive','branch','Inventory','','','','',''),('316826856824282432',1663,'31682685681','7','1.00','200','retail','0','2023-04-28 15:41:21','','','','0','Cash',0.00,'200','','','3','','1','2023-04-28 12:41:25','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-77.00','-78','Inclusive','branch','Inventory','','','','',''),('316826856950202032',1664,'31682685694','21','1.00','200','retail','0','2023-04-28 15:41:34','','','','0','Cash',0.00,'200','','','3','','1','2023-04-28 12:41:37','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-169.00','-170','Inclusive','branch','Inventory','','','','',''),('316826874873421300',1665,'31682687486','7','1.00','200','retail','0','2023-04-28 16:11:26','','','','0','Cash',0.00,'200','','','3','','1','2023-04-28 13:11:29','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-78.00','-79','Inclusive','branch','Inventory','','','','',''),('416826896383330232',1666,'41682689637','7','1.00','200','retail','0','2023-04-28 16:47:17','','','','0','Cash',0.00,'200','','','4','','1','2023-04-28 13:47:22','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-79.00','-80','Inclusive','branch','Inventory','','','','',''),('316826898072960322',1667,'31682689806','7','1.00','200','retail','0','2023-04-28 16:50:06','','','','0','Cash',0.00,'200','','','3','','1','2023-04-28 13:50:10','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-80.00','-81','Inclusive','branch','Inventory','','','','',''),('416826913602166322',1668,'41682691359','5','1.00','300','retail','0','2023-04-28 17:15:59','','','','0','Cash',0.00,'300','','','4','','1','2023-04-28 14:16:03','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-30.00','-31','Inclusive','branch','Inventory','','','','',''),('316826949352222032',1670,'31682694934','59','1.00','150','retail','0','2023-04-28 18:15:34','','','','100','Cash',0.00,'150','','','3','','1','2023-04-28 15:15:41','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','35.00','34','Inclusive','branch','Service','1110','4000','5500','',''),('316826921930202032',1671,'31682692192','40','1.00','600','retail','0','2023-04-28 17:29:52','','','','0','Cash',0.00,'600','','','3','','1','2023-04-28 15:26:12','','8','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-20.00','-21','Inclusive','branch','Inventory','','','','',''),('316826955683022365',1672,'31682692192','5','1.00','300','retail','0','2023-04-28 18:26:07','','','','0','Cash',0.00,'300','','','3','','1','2023-04-28 15:26:12','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-31.00','-32','Inclusive','branch','Inventory','','','','',''),('416826975123022315',1673,'41682697511','52','1.00','150','retail','0','2023-04-28 18:58:31','','','','200','Cash',0.00,'150','','','4','','1','2023-04-28 15:58:35','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316826987234292432',1674,'31682698722','59','1.00','150','retail','0','2023-04-28 19:18:42','','','','100','Cash',0.00,'150','','','3','','1','2023-04-28 16:18:46','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','35.00','34','Inclusive','branch','Service','1110','4000','5500','',''),('316827072743022372',1675,'31682707273','40','1.00','600','retail','0','2023-04-28 21:41:13','','','','0','Cash',0.00,'600','','','3','','1','2023-04-28 18:41:17','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-21.00','-22','Inclusive','branch','Inventory','','','','',''),('316827100520031025',1676,'31682710052','1','1.00','280','retail','0','2023-04-28 22:27:32','','','','0','Cash',0.00,'280','','','3','','1','2023-04-28 19:27:35','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-61.00','-62','Inclusive','branch','Inventory','','','','',''),('316827105683022365',1677,'31682710567','21','1.00','200','retail','0','2023-04-28 22:36:07','','','','0','Cash',0.00,'200','','','3','','1','2023-04-28 19:36:10','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-170.00','-171','Inclusive','branch','Inventory','','','','',''),('316827113633022363',1678,'31682711362','59','1.00','150','retail','0','2023-04-28 22:49:22','','','','100','Cash',0.00,'150','','','3','','1','2023-04-28 19:49:25','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','35.00','34','Inclusive','branch','Service','1110','4000','5500','',''),('316827115142161322',1679,'31682711513','21','1.00','200','retail','0','2023-04-28 22:51:53','','','','0','Cash',0.00,'200','','','3','','1','2023-04-28 19:51:55','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-171.00','-172','Inclusive','branch','Inventory','','','','',''),('416827573143022313',1680,'41682757313','21','1.00','200','retail','0','2023-04-29 11:35:13','','','','0','Cash',0.00,'200','','','4','','1','2023-04-29 08:35:17','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-172.00','-173','Inclusive','branch','Inventory','','','','',''),('416827573283421300',1681,'41682757327','7','1.00','200','retail','0','2023-04-29 11:35:28','','','','0','Cash',0.00,'200','','','4','','1','2023-04-29 08:35:31','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-81.00','-82','Inclusive','branch','Inventory','','','','',''),('416827573418210832',1682,'41682757340','7','1.00','200','retail','0','2023-04-29 11:35:40','','','','0','Cash',0.00,'200','','','4','','1','2023-04-29 08:35:44','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-82.00','-83','Inclusive','branch','Inventory','','','','',''),('416827573543022353',1683,'41682757353','46','1.00','200','retail','0','2023-04-29 11:35:53','','','','0','Cash',0.00,'200','','','4','','1','2023-04-29 08:35:57','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','41.00','40','Inclusive','branch','Inventory','','','','',''),('416827641714827444',1684,'41682764170','59','1.00','150','retail','0','2023-04-29 13:29:30','','','','100','Cash',0.00,'150','','','4','','1','2023-04-29 10:29:34','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','35.00','34','Inclusive','branch','Service','1110','4000','5500','',''),('416827688333322202',1685,'41682768832','52','1.00','150','retail','0','2023-04-29 14:47:12','','','','200','Cash',0.00,'150','','','4','','1','2023-04-29 11:47:16','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416827710418210832',1686,'41682771040','1','1.00','280','retail','0','2023-04-29 15:24:00','','','','0','Cash',0.00,'280','','','4','','1','2023-04-29 12:24:05','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-62.00','-63','Inclusive','branch','Inventory','','','','',''),('416827765653022365',1687,'41682776564','7','1.00','200','retail','0','2023-04-29 16:56:04','','','','0','Cash',0.00,'200','','','4','','1','2023-04-29 13:56:12','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-83.00','-84','Inclusive','branch','Inventory','','','','',''),('316827781624272432',1688,'31682778161','30','1.00','330','retail','0','2023-04-29 17:22:41','','','','0','Cash',0.00,'330','','','3','','1','2023-04-29 14:22:46','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-11.00','-12','Inclusive','branch','Inventory','','','','',''),('416827806550827044',1690,'41682780655','23','1.00','250','retail','0','2023-04-29 18:04:15','','','','0','Cash',0.00,'250','','','4','','1','2023-04-29 15:04:23','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-45.00','-46','Inclusive','branch','Inventory','','','','',''),('316827842632222032',1691,'31682784262','20','1.00','200','retail','0','2023-04-29 19:04:22','','','','0','Cash',0.00,'200','','','3','','1','2023-04-29 16:04:25','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-48.00','-49','Inclusive','branch','Inventory','','','','',''),('316827845822222032',1692,'31682784581','20','1.00','200','retail','0','2023-04-29 19:09:41','','','','0','Cash',0.00,'200','','','3','','1','2023-04-29 16:09:44','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-49.00','-50','Inclusive','branch','Inventory','','','','',''),('316827865763022375',1693,'31682786575','17','1.00','200','retail','0','2023-04-29 19:42:55','','','','0','Cash',0.00,'200','','','3','','1','2023-04-29 16:43:03','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-22.00','-23','Inclusive','branch','Inventory','','','','',''),('316827906620202032',1694,'31682790661','52','1.00','150','retail','0','2023-04-29 20:51:01','','','','200','Cash',0.00,'150','','','3','','1','2023-04-29 17:52:40','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316827907248240832',1695,'31682790661','21','1.00','200','retail','0','2023-04-29 20:52:03','','','','0','Cash',0.00,'200','','','3','','1','2023-04-29 17:52:40','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-173.00','-174','Inclusive','branch','Inventory','','','','',''),('316827907910022373',1696,'31682790790','59','1.00','150','retail','0','2023-04-29 20:53:10','','','','100','Cash',0.00,'150','','','3','','1','2023-04-29 17:53:13','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','35.00','34','Inclusive','branch','Service','1110','4000','5500','',''),('316827921082827234',1697,'31682792107','3','1.00','200','retail','0','2023-04-29 21:15:07','','','','0','Cash',0.00,'200','','','3','','1','2023-04-29 18:15:11','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-46.00','-47','Inclusive','branch','Inventory','','','','',''),('316827799938230832',1698,'31682779992','17','1.00','200','retail','0','2023-04-29 17:53:13','','','','0','Cash',0.00,'200','','','3','','1','2023-04-29 18:16:03','','2','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-21.00','-22','Inclusive','branch','Inventory','','','','',''),('316827921611409386',1699,'31682779992','17','1.00','200','retail','0','2023-04-29 21:16:00','','','','0','Cash',0.00,'200','','','3','','1','2023-04-29 18:16:03','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-23.00','-24','Inclusive','branch','Inventory','','','','',''),('316827939748240832',1700,'31682793973','60','1.00','100','retail','0','2023-04-29 21:46:13','','','','70','Cash',0.00,'100','','','3','','1','2023-04-29 18:46:57','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','26.00','25','Inclusive','branch','Inventory','1110','4000','5500','',''),('316827985562865322',1701,'31682798555','7','1.00','200','retail','0','2023-04-29 23:02:35','','','','0','Cash',0.00,'200','','','3','','1','2023-04-29 20:02:38','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-84.00','-85','Inclusive','branch','Inventory','','','','',''),('316828462833421300',1702,'31682846282','1','1.00','280','retail','0','2023-04-30 12:18:02','','','','0','Cash',0.00,'280','','','3','','1','2023-04-30 09:18:07','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-63.00','-64','Inclusive','branch','Inventory','','','','',''),('316828486673022366',1703,'31682848666','20','1.00','200','retail','0','2023-04-30 12:57:46','','','','0','Cash',0.00,'200','','','3','','1','2023-04-30 09:58:08','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-50.00','-51','Inclusive','branch','Inventory','','','','',''),('316828486842868322',1704,'31682848666','12','1.00','250','retail','0','2023-04-30 12:58:03','','','','0','Cash',0.00,'250','','','3','','1','2023-04-30 09:58:08','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-42.00','-43','Inclusive','branch','Inventory','','','','',''),('316828619753022379',1706,'31682861974','23','1.00','250','retail','0','2023-04-30 16:39:34','','','','0','Cash',0.00,'250','','','3','','1','2023-04-30 13:40:15','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-46.00','-47','Inclusive','branch','Inventory','','','','',''),('416828636573421300',1707,'41682863656','59','1.00','150','retail','0','2023-04-30 17:07:36','','','','100','Cash',0.00,'150','','','4','','1','2023-04-30 14:07:43','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','35.00','34','Inclusive','branch','Service','1110','4000','5500','',''),('416828680960202032',1711,'41682868095','38','1.00','350','retail','0','2023-04-30 18:21:35','','','','0','Cash',0.00,'350','','','4','','1','2023-04-30 15:21:38','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-187.00','-188','Inclusive','branch','Inventory','','','','',''),('316828617571828134',1712,'31682861756','1','1.00','280','retail','0','2023-04-30 16:35:56','','','','0','Cash',0.00,'280','','','3','','1','2023-04-30 15:27:05','','1','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-64.00','-65','Inclusive','branch','Inventory','','','','',''),('316828644493022344',1713,'31682861756','23','1.00','250','retail','0','2023-04-30 17:20:48','','','','0','Cash',0.00,'250','','','3','','1','2023-04-30 15:27:05','','2','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-47.00','-48','Inclusive','branch','Inventory','','','','',''),('316828644604262432',1714,'31682861756','23','1.00','250','retail','0','2023-04-30 17:20:59','','','','0','Cash',0.00,'250','','','3','','1','2023-04-30 15:27:05','','2','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-48.00','-49','Inclusive','branch','Inventory','','','','',''),('316828668552222032',1715,'31682861756','46','1.00','200','retail','0','2023-04-30 18:00:55','','','','0','Cash',0.00,'200','','','3','','1','2023-04-30 15:27:05','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','40.00','39','Inclusive','branch','Inventory','','','','',''),('416828691518210832',1716,'41682869150','52','1.00','150','retail','0','2023-04-30 18:39:10','','','','200','Cash',0.00,'150','','','4','','1','2023-04-30 15:39:14','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316828695553421300',1717,'31682869554','19','1.00','200','retail','0','2023-04-30 18:45:54','','','','0','Cash',0.00,'200','','','3','','1','2023-04-30 15:45:59','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-2.00','-3','Inclusive','branch','Inventory','','','','',''),('316828704770202032',1718,'31682870476','5','1.00','300','retail','0','2023-04-30 19:01:16','','','','0','Cash',0.00,'300','','','3','','1','2023-04-30 16:01:20','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-32.00','-33','Inclusive','branch','Inventory','','','','',''),('316828710661828134',1719,'31682871065','1','1.00','280','retail','0','2023-04-30 19:11:05','','','','0','Cash',0.00,'280','','','3','','1','2023-04-30 16:11:09','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-65.00','-66','Inclusive','branch','Inventory','','','','',''),('416829255803022385',1720,'41682925579','59','1.00','150','retail','0','2023-05-01 10:19:39','','','','100','Cash',0.00,'150','','','4','','1','2023-05-01 07:19:43','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','35.00','34','Inclusive','branch','Service','1110','4000','5500','',''),('416829256722567322',1721,'41682925671','1','1.00','280','retail','0','2023-05-01 10:21:11','','','','0','Cash',0.00,'280','','','4','','1','2023-05-01 07:21:16','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-66.00','-67','Inclusive','branch','Inventory','','','','',''),('416829353013022303',1722,'41682935300','4','1.00','150','retail','0','2023-05-01 13:01:41','','','','0','Cash',0.00,'150','','','4','','1','2023-05-01 10:01:45','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-17.00','-18','Inclusive','branch','Inventory','','','','',''),('416829397752967322',1723,'41682939775','11','1.00','280','retail','0','2023-05-01 14:16:15','','','','0','Cash',0.00,'280','','','4','','1','2023-05-01 11:16:29','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','95.00','94','Inclusive','branch','Inventory','','','','',''),('416829402338230832',1724,'41682940232','52','1.00','150','retail','0','2023-05-01 14:23:52','','','','200','Cash',0.00,'150','','','4','','1','2023-05-01 11:23:56','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416829408470829044',1725,'41682940846','11','1.00','280','retail','0','2023-05-01 14:34:06','','','','0','Cash',0.00,'280','','','4','','1','2023-05-01 11:34:10','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','94.00','93','Inclusive','branch','Inventory','','','','',''),('416829413550202032',1726,'41682941354','38','1.00','350','retail','0','2023-05-01 14:42:34','','','','0','Cash',0.00,'350','','','4','','1','2023-05-01 11:42:37','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-188.00','-189','Inclusive','branch','Inventory','','','','',''),('416829413802222032',1727,'41682941379','38','1.00','350','retail','0','2023-05-01 14:42:59','','','','0','Cash',0.00,'350','','','4','','1','2023-05-01 11:43:03','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-189.00','-190','Inclusive','branch','Inventory','','','','',''),('416829477642766322',1728,'41682947763','22','1.00','250','retail','0','2023-05-01 16:29:23','','','','0','Cash',0.00,'250','','','4','','1','2023-05-01 13:29:47','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-20.00','-21','Inclusive','branch','Inventory','','','','',''),('416829477703022377',1729,'41682947763','15','1.00','200','retail','0','2023-05-01 16:29:29','','','','0','Cash',0.00,'200','','','4','','1','2023-05-01 13:29:47','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-9.00','-10','Inclusive','branch','Inventory','','','','',''),('416829477828220832',1730,'41682947763','58','1.00','30','retail','0','2023-05-01 16:29:41','','','','15','Cash',0.00,'30','','','4','','1','2023-05-01 13:29:47','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','52.00','51','Inclusive','branch','Service','1110','4000','5500','',''),('416829500583022350',1731,'41682950057','11','1.00','280','retail','0','2023-05-01 17:07:37','','','','0','Cash',0.00,'280','','','4','','1','2023-05-01 14:07:42','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','93.00','92','Inclusive','branch','Inventory','','','','',''),('416829513221829144',1732,'41682951321','38','1.00','350','retail','0','2023-05-01 17:28:41','','','','0','Cash',0.00,'350','','','4','','1','2023-05-01 14:28:46','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-190.00','-191','Inclusive','branch','Inventory','','','','',''),('416829550033022300',1733,'41682955002','22','1.00','250','retail','0','2023-05-01 18:30:02','','','','0','Cash',0.00,'250','','','4','','1','2023-05-01 15:30:15','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-21.00','-22','Inclusive','branch','Inventory','','','','',''),('416829550118210832',1734,'41682955002','46','1.00','200','retail','0','2023-05-01 18:30:11','','','','0','Cash',0.00,'200','','','4','','1','2023-05-01 15:30:15','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','39.00','38','Inclusive','branch','Inventory','','','','',''),('416829566423432020',1735,'41682956641','20','1.00','200','retail','0','2023-05-01 18:57:21','','','','0','Cash',0.00,'200','','','4','','1','2023-05-01 15:57:26','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-51.00','-52','Inclusive','branch','Inventory','','','','',''),('416829580312863322',1736,'41682958030','11','1.00','280','retail','0','2023-05-01 19:20:30','','','','0','Cash',0.00,'280','','','4','','1','2023-05-01 16:20:38','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','92.00','91','Inclusive','branch','Inventory','','','','',''),('416829612242263223',1737,'41682961223','20','1.00','200','retail','0','2023-05-01 20:13:43','','','','0','Cash',0.00,'200','','','4','','1','2023-05-01 17:13:47','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-52.00','-53','Inclusive','branch','Inventory','','','','',''),('416829642310202032',1738,'41682964230','11','1.00','280','retail','0','2023-05-01 21:03:50','','','','0','Cash',0.00,'280','','','4','','1','2023-05-01 18:03:56','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','91.00','90','Inclusive','branch','Inventory','','','','',''),('416829642894262432',1739,'41682964288','38','1.00','350','retail','0','2023-05-01 21:04:48','','','','0','Cash',0.00,'350','','','4','','1','2023-05-01 18:04:53','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-191.00','-192','Inclusive','branch','Inventory','','','','',''),('416830155220202033',1740,'41683015521','59','1.00','150','retail','0','2023-05-02 11:18:41','','','','100','Cash',0.00,'150','','','4','','1','2023-05-02 08:18:49','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','35.00','34','Inclusive','branch','Service','1110','4000','5500','',''),('416830155420202033',1741,'41683015541','59','1.00','150','retail','0','2023-05-02 11:19:01','','','','100','Cash',0.00,'150','','','4','','1','2023-05-02 08:19:13','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','35.00','34','Inclusive','branch','Service','1110','4000','5500','',''),('416830155485820544',1742,'41683015541','59','1.00','150','retail','0','2023-05-02 11:19:07','','','','100','Cash',0.00,'150','','','4','','1','2023-05-02 08:19:13','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','35.00','34','Inclusive','branch','Service','1110','4000','5500','',''),('416830189550396242',1743,'41683018954','1','1.00','280','retail','0','2023-05-02 12:15:54','','','','0','Cash',0.00,'280','','','4','','1','2023-05-02 09:15:57','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-67.00','-68','Inclusive','branch','Inventory','','','','',''),('416830243263022323',1744,'41683024325','21','1.00','200','retail','0','2023-05-02 13:45:25','','','','0','Cash',0.00,'200','','','4','','1','2023-05-02 10:45:34','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-174.00','-175','Inclusive','branch','Inventory','','','','',''),('416830267734222432',1745,'41683026772','1','1.00','280','retail','0','2023-05-02 14:26:12','','','','0','Cash',0.00,'280','','','4','','1','2023-05-02 11:30:19','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-68.00','-69','Inclusive','branch','Inventory','','','','',''),('416830270160202033',1746,'41683026772','38','1.00','350','retail','0','2023-05-02 14:30:15','','','','0','Cash',0.00,'350','','','4','','1','2023-05-02 11:30:19','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-192.00','-193','Inclusive','branch','Inventory','','','','',''),('416830270530202033',1747,'41683027052','5','1.00','300','retail','0','2023-05-02 14:30:52','','','','0','Cash',0.00,'300','','','4','','1','2023-05-02 11:30:56','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-33.00','-34','Inclusive','branch','Inventory','','','','',''),('416830383148820844',1748,'41683038313','21','1.00','200','retail','0','2023-05-02 17:38:33','','','','0','Cash',0.00,'200','','','4','','1','2023-05-02 14:38:36','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-175.00','-176','Inclusive','branch','Inventory','','','','',''),('416830415493421300',1749,'41683041548','52','1.00','150','retail','0','2023-05-02 18:32:28','','','','200','Cash',0.00,'150','','','4','','1','2023-05-02 15:32:32','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316830440563022350',1750,'31683044055','38','1.00','350','retail','0','2023-05-02 19:14:15','','','','0','Cash',0.00,'350','','','3','','1','2023-05-02 16:14:19','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-193.00','-194','Inclusive','branch','Inventory','','','','',''),('316830441144820434',1751,'31683044113','38','1.00','350','retail','0','2023-05-02 19:15:13','','','','0','Cash',0.00,'350','','','3','','1','2023-05-02 16:15:22','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-194.00','-195','Inclusive','branch','Inventory','','','','',''),('316830441194242432',1752,'31683044113','21','1.00','200','retail','0','2023-05-02 19:15:18','','','','0','Cash',0.00,'200','','','3','','1','2023-05-02 16:15:22','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-176.00','-177','Inclusive','branch','Inventory','','','','',''),('316830443028220832',1753,'31683044301','4','1.00','150','retail','0','2023-05-02 19:18:21','','','','0','Cash',0.00,'150','','','3','','1','2023-05-02 16:18:25','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-18.00','-19','Inclusive','branch','Inventory','','','','',''),('316830492502965332',1754,'31683049249','61','1.00','150','retail','0','2023-05-02 20:40:49','','','','100','Cash',0.00,'150','','','3','','1','2023-05-02 17:40:53','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Service','1110','4000','5500','',''),('316830539814252432',1755,'31683053980','11','1.00','280','retail','0','2023-05-02 21:59:40','','','','0','Cash',0.00,'280','','','3','','1','2023-05-02 18:59:54','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','90.00','89','Inclusive','branch','Inventory','','','','',''),('316830539914252432',1756,'31683053980','56','1.00','400','retail','0','2023-05-02 21:59:50','','','','200','Cash',0.00,'400','','','3','','1','2023-05-02 18:59:54','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','20.00','19','Inclusive','branch','Service','1110','4000','5500','',''),('316830558853022388',1757,'31683055885','5','1.00','300','retail','0','2023-05-02 22:31:25','','','','0','Cash',0.00,'300','','','3','','1','2023-05-02 19:31:27','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-34.00','-35','Inclusive','branch','Inventory','','','','',''),('316831046584821434',1758,'31683104657','21','1.00','200','retail','0','2023-05-03 12:04:17','','','','0','Cash',0.00,'200','','','3','','1','2023-05-03 09:04:25','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-177.00','-178','Inclusive','branch','Inventory','','','','',''),('316831046876033121',1759,'31683104686','20','1.00','200','retail','0','2023-05-03 12:04:46','','','','0','Cash',0.00,'200','','','3','','1','2023-05-03 09:04:49','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-53.00','-54','Inclusive','branch','Inventory','','','','',''),('316831047332222032',1760,'31683104732','5','1.00','300','retail','0','2023-05-03 12:05:32','','','','0','Cash',0.00,'300','','','3','','1','2023-05-03 09:05:36','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-35.00','-36','Inclusive','branch','Inventory','','','','',''),('316831047604202432',1761,'31683104759','1','1.00','280','retail','0','2023-05-03 12:05:59','','','','0','Cash',0.00,'280','','','3','','1','2023-05-03 09:06:03','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-69.00','-70','Inclusive','branch','Inventory','','','','',''),('316831091113421300',1762,'31683109110','8','1.00','150','retail','0','2023-05-03 13:18:30','','','','0','Cash',0.00,'150','','','3','','1','2023-05-03 10:18:34','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-50.00','-51','Inclusive','branch','Inventory','','','','',''),('316831128822268332',1763,'31683112881','11','1.00','280','retail','0','2023-05-03 14:21:21','','','','0','Cash',0.00,'280','','','3','','1','2023-05-03 11:21:25','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','89.00','88','Inclusive','branch','Inventory','','','','',''),('316831131633421300',1764,'31683113162','59','1.00','150','retail','0','2023-05-03 14:26:02','','','','100','Cash',0.00,'150','','','3','','1','2023-05-03 11:26:05','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','35.00','34','Inclusive','branch','Service','1110','4000','5500','',''),('316831291382963332',1765,'31683129138','66','1.00','600','retail','0','2023-05-03 18:52:18','','','','450','Cash',0.00,'600','','','3','','1','2023-05-03 15:52:37','','9','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Service','1110','4000','5500','',''),('316831291542965332',1766,'31683129138','23','1.00','250','retail','0','2023-05-03 18:52:33','','','','0','Cash',0.00,'250','','','3','','1','2023-05-03 15:52:37','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-49.00','-50','Inclusive','branch','Inventory','','','','',''),('316831295132961332',1767,'31683129512','54','1.00','350','retail','0','2023-05-03 18:58:32','','','','200','Cash',0.00,'350','','','3','','1','2023-05-03 15:58:35','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Service','1110','4000','5500','',''),('316831322432264332',1768,'31683132242','21','1.00','200','retail','0','2023-05-03 19:44:02','','','','0','Cash',0.00,'200','','','3','','1','2023-05-03 16:44:06','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-178.00','-179','Inclusive','branch','Inventory','','','','',''),('316831324938230832',1769,'31683132492','52','1.00','150','retail','0','2023-05-03 19:48:12','','','','200','Cash',0.00,'150','','','3','','1','2023-05-03 16:48:15','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316831332383022332',1770,'31683133238','38','1.00','350','retail','0','2023-05-03 20:00:38','','','','0','Cash',0.00,'350','','','3','','1','2023-05-03 17:05:34','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-195.00','-196','Inclusive','branch','Inventory','','','','',''),('316831332624232432',1771,'31683133238','3','1.00','200','retail','0','2023-05-03 20:01:01','','','','0','Cash',0.00,'200','','','3','','1','2023-05-03 17:05:34','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-47.00','-48','Inclusive','branch','Inventory','','','','',''),('316831349140202033',1772,'31683134913','21','1.00','200','retail','0','2023-05-03 20:28:33','','','','0','Cash',0.00,'200','','','3','','1','2023-05-03 17:31:12','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-179.00','-180','Inclusive','branch','Inventory','','','','',''),('316831349224821434',1773,'31683134913','5','1.00','300','retail','0','2023-05-03 20:28:41','','','','0','Cash',0.00,'300','','','3','','1','2023-05-03 17:31:12','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-36.00','-37','Inclusive','branch','Inventory','','','','',''),('316831361670202033',1774,'31683136167','7','1.00','200','retail','0','2023-05-03 20:49:27','','','','0','Cash',0.00,'200','','','3','','1','2023-05-03 17:49:31','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-85.00','-86','Inclusive','branch','Inventory','','','','',''),('316831378347821734',1775,'31683137834','38','1.00','350','retail','0','2023-05-03 21:17:14','','','','0','Cash',0.00,'350','','','3','','1','2023-05-03 18:17:17','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-196.00','-197','Inclusive','branch','Inventory','','','','',''),('316831378612766332',1776,'31683137860','12','1.00','250','retail','0','2023-05-03 21:17:40','','','','0','Cash',0.00,'250','','','3','','1','2023-05-03 18:17:44','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-43.00','-44','Inclusive','branch','Inventory','','','','',''),('316831911892222032',1777,'31683191188','59','1.00','150','retail','0','2023-05-04 12:06:28','','','','100','Cash',0.00,'150','','','3','','1','2023-05-04 09:06:36','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','35.00','34','Inclusive','branch','Service','1110','4000','5500','',''),('316831911932222032',1778,'31683191188','59','1.00','150','retail','0','2023-05-04 12:06:32','','','','100','Cash',0.00,'150','','','3','','1','2023-05-04 09:06:36','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','35.00','34','Inclusive','branch','Service','1110','4000','5500','',''),('416832122212222032',1779,'41683212220','59','1.00','150','retail','0','2023-05-04 17:57:00','','','','100','Cash',0.00,'150','','','4','','1','2023-05-04 14:57:05','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','35.00','34','Inclusive','branch','Service','1110','4000','5500','',''),('416832122822222032',1780,'41683212281','52','1.00','150','retail','0','2023-05-04 17:58:01','','','','200','Cash',0.00,'150','','','4','','1','2023-05-04 14:58:06','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416832141763421300',1781,'41683214175','1','1.00','280','retail','0','2023-05-04 18:29:35','','','','0','Cash',0.00,'280','','','4','','1','2023-05-04 15:29:39','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-70.00','-71','Inclusive','branch','Inventory','','','','',''),('416832152845822544',1782,'41683215284','8','1.00','150','retail','0','2023-05-04 18:48:04','','','','0','Cash',0.00,'150','','','4','','1','2023-05-04 15:48:12','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-51.00','-52','Inclusive','branch','Inventory','','','','',''),('416832152883022382',1783,'41683215284','8','1.00','150','retail','0','2023-05-04 18:48:07','','','','0','Cash',0.00,'150','','','4','','1','2023-05-04 15:48:12','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-52.00','-53','Inclusive','branch','Inventory','','','','',''),('416832161210202033',1784,'41683216120','59','1.00','150','retail','0','2023-05-04 19:02:00','','','','100','Cash',0.00,'150','','','4','','1','2023-05-04 16:02:05','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','35.00','34','Inclusive','branch','Service','1110','4000','5500','',''),('416832192252962332',1785,'41683219224','21','1.00','200','retail','0','2023-05-04 19:53:44','','','','0','Cash',0.00,'200','','','4','','1','2023-05-04 16:53:49','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-180.00','-181','Inclusive','branch','Inventory','','','','',''),('416832196849822944',1786,'41683219683','1','1.00','280','retail','0','2023-05-04 20:01:23','','','','0','Cash',0.00,'280','','','4','','1','2023-05-04 17:01:28','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-71.00','-72','Inclusive','branch','Inventory','','','','',''),('416832214931822144',1787,'41683221492','21','1.00','200','retail','0','2023-05-04 20:31:32','','','','0','Cash',0.00,'200','','','4','','1','2023-05-04 17:31:38','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-181.00','-182','Inclusive','branch','Inventory','','','','',''),('416832220172261332',1788,'41683222016','20','1.00','200','retail','0','2023-05-04 20:40:16','','','','0','Cash',0.00,'200','','','4','','1','2023-05-04 17:40:25','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-54.00','-55','Inclusive','branch','Inventory','','','','',''),('416832247163421300',1789,'41683224715','59','1.00','150','retail','0','2023-05-04 21:25:15','','','','100','Cash',0.00,'150','','','4','','1','2023-05-04 18:25:19','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','35.00','34','Inclusive','branch','Service','1110','4000','5500','',''),('416832248688280832',1790,'41683224867','1','1.00','280','retail','0','2023-05-04 21:27:47','','','','0','Cash',0.00,'280','','','4','','1','2023-05-04 18:27:51','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-72.00','-73','Inclusive','branch','Inventory','','','','',''),('416832277490202033',1791,'41683227748','21','1.00','200','retail','0','2023-05-04 22:15:48','','','','0','Cash',0.00,'200','','','4','','1','2023-05-04 19:15:52','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-182.00','-183','Inclusive','branch','Inventory','','','','',''),('416832285510202033',1792,'41683228550','21','1.00','200','retail','0','2023-05-04 22:29:10','','','','0','Cash',0.00,'200','','','4','','1','2023-05-04 19:29:15','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-183.00','-184','Inclusive','branch','Inventory','','','','',''),('416832693584262432',1793,'41683269357','11','1.00','280','retail','0','2023-05-05 09:49:17','','','','0','Cash',0.00,'280','','','4','','1','2023-05-05 06:49:37','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','88.00','87','Inclusive','branch','Inventory','','','','',''),('416832693738230832',1794,'41683269357','24','1.00','100','retail','0','2023-05-05 09:49:32','','','','0','Cash',0.00,'100','','','4','','1','2023-05-05 06:49:37','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-13.00','-14','Inclusive','branch','Inventory','','','','',''),('416832706123421300',1795,'41683270611','1','1.00','280','retail','0','2023-05-05 10:10:11','','','','0','Cash',0.00,'280','','','4','','1','2023-05-05 07:10:15','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-73.00','-74','Inclusive','branch','Inventory','','','','',''),('416832712900202033',1796,'41683271290','1','1.00','280','retail','0','2023-05-05 10:21:30','','','','0','Cash',0.00,'280','','','4','','1','2023-05-05 07:21:35','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-74.00','-75','Inclusive','branch','Inventory','','','','',''),('416832733200202033',1797,'41683273319','23','1.00','250','retail','0','2023-05-05 10:55:19','','','','0','Cash',0.00,'250','','','4','','1','2023-05-05 07:55:37','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-50.00','-51','Inclusive','branch','Inventory','','','','',''),('416832733338230832',1798,'41683273319','47','1.00','200','retail','0','2023-05-05 10:55:32','','','','0','Cash',0.00,'200','','','4','','1','2023-05-05 07:55:37','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','42.00','41','Inclusive','branch','Inventory','','','','',''),('416832743213421300',1799,'41683274320','59','1.00','150','retail','0','2023-05-05 11:12:00','','','','100','Cash',0.00,'150','','','4','','1','2023-05-05 08:12:05','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','35.00','34','Inclusive','branch','Service','1110','4000','5500','',''),('416832787693421300',1800,'41683278768','1','1.00','280','retail','0','2023-05-05 12:26:08','','','','0','Cash',0.00,'280','','','4','','1','2023-05-05 09:26:15','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-75.00','-76','Inclusive','branch','Inventory','','','','',''),('416832824450202033',1801,'41683282444','38','1.00','350','retail','0','2023-05-05 13:27:25','','','','0','Cash',0.00,'350','','','4','','1','2023-05-05 10:27:31','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-197.00','-198','Inclusive','branch','Inventory','','','','',''),('416832839112361332',1802,'41683283910','14','1.00','250','retail','0','2023-05-05 13:51:50','','','','0','Cash',0.00,'250','','','4','','1','2023-05-05 10:52:03','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-2.00','-3','Inclusive','branch','Inventory','','','','',''),('416832839192222032',1803,'41683283910','63','1.00','200','retail','0','2023-05-05 13:51:58','','','','150','Cash',0.00,'200','','','4','','1','2023-05-05 10:52:03','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Service','1110','4000','5500','',''),('416832844740202033',1804,'41683284473','63','1.00','200','retail','0','2023-05-05 14:01:13','','','','150','Cash',0.00,'200','','','4','','1','2023-05-05 11:01:20','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Service','1110','4000','5500','',''),('416832854205822544',1805,'41683285420','54','1.00','350','retail','0','2023-05-05 14:17:00','','','','200','Cash',0.00,'350','','','4','','1','2023-05-05 11:17:04','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Service','1110','4000','5500','',''),('416832945324292432',1806,'41683294531','60','1.00','100','retail','0','2023-05-05 16:48:51','','','','70','Cash',0.00,'100','','','4','','1','2023-05-05 13:48:56','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','25.00','24','Inclusive','branch','Inventory','1110','4000','5500','',''),('416832949502222032',1807,'41683294949','7','1.00','200','retail','0','2023-05-05 16:55:49','','','','0','Cash',0.00,'200','','','4','','1','2023-05-05 13:55:53','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-86.00','-87','Inclusive','branch','Inventory','','','','',''),('316832991614292432',1808,'31683299160','52','1.00','150','retail','0','2023-05-05 18:06:00','','','','200','Cash',0.00,'150','','','3','','1','2023-05-05 15:06:04','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316833014102161332',1809,'31683301409','38','1.00','350','retail','0','2023-05-05 18:43:29','','','','0','Cash',0.00,'350','','','3','','1','2023-05-05 15:43:36','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-198.00','-199','Inclusive','branch','Inventory','','','','',''),('316833079233022329',1811,'31683307922','23','1.00','250','retail','0','2023-05-05 20:32:02','','','','0','Cash',0.00,'250','','','3','','1','2023-05-05 17:32:11','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-51.00','-52','Inclusive','branch','Inventory','','','','',''),('316833079272222032',1812,'31683307922','23','1.00','250','retail','0','2023-05-05 20:32:06','','','','0','Cash',0.00,'250','','','3','','1','2023-05-05 17:32:11','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-52.00','-53','Inclusive','branch','Inventory','','','','',''),('316833056212562332',1813,'31683305620','38','1.00','350','retail','0','2023-05-05 19:53:41','','','','0','Cash',0.00,'350','','','3','','1','2023-05-05 17:33:54','','7','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-199.00','-200','Inclusive','branch','Inventory','','','','',''),('316833080318210832',1814,'31683305620','38','1.00','350','retail','0','2023-05-05 20:33:50','','','','0','Cash',0.00,'350','','','3','','1','2023-05-05 17:33:54','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-200.00','-201','Inclusive','branch','Inventory','','','','',''),('316833121072232228',1815,'31683312106','3','1.00','200','retail','0','2023-05-05 21:41:46','','','','0','Cash',0.00,'200','','','3','','1','2023-05-05 18:41:55','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-48.00','-49','Inclusive','branch','Inventory','','','','',''),('316833124088280832',1817,'31683312407','21','1.00','200','retail','0','2023-05-05 21:46:47','','','','0','Cash',0.00,'200','','','3','','1','2023-05-05 18:55:56','','2','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-184.00','-185','Inclusive','branch','Inventory','','','','',''),('316833129512265332',1818,'31683312407','21','1.00','200','retail','0','2023-05-05 21:55:50','','','','0','Cash',0.00,'200','','','3','','1','2023-05-05 18:55:56','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-185.00','-186','Inclusive','branch','Inventory','','','','',''),('316833191353022331',1819,'31683319134','8','1.00','150','retail','0','2023-05-05 23:38:54','','','','0','Cash',0.00,'150','','','3','','1','2023-05-05 20:38:57','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-53.00','-54','Inclusive','branch','Inventory','','','','',''),('316833192020233223',1820,'31683319201','47','1.00','200','retail','0','2023-05-05 23:40:01','','','','0','Cash',0.00,'200','','','3','','1','2023-05-05 20:40:07','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','41.00','40','Inclusive','branch','Inventory','','','','',''),('316833192043421300',1821,'31683319201','46','1.00','200','retail','0','2023-05-05 23:40:03','','','','0','Cash',0.00,'200','','','3','','1','2023-05-05 20:40:07','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','38.00','37','Inclusive','branch','Inventory','','','','',''),('316833192324212432',1822,'31683319231','30','1.00','330','retail','0','2023-05-05 23:40:31','','','','0','Cash',0.00,'330','','','3','','1','2023-05-05 20:40:34','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-12.00','-13','Inclusive','branch','Inventory','','','','',''),('316833193462964332',1823,'31683319345','34','1.00','300','retail','0','2023-05-05 23:42:25','','','','0','Cash',0.00,'300','','','3','','1','2023-05-05 20:42:29','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-50.00','-51','Inclusive','branch','Inventory','','','','',''),('316833194459823934',1824,'31683319444','2','1.00','250','retail','0','2023-05-05 23:44:04','','','','0','Cash',0.00,'250','','','3','','1','2023-05-05 20:44:07','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-51.00','-52','Inclusive','branch','Inventory','','','','',''),('316833194629823934',1825,'31683319461','1','1.00','280','retail','0','2023-05-05 23:44:21','','','','0','Cash',0.00,'280','','','3','','1','2023-05-05 20:44:24','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-76.00','-77','Inclusive','branch','Inventory','','','','',''),('416833596424252432',1826,'41683359641','4','1.00','150','retail','0','2023-05-06 10:54:01','','','','0','Cash',0.00,'150','','','4','','1','2023-05-06 07:54:06','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-19.00','-20','Inclusive','branch','Inventory','','','','',''),('416833663402664332',1827,'41683366339','12','1.00','250','retail','0','2023-05-06 12:45:39','','','','0','Cash',0.00,'250','','','4','','1','2023-05-06 09:45:43','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-44.00','-45','Inclusive','branch','Inventory','','','','',''),('416833663584262432',1828,'41683366357','7','1.00','200','retail','0','2023-05-06 12:45:57','','','','0','Cash',0.00,'200','','','4','','1','2023-05-06 09:46:01','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-87.00','-88','Inclusive','branch','Inventory','','','','',''),('416833670252222032',1829,'41683367024','59','1.00','150','retail','0','2023-05-06 12:57:04','','','','100','Cash',0.00,'150','','','4','','1','2023-05-06 09:57:10','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','35.00','34','Inclusive','branch','Service','1110','4000','5500','',''),('416833717153421300',1830,'41683371714','52','1.00','150','retail','0','2023-05-06 14:15:15','','','','200','Cash',0.00,'150','','','4','','1','2023-05-06 11:15:22','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316833760022200220',1831,'31683376001','38','1.00','350','retail','0','2023-05-06 15:26:41','','','','0','Cash',0.00,'350','','','3','','1','2023-05-06 12:26:47','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-201.00','-202','Inclusive','branch','Inventory','','','','',''),('316833760054272432',1832,'31683376001','38','1.00','350','retail','0','2023-05-06 15:26:44','','','','0','Cash',0.00,'350','','','3','','1','2023-05-06 12:26:47','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-202.00','-203','Inclusive','branch','Inventory','','','','',''),('416833762646823644',1833,'41683376263','3','1.00','200','retail','0','2023-05-06 15:31:03','','','','0','Cash',0.00,'200','','','4','','1','2023-05-06 12:31:07','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-49.00','-50','Inclusive','branch','Inventory','','','','',''),('316833799993421300',1834,'31683379998','1','1.00','280','retail','0','2023-05-06 16:33:18','','','','0','Cash',0.00,'280','','','3','','1','2023-05-06 13:33:22','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-77.00','-78','Inclusive','branch','Inventory','','','','',''),('416833838272222032',1835,'41683383826','17','1.00','200','retail','0','2023-05-06 17:37:06','','','','0','Cash',0.00,'200','','','4','','1','2023-05-06 14:37:11','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-24.00','-25','Inclusive','branch','Inventory','','','','',''),('416833849693421300',1836,'41683384968','23','1.00','250','retail','0','2023-05-06 17:56:08','','','','0','Cash',0.00,'250','','','4','','1','2023-05-06 14:56:15','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-53.00','-54','Inclusive','branch','Inventory','','','','',''),('316833856402222032',1837,'31683385639','8','1.00','150','retail','0','2023-05-06 18:07:19','','','','0','Cash',0.00,'150','','','3','','1','2023-05-06 15:07:23','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-54.00','-55','Inclusive','branch','Inventory','','','','',''),('316833876900202033',1838,'31683387689','42','1.00','600','retail','0','2023-05-06 18:41:29','','','','0','Cash',0.00,'600','','','3','','1','2023-05-06 15:41:33','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','25.00','24','Inclusive','branch','Inventory','','','','',''),('316833926246083303',1839,'31683392623','38','1.00','350','retail','0','2023-05-06 20:03:43','','','','0','Cash',0.00,'350','','','3','','1','2023-05-06 17:03:47','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-203.00','-204','Inclusive','branch','Inventory','','','','',''),('316833938114292432',1840,'31683393810','59','1.00','150','retail','0','2023-05-06 20:23:30','','','','100','Cash',0.00,'150','','','3','','1','2023-05-06 17:23:38','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','35.00','34','Inclusive','branch','Service','1110','4000','5500','',''),('316833938160202033',1841,'31683393810','59','1.00','150','retail','0','2023-05-06 20:23:34','','','','100','Cash',0.00,'150','','','3','','1','2023-05-06 17:23:38','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','35.00','34','Inclusive','branch','Service','1110','4000','5500','',''),('316833967232662332',1842,'31683396722','23','1.00','250','retail','0','2023-05-06 21:12:02','','','','0','Cash',0.00,'250','','','3','','1','2023-05-06 18:12:06','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-54.00','-55','Inclusive','branch','Inventory','','','','',''),('316834010613022360',1843,'31683401060','1','1.00','280','retail','0','2023-05-06 22:24:20','','','','0','Cash',0.00,'280','','','3','','1','2023-05-06 19:24:25','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-78.00','-79','Inclusive','branch','Inventory','','','','',''),('316834010873022380',1844,'31683401086','5','1.00','300','retail','0','2023-05-06 22:24:46','','','','0','Cash',0.00,'300','','','3','','1','2023-05-06 19:24:49','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-37.00','-38','Inclusive','branch','Inventory','','','','',''),('316834011020202033',1845,'31683401101','21','1.00','200','retail','0','2023-05-06 22:25:01','','','','0','Cash',0.00,'200','','','3','','1','2023-05-06 19:25:17','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-186.00','-187','Inclusive','branch','Inventory','','','','',''),('316834011148240832',1846,'31683401101','5','1.00','300','retail','0','2023-05-06 22:25:13','','','','0','Cash',0.00,'300','','','3','','1','2023-05-06 19:25:17','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-38.00','-39','Inclusive','branch','Inventory','','','','',''),('316834574653022364',1847,'31683457464','21','1.00','200','retail','0','2023-05-07 14:04:24','','','','0','Cash',0.00,'200','','','3','','1','2023-05-07 11:04:48','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-187.00','-188','Inclusive','branch','Inventory','','','','',''),('316834575348240832',1848,'31683457533','2','1.00','250','retail','0','2023-05-07 14:05:33','','','','0','Cash',0.00,'250','','','3','','1','2023-05-07 11:05:43','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-52.00','-53','Inclusive','branch','Inventory','','','','',''),('316834593003022303',1849,'31683459299','1','1.00','280','retail','0','2023-05-07 14:34:59','','','','0','Cash',0.00,'280','','','3','','1','2023-05-07 11:43:41','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-79.00','-80','Inclusive','branch','Inventory','','','','',''),('316834598158250832',1850,'31683459299','21','1.00','200','retail','0','2023-05-07 14:43:34','','','','0','Cash',0.00,'200','','','3','','1','2023-05-07 11:43:41','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-188.00','-189','Inclusive','branch','Inventory','','','','',''),('416834652084262432',1851,'41683465207','12','1.00','250','retail','0','2023-05-07 16:13:27','','','','0','Cash',0.00,'250','','','4','','1','2023-05-07 13:13:31','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-45.00','-46','Inclusive','branch','Inventory','','','','',''),('316834681358250832',1852,'31683468134','59','1.00','150','retail','0','2023-05-07 17:02:14','','','','100','Cash',0.00,'150','','','3','','1','2023-05-07 14:02:26','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','36.00','35','Inclusive','branch','Service','1110','4000','5500','',''),('316834681438230832',1853,'31683468134','34','1.00','300','retail','0','2023-05-07 17:02:22','','','','0','Cash',0.00,'300','','','3','','1','2023-05-07 14:02:26','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-51.00','-52','Inclusive','branch','Inventory','','','','',''),('416834681982222032',1854,'41683468197','34','1.00','300','retail','0','2023-05-07 17:03:17','','','','0','Cash',0.00,'300','','','4','','1','2023-05-07 14:03:25','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-52.00','-53','Inclusive','branch','Inventory','','','','',''),('416834682020202033',1855,'41683468197','34','1.00','300','retail','0','2023-05-07 17:03:21','','','','0','Cash',0.00,'300','','','4','','1','2023-05-07 14:03:25','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-53.00','-54','Inclusive','branch','Inventory','','','','',''),('316834710913421300',1856,'31683471090','23','1.00','250','retail','0','2023-05-07 17:51:30','','','','0','Cash',0.00,'250','','','3','','1','2023-05-07 14:51:38','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-55.00','-56','Inclusive','branch','Inventory','','','','',''),('316834710942222032',1857,'31683471090','23','1.00','250','retail','0','2023-05-07 17:51:33','','','','0','Cash',0.00,'250','','','3','','1','2023-05-07 14:51:38','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-56.00','-57','Inclusive','branch','Inventory','','','','',''),('416834711562165332',1858,'41683471156','38','1.00','350','retail','0','2023-05-07 17:52:36','','','','0','Cash',0.00,'350','','','4','','1','2023-05-07 14:52:40','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-204.00','-205','Inclusive','branch','Inventory','','','','',''),('316834744784272432',1859,'31683474477','39','1.00','300','retail','0','2023-05-07 18:47:57','','','','0','Cash',0.00,'300','','','3','','1','2023-05-07 15:48:01','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-5.00','-6','Inclusive','branch','Inventory','','','','',''),('416834749481322130',1860,'41683474947','5','1.00','300','retail','0','2023-05-07 18:55:47','','','','0','Cash',0.00,'300','','','4','','1','2023-05-07 15:55:52','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-39.00','-40','Inclusive','branch','Inventory','','','','',''),('416834749638230832',1861,'41683474962','52','1.00','150','retail','0','2023-05-07 18:56:02','','','','200','Cash',0.00,'150','','','4','','1','2023-05-07 15:56:06','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416834765053421300',1862,'41683476504','21','1.00','200','retail','0','2023-05-07 19:21:44','','','','0','Cash',0.00,'200','','','4','','1','2023-05-07 16:21:48','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-189.00','-190','Inclusive','branch','Inventory','','','','',''),('416834796614272432',1863,'41683479660','17','1.00','200','retail','0','2023-05-07 20:14:20','','','','0','Cash',0.00,'200','','','4','','1','2023-05-07 17:14:24','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-25.00','-26','Inclusive','branch','Inventory','','','','',''),('416834827114282432',1864,'41683482710','46','1.00','200','retail','0','2023-05-07 21:05:10','','','','0','Cash',0.00,'200','','','4','','1','2023-05-07 18:05:15','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Inventory','','','','',''),('416834869000202033',1865,'41683486899','1','1.00','280','retail','0','2023-05-07 22:14:59','','','','0','Cash',0.00,'280','','','4','','1','2023-05-07 19:15:05','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-80.00','-81','Inclusive','branch','Inventory','','','','',''),('416834872682343302',1866,'41683487267','23','1.00','250','retail','0','2023-05-07 22:21:07','','','','0','Cash',0.00,'250','','','4','','1','2023-05-07 19:21:22','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-57.00','-58','Inclusive','branch','Inventory','','','','',''),('416835304250202033',1867,'41683530424','52','1.00','150','retail','0','2023-05-08 10:20:24','','','','200','Cash',0.00,'150','','','4','','1','2023-05-08 07:20:27','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416835304412222032',1868,'41683530440','22','1.00','250','retail','0','2023-05-08 10:20:40','','','','0','Cash',0.00,'250','','','4','','1','2023-05-08 07:20:45','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-22.00','-23','Inclusive','branch','Inventory','','','','',''),('416835304598290832',1869,'41683530458','12','1.00','250','retail','0','2023-05-08 10:20:58','','','','0','Cash',0.00,'250','','','4','','1','2023-05-08 07:21:02','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-46.00','-47','Inclusive','branch','Inventory','','','','',''),('416835327424232432',1870,'41683532741','1','1.00','280','retail','0','2023-05-08 10:59:01','','','','0','Cash',0.00,'280','','','4','','1','2023-05-08 07:59:12','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-81.00','-82','Inclusive','branch','Inventory','','','','',''),('416835327493022347',1871,'41683532741','21','1.00','200','retail','0','2023-05-08 10:59:08','','','','0','Cash',0.00,'200','','','4','','1','2023-05-08 07:59:12','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-190.00','-191','Inclusive','branch','Inventory','','','','',''),('416835463708200832',1872,'41683546369','31','1.00','200','retail','0','2023-05-08 14:46:09','','','','0','Cash',0.00,'200','','','4','','1','2023-05-08 11:46:16','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-12.00','-13','Inclusive','branch','Inventory','','','','',''),('416835545754252432',1873,'41683554574','23','1.00','250','retail','0','2023-05-08 17:02:54','','','','0','Cash',0.00,'250','','','4','','1','2023-05-08 14:02:58','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-58.00','-59','Inclusive','branch','Inventory','','','','',''),('416835576324252432',1874,'41683557631','22','1.00','250','retail','0','2023-05-08 17:53:51','','','','0','Cash',0.00,'250','','','4','','1','2023-05-08 14:54:03','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-23.00','-24','Inclusive','branch','Inventory','','','','',''),('416835576402764332',1875,'41683557631','20','1.00','200','retail','0','2023-05-08 17:53:59','','','','0','Cash',0.00,'200','','','4','','1','2023-05-08 14:54:03','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-55.00','-56','Inclusive','branch','Inventory','','','','',''),('416835588440202033',1876,'41683558843','52','1.00','150','retail','0','2023-05-08 18:14:03','','','','200','Cash',0.00,'150','','','4','','1','2023-05-08 15:14:07','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416835679128220832',1877,'41683567911','11','1.00','280','retail','0','2023-05-08 20:45:11','','','','0','Cash',0.00,'280','','','4','','1','2023-05-08 17:45:16','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','87.00','86','Inclusive','branch','Inventory','','','','',''),('416835710583421300',1878,'41683571057','5','1.00','300','retail','0','2023-05-08 21:37:37','','','','0','Cash',0.00,'300','','','4','','1','2023-05-08 18:37:41','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-40.00','-41','Inclusive','branch','Inventory','','','','',''),('416835710774272432',1879,'41683571076','28','1.00','300','retail','0','2023-05-08 21:37:56','','','','0','Cash',0.00,'300','','','4','','1','2023-05-08 18:38:00','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-1.00','-2','Inclusive','branch','Inventory','','','','',''),('416836156113022316',1880,'41683615610','11','1.00','280','retail','0','2023-05-09 10:00:10','','','','0','Cash',0.00,'280','','','4','','1','2023-05-09 07:00:24','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','86.00','85','Inclusive','branch','Inventory','','','','',''),('416836156213421300',1881,'41683615610','24','1.00','100','retail','0','2023-05-09 10:00:20','','','','0','Cash',0.00,'100','','','4','','1','2023-05-09 07:00:24','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-14.00','-15','Inclusive','branch','Inventory','','','','',''),('416836223433022343',1882,'41683622341','59','1.00','150','retail','0','2023-05-09 11:52:22','','','','100','Cash',0.00,'150','','','4','','1','2023-05-09 08:52:31','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','36.00','35','Inclusive','branch','Service','1110','4000','5500','',''),('316836363234232432',1883,'31683636322','21','1.00','200','retail','0','2023-05-09 15:45:22','','','','0','Cash',0.00,'200','','','3','','1','2023-05-09 12:45:46','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-191.00','-192','Inclusive','branch','Inventory','','','','',''),('316836363264232432',1884,'31683636322','21','1.00','200','retail','0','2023-05-09 15:45:25','','','','0','Cash',0.00,'200','','','3','','1','2023-05-09 12:45:46','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-192.00','-193','Inclusive','branch','Inventory','','','','',''),('316836363312222032',1885,'31683636322','21','1.00','200','retail','0','2023-05-09 15:45:30','','','','0','Cash',0.00,'200','','','3','','1','2023-05-09 12:45:46','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-193.00','-194','Inclusive','branch','Inventory','','','','',''),('316836363412222032',1886,'31683636322','11','1.00','280','retail','0','2023-05-09 15:45:40','','','','0','Cash',0.00,'280','','','3','','1','2023-05-09 12:45:46','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','85.00','84','Inclusive','branch','Inventory','','','','',''),('316836392480202033',1887,'31683639247','21','1.00','200','retail','0','2023-05-09 16:34:07','','','','0','Cash',0.00,'200','','','3','','1','2023-05-09 13:34:12','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-194.00','-195','Inclusive','branch','Inventory','','','','',''),('316836393253223050',1888,'31683639324','38','1.00','350','retail','0','2023-05-09 16:35:24','','','','0','Cash',0.00,'350','','','3','','1','2023-05-09 13:35:45','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-205.00','-206','Inclusive','branch','Inventory','','','','',''),('416836453548240832',1889,'41683645353','38','1.00','350','retail','0','2023-05-09 18:15:53','','','','0','Cash',0.00,'350','','','4','','1','2023-05-09 15:15:57','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-206.00','-207','Inclusive','branch','Inventory','','','','',''),('416836454235826544',1890,'41683645422','23','1.00','250','retail','0','2023-05-09 18:17:02','','','','0','Cash',0.00,'250','','','4','','1','2023-05-09 15:17:08','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-59.00','-60','Inclusive','branch','Inventory','','','','',''),('316836493848240832',1891,'31683649383','1','1.00','280','retail','0','2023-05-09 19:23:03','','','','0','Cash',0.00,'280','','','3','','1','2023-05-09 16:23:29','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-82.00','-83','Inclusive','branch','Inventory','','','','',''),('316836493872303336',1892,'31683649383','1','1.00','280','retail','0','2023-05-09 19:23:06','','','','0','Cash',0.00,'280','','','3','','1','2023-05-09 16:23:29','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-83.00','-84','Inclusive','branch','Inventory','','','','',''),('316836493992969332',1893,'31683649383','26','1.00','100','retail','0','2023-05-09 19:23:18','','','','0','Cash',0.00,'100','','','3','','1','2023-05-09 16:23:29','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-14.00','-15','Inclusive','branch','Inventory','','','','',''),('316836494033421300',1894,'31683649383','26','1.00','100','retail','0','2023-05-09 19:23:22','','','','0','Cash',0.00,'100','','','3','','1','2023-05-09 16:23:29','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-15.00','-16','Inclusive','branch','Inventory','','','','',''),('316836502403421300',1895,'31683650239','21','1.00','200','retail','0','2023-05-09 19:37:19','','','','0','Cash',0.00,'200','','','3','','1','2023-05-09 16:37:43','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-195.00','-196','Inclusive','branch','Inventory','','','','',''),('316836502444252432',1896,'31683650239','21','1.00','200','retail','0','2023-05-09 19:37:23','','','','0','Cash',0.00,'200','','','3','','1','2023-05-09 16:37:43','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-196.00','-197','Inclusive','branch','Inventory','','','','',''),('316836513342222032',1897,'31683651333','38','1.00','350','retail','0','2023-05-09 19:55:33','','','','0','Cash',0.00,'350','','','3','','1','2023-05-09 16:55:37','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-207.00','-208','Inclusive','branch','Inventory','','','','',''),('316836520853421300',1898,'31683652084','59','1.00','150','retail','0','2023-05-09 20:08:04','','','','100','Cash',0.00,'150','','','3','','1','2023-05-09 17:08:07','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','36.00','35','Inclusive','branch','Service','1110','4000','5500','',''),('316836527560202033',1899,'31683652755','20','1.00','200','retail','0','2023-05-09 20:19:15','','','','0','Cash',0.00,'200','','','3','','1','2023-05-09 17:19:18','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-56.00','-57','Inclusive','branch','Inventory','','','','',''),('316836597460202033',1900,'31683659745','38','1.00','350','retail','0','2023-05-09 22:15:45','','','','0','Cash',0.00,'350','','','3','','1','2023-05-09 19:15:56','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-208.00','-209','Inclusive','branch','Inventory','','','','',''),('316836597494252432',1901,'31683659745','38','1.00','350','retail','0','2023-05-09 22:15:48','','','','0','Cash',0.00,'350','','','3','','1','2023-05-09 19:15:56','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-209.00','-210','Inclusive','branch','Inventory','','','','',''),('316836597533022357',1902,'31683659745','38','1.00','350','retail','0','2023-05-09 22:15:52','','','','0','Cash',0.00,'350','','','3','','1','2023-05-09 19:15:56','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-210.00','-211','Inclusive','branch','Inventory','','','','',''),('316836648113421300',1903,'31683664810','21','1.00','200','retail','0','2023-05-09 23:40:10','','','','0','Cash',0.00,'200','','','3','','1','2023-05-09 20:40:16','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-197.00','-198','Inclusive','branch','Inventory','','','','',''),('316837158543022358',1904,'31683715853','59','1.00','150','retail','0','2023-05-10 13:50:53','','','','100','Cash',0.00,'150','','','3','','1','2023-05-10 10:50:57','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','36.00','35','Inclusive','branch','Service','1110','4000','5500','',''),('316837275083022305',1906,'31683727507','1','1.00','280','retail','0','2023-05-10 17:05:07','','','','0','Cash',0.00,'280','','','3','','1','2023-05-10 14:05:34','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-84.00','-85','Inclusive','branch','Inventory','','','','',''),('316837277372763332',1907,'31683727736','59','1.00','150','retail','0','2023-05-10 17:08:56','','','','100','Cash',0.00,'150','','','3','','1','2023-05-10 14:09:37','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','36.00','35','Inclusive','branch','Service','1110','4000','5500','',''),('316837277560202033',1908,'31683727736','7','1.00','200','retail','0','2023-05-10 17:09:16','','','','0','Cash',0.00,'200','','','3','','1','2023-05-10 14:09:37','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-88.00','-89','Inclusive','branch','Inventory','','','','',''),('316837277608200832',1909,'31683727736','1','1.00','280','retail','0','2023-05-10 17:09:19','','','','0','Cash',0.00,'280','','','3','','1','2023-05-10 14:09:37','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-85.00','-86','Inclusive','branch','Inventory','','','','',''),('316837277913421300',1910,'31683727790','21','1.00','200','retail','0','2023-05-10 17:09:50','','','','0','Cash',0.00,'200','','','3','','1','2023-05-10 14:10:08','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-198.00','-199','Inclusive','branch','Inventory','','','','',''),('316837278463022348',1911,'31683727845','21','1.00','200','retail','0','2023-05-10 17:10:46','','','','0','Cash',0.00,'200','','','3','','1','2023-05-10 14:11:12','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-199.00','-200','Inclusive','branch','Inventory','','','','',''),('316837327143022317',1912,'31683732713','21','1.00','200','retail','0','2023-05-10 18:31:53','','','','0','Cash',0.00,'200','','','3','','1','2023-05-10 15:32:08','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-200.00','-201','Inclusive','branch','Inventory','','','','',''),('316837327212312208',1913,'31683732713','17','1.00','200','retail','0','2023-05-10 18:32:00','','','','0','Cash',0.00,'200','','','3','','1','2023-05-10 15:32:08','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-26.00','-27','Inclusive','branch','Inventory','','','','',''),('316837328452222032',1914,'31683732844','2','1.00','250','retail','0','2023-05-10 18:34:05','','','','0','Cash',0.00,'250','','','3','','1','2023-05-10 15:34:07','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-53.00','-54','Inclusive','branch','Inventory','','','','',''),('316837328682222032',1916,'31683732867','23','1.00','250','retail','0','2023-05-10 18:34:27','','','','0','Cash',0.00,'250','','','3','','1','2023-05-10 17:47:36','','2','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-60.00','-61','Inclusive','branch','Inventory','','','','',''),('316837408530827034',1917,'31683732867','23','1.00','250','retail','0','2023-05-10 20:47:32','','','','0','Cash',0.00,'250','','','3','','1','2023-05-10 17:47:36','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-61.00','-62','Inclusive','branch','Inventory','','','','',''),('316837425992222032',1918,'31683742598','4','1.00','150','retail','0','2023-05-10 21:16:38','','','','0','Cash',0.00,'150','','','3','','1','2023-05-10 18:16:41','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-20.00','-21','Inclusive','branch','Inventory','','','','',''),('316837427340202033',1919,'31683742734','38','1.00','350','retail','0','2023-05-10 21:18:54','','','','0','Cash',0.00,'350','','','3','','1','2023-05-10 18:19:00','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-211.00','-212','Inclusive','branch','Inventory','','','','',''),('316837440018210832',1920,'31683744000','52','1.00','150','retail','0','2023-05-10 21:40:00','','','','200','Cash',0.00,'150','','','3','','1','2023-05-10 18:40:10','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316837158862222032',1921,'31683715885','59','1.00','150','retail','0','2023-05-10 13:51:25','','','','100','Cash',0.00,'150','','','3','','1','2023-05-10 18:41:36','','1','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','36.00','35','Inclusive','branch','Service','1110','4000','5500','',''),('316837440923421300',1922,'31683715885','59','1.00','150','retail','0','2023-05-10 21:41:31','','','','100','Cash',0.00,'150','','','3','','1','2023-05-10 18:41:36','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','36.00','35','Inclusive','branch','Service','1110','4000','5500','',''),('316837449422464332',1923,'31683744941','38','1.00','350','retail','0','2023-05-10 21:55:41','','','','0','Cash',0.00,'350','','','3','','1','2023-05-10 18:55:47','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-212.00','-213','Inclusive','branch','Inventory','','','','',''),('316837507157507340',1924,'31683750714','23','1.00','250','retail','0','2023-05-10 23:31:54','','','','0','Cash',0.00,'250','','','3','','1','2023-05-10 20:33:16','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-62.00','-63','Inclusive','branch','Inventory','','','','',''),('316837507790827034',1925,'31683750714','12','1.00','250','retail','0','2023-05-10 23:32:58','','','','0','Cash',0.00,'250','','','3','','1','2023-05-10 20:33:16','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-47.00','-48','Inclusive','branch','Inventory','','','','',''),('316838121032222032',1926,'31683812102','21','1.00','200','retail','0','2023-05-11 16:35:02','','','','0','Cash',0.00,'200','','','3','','1','2023-05-11 13:35:14','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-201.00','-202','Inclusive','branch','Inventory','','','','',''),('316838121283421300',1927,'31683812127','59','1.00','150','retail','0','2023-05-11 16:35:27','','','','100','Cash',0.00,'150','','','3','','1','2023-05-11 13:35:43','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','36.00','35','Inclusive','branch','Service','1110','4000','5500','',''),('316838121638230832',1928,'31683812162','59','1.00','150','retail','0','2023-05-11 16:36:02','','','','100','Cash',0.00,'150','','','3','','1','2023-05-11 13:36:09','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','36.00','35','Inclusive','branch','Service','1110','4000','5500','',''),('416838184288108340',1929,'41683818427','52','1.00','150','retail','0','2023-05-11 18:20:27','','','','200','Cash',0.00,'150','','','4','','1','2023-05-11 15:20:51','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416838184473022344',1930,'41683818427','46','1.00','200','retail','0','2023-05-11 18:20:46','','','','0','Cash',0.00,'200','','','4','','1','2023-05-11 15:20:51','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','36.00','35','Inclusive','branch','Inventory','','','','',''),('316838220340202033',1931,'31683822033','59','1.00','150','retail','0','2023-05-11 19:20:33','','','','100','Cash',0.00,'150','','','3','','1','2023-05-11 16:20:37','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','36.00','35','Inclusive','branch','Service','1110','4000','5500','',''),('416838256043022306',1932,'41683825603','20','1.00','200','retail','0','2023-05-11 20:20:03','','','','0','Cash',0.00,'200','','','4','','1','2023-05-11 17:20:07','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-57.00','-58','Inclusive','branch','Inventory','','','','',''),('416838313041828144',1933,'41683831303','1','1.00','280','retail','0','2023-05-11 21:55:03','','','','0','Cash',0.00,'280','','','4','','1','2023-05-11 18:55:09','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-86.00','-87','Inclusive','branch','Inventory','','','','',''),('416838313581828144',1934,'41683831358','38','1.00','350','retail','0','2023-05-11 21:55:58','','','','0','Cash',0.00,'350','','','4','','1','2023-05-11 18:56:02','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-213.00','-214','Inclusive','branch','Inventory','','','','',''),('416838320188280832',1935,'41683832017','38','1.00','350','retail','0','2023-05-11 22:06:57','','','','0','Cash',0.00,'350','','','4','','1','2023-05-11 19:07:01','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-214.00','-215','Inclusive','branch','Inventory','','','','',''),('416838744254272432',1936,'41683874424','59','1.00','150','retail','0','2023-05-12 09:53:44','','','','100','Cash',0.00,'150','','','4','','1','2023-05-12 06:53:49','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','36.00','35','Inclusive','branch','Service','1110','4000','5500','',''),('416838744560202033',1937,'41683874456','5','1.00','300','retail','0','2023-05-12 09:54:16','','','','0','Cash',0.00,'300','','','4','','1','2023-05-12 06:54:26','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-41.00','-42','Inclusive','branch','Inventory','','','','',''),('316838896358250832',1938,'31683889634','5','1.00','300','retail','0','2023-05-12 14:07:14','','','','0','Cash',0.00,'300','','','3','','1','2023-05-12 11:07:17','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-42.00','-43','Inclusive','branch','Inventory','','','','',''),('416838898098290832',1939,'41683889808','11','1.00','280','retail','0','2023-05-12 14:10:08','','','','0','Cash',0.00,'280','','','4','','1','2023-05-12 11:10:14','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','83.00','82','Inclusive','branch','Inventory','','','','',''),('316838946030202033',1940,'31683894602','12','1.00','250','retail','0','2023-05-12 15:30:02','','','','0','Cash',0.00,'250','','','3','','1','2023-05-12 12:30:14','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-48.00','-49','Inclusive','branch','Inventory','','','','',''),('416838953898290832',1941,'41683895388','2','1.00','250','retail','0','2023-05-12 15:43:08','','','','0','Cash',0.00,'250','','','4','','1','2023-05-12 12:43:30','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-54.00','-55','Inclusive','branch','Inventory','','','','',''),('316838973157828734',1942,'31683897314','7','1.00','200','retail','0','2023-05-12 16:15:14','','','','0','Cash',0.00,'200','','','3','','1','2023-05-12 13:15:18','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-89.00','-90','Inclusive','branch','Inventory','','','','',''),('416838988078270832',1943,'41683898806','38','1.00','350','retail','0','2023-05-12 16:40:06','','','','0','Cash',0.00,'350','','','4','','1','2023-05-12 13:40:10','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-215.00','-216','Inclusive','branch','Inventory','','','','',''),('416839015803022385',1944,'41683901579','38','1.00','350','retail','0','2023-05-12 17:26:19','','','','0','Cash',0.00,'350','','','4','','1','2023-05-12 14:26:28','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-216.00','-217','Inclusive','branch','Inventory','','','','',''),('316839024680202033',1945,'31683902467','40','1.00','600','retail','0','2023-05-12 17:41:07','','','','0','Cash',0.00,'600','','','3','','1','2023-05-12 14:41:15','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-22.00','-23','Inclusive','branch','Inventory','','','','',''),('316839024712222032',1946,'31683902467','40','1.00','600','retail','0','2023-05-12 17:41:10','','','','0','Cash',0.00,'600','','','3','','1','2023-05-12 14:41:15','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-23.00','-24','Inclusive','branch','Inventory','','','','',''),('416839034133421300',1947,'41683903412','38','1.00','350','retail','0','2023-05-12 17:56:52','','','','0','Cash',0.00,'350','','','4','','1','2023-05-12 14:57:02','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-217.00','-218','Inclusive','branch','Inventory','','','','',''),('416839034162361332',1948,'41683903412','38','1.00','350','retail','0','2023-05-12 17:56:55','','','','0','Cash',0.00,'350','','','4','','1','2023-05-12 14:57:02','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-218.00','-219','Inclusive','branch','Inventory','','','','',''),('416839034664202432',1949,'41683903465','22','1.00','250','retail','0','2023-05-12 17:57:45','','','','0','Cash',0.00,'250','','','4','','1','2023-05-12 14:57:48','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-24.00','-25','Inclusive','branch','Inventory','','','','',''),('316839041562465332',1950,'31683904155','38','1.00','350','retail','0','2023-05-12 18:09:15','','','','0','Cash',0.00,'350','','','3','','1','2023-05-12 15:09:34','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-219.00','-220','Inclusive','branch','Inventory','','','','',''),('316839041852222032',1951,'31683904184','38','1.00','350','retail','0','2023-05-12 18:09:44','','','','0','Cash',0.00,'350','','','3','','1','2023-05-12 15:09:59','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-220.00','-221','Inclusive','branch','Inventory','','','','',''),('316839042492464332',1952,'31683904248','38','1.00','350','retail','0','2023-05-12 18:10:48','','','','0','Cash',0.00,'350','','','3','','1','2023-05-12 15:11:25','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-221.00','-222','Inclusive','branch','Inventory','','','','',''),('316839060408200832',1953,'31683906039','21','1.00','200','retail','0','2023-05-12 18:40:39','','','','0','Cash',0.00,'200','','','3','','1','2023-05-12 15:40:56','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-202.00','-203','Inclusive','branch','Inventory','','','','',''),('416839124662266332',1954,'41683912465','38','1.00','350','retail','0','2023-05-12 20:27:45','','','','0','Cash',0.00,'350','','','4','','1','2023-05-12 17:27:49','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-222.00','-223','Inclusive','branch','Inventory','','','','',''),('316839161083421300',1955,'31683916107','3','1.00','200','retail','0','2023-05-12 21:28:27','','','','0','Cash',0.00,'200','','','3','','1','2023-05-12 18:28:32','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-50.00','-51','Inclusive','branch','Inventory','','','','',''),('316839162234212432',1956,'31683916222','38','1.00','350','retail','0','2023-05-12 21:30:22','','','','0','Cash',0.00,'350','','','3','','1','2023-05-12 18:30:26','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-223.00','-224','Inclusive','branch','Inventory','','','','',''),('416839172352763332',1957,'41683917234','59','1.00','150','retail','0','2023-05-12 21:47:14','','','','100','Cash',0.00,'150','','','4','','1','2023-05-12 18:47:19','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','36.00','35','Inclusive','branch','Service','1110','4000','5500','',''),('316839208873022388',1958,'31683920886','12','1.00','250','retail','0','2023-05-12 22:48:06','','','','0','Cash',0.00,'250','','','3','','1','2023-05-12 19:48:19','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-49.00','-50','Inclusive','branch','Inventory','','','','',''),('316839209108200832',1959,'31683920909','21','1.00','200','retail','0','2023-05-12 22:48:29','','','','0','Cash',0.00,'200','','','3','','1','2023-05-12 19:48:40','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-203.00','-204','Inclusive','branch','Inventory','','','','',''),('416839605920829044',1960,'41683960591','8','1.00','150','retail','0','2023-05-13 09:49:51','','','','0','Cash',0.00,'150','','','4','','1','2023-05-13 06:49:56','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-55.00','-56','Inclusive','branch','Inventory','','','','',''),('416839648053022308',1961,'41683964804','17','1.00','200','retail','0','2023-05-13 11:00:04','','','','0','Cash',0.00,'200','','','4','','1','2023-05-13 08:00:08','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-27.00','-28','Inclusive','branch','Inventory','','','','',''),('416839727744272432',1962,'41683972773','19','1.00','200','retail','0','2023-05-13 13:12:53','','','','0','Cash',0.00,'200','','','4','','1','2023-05-13 10:13:03','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-3.00','-4','Inclusive','branch','Inventory','','','','',''),('416839727793022377',1963,'41683972773','38','1.00','350','retail','0','2023-05-13 13:12:58','','','','0','Cash',0.00,'350','','','4','','1','2023-05-13 10:13:03','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-224.00','-225','Inclusive','branch','Inventory','','','','',''),('416839731078270832',1964,'41683973106','38','1.00','350','retail','0','2023-05-13 13:18:27','','','','0','Cash',0.00,'350','','','4','','1','2023-05-13 10:18:30','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-225.00','-226','Inclusive','branch','Inventory','','','','',''),('416839731252362332',1965,'41683973124','23','1.00','250','retail','0','2023-05-13 13:18:44','','','','0','Cash',0.00,'250','','','4','','1','2023-05-13 10:18:47','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-63.00','-64','Inclusive','branch','Inventory','','','','',''),('416839763132661332',1966,'41683976312','17','1.00','200','retail','0','2023-05-13 14:11:52','','','','0','Cash',0.00,'200','','','4','','1','2023-05-13 11:11:58','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-28.00','-29','Inclusive','branch','Inventory','','','','',''),('416839764652222032',1967,'41683976464','52','1.00','150','retail','0','2023-05-13 14:14:24','','','','200','Cash',0.00,'150','','','4','','1','2023-05-13 11:14:27','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416839765048240832',1968,'41683976503','61','1.00','150','retail','0','2023-05-13 14:15:03','','','','100','Cash',0.00,'150','','','4','','1','2023-05-13 11:15:36','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Service','1110','4000','5500','',''),('316839819133022319',1969,'31683981912','5','1.00','300','retail','0','2023-05-13 15:45:12','','','','0','Cash',0.00,'300','','','3','','1','2023-05-13 12:45:17','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-43.00','-44','Inclusive','branch','Inventory','','','','',''),('316839848970202033',1970,'31683984896','38','1.00','350','retail','0','2023-05-13 16:34:56','','','','0','Cash',0.00,'350','','','3','','1','2023-05-13 13:35:13','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-226.00','-227','Inclusive','branch','Inventory','','','','',''),('316839849583421300',1971,'31683984957','12','1.00','250','retail','0','2023-05-13 16:35:57','','','','0','Cash',0.00,'250','','','3','','1','2023-05-13 13:36:03','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-50.00','-51','Inclusive','branch','Inventory','','','','',''),('416839911163421300',1972,'41683991115','34','1.00','300','retail','0','2023-05-13 18:18:35','','','','0','Cash',0.00,'300','','','4','','1','2023-05-13 15:18:52','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-54.00','-55','Inclusive','branch','Inventory','','','','',''),('416839911210202033',1973,'41683991115','33','1.00','300','retail','0','2023-05-13 18:18:40','','','','0','Cash',0.00,'300','','','4','','1','2023-05-13 15:18:52','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','36.00','35','Inclusive','branch','Inventory','','','','',''),('416839911248240832',1974,'41683991115','56','1.00','400','retail','0','2023-05-13 18:18:44','','','','200','Cash',0.00,'400','','','4','','1','2023-05-13 15:18:52','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','20.00','19','Inclusive','branch','Service','1110','4000','5500','',''),('416839911268260832',1975,'41683991115','56','1.00','400','retail','0','2023-05-13 18:18:45','','','','200','Cash',0.00,'400','','','4','','1','2023-05-13 15:18:52','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','20.00','19','Inclusive','branch','Service','1110','4000','5500','',''),('316839911891829134',1976,'31683991188','34','1.00','300','retail','0','2023-05-13 18:19:48','','','','0','Cash',0.00,'300','','','3','','1','2023-05-13 15:19:55','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-55.00','-56','Inclusive','branch','Inventory','','','','',''),('316839911923421300',1977,'31683991188','34','1.00','300','retail','0','2023-05-13 18:19:51','','','','0','Cash',0.00,'300','','','3','','1','2023-05-13 15:19:55','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-56.00','-57','Inclusive','branch','Inventory','','','','',''),('316839915382163332',1978,'31683991537','56','1.00','400','retail','0','2023-05-13 18:25:37','','','','200','Cash',0.00,'400','','','3','','1','2023-05-13 15:25:46','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','20.00','19','Inclusive','branch','Service','1110','4000','5500','',''),('316839958573421300',1979,'31683995856','52','1.00','150','retail','0','2023-05-13 19:37:36','','','','200','Cash',0.00,'150','','','3','','1','2023-05-13 16:37:40','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316839959783022379',1980,'31683995977','59','1.00','150','retail','0','2023-05-13 19:39:37','','','','100','Cash',0.00,'150','','','3','','1','2023-05-13 16:39:41','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','36.00','35','Inclusive','branch','Service','1110','4000','5500','',''),('316839963322282203',1981,'31683996331','12','1.00','250','retail','0','2023-05-13 19:45:31','','','','0','Cash',0.00,'250','','','3','','1','2023-05-13 16:45:40','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-51.00','-52','Inclusive','branch','Inventory','','','','',''),('316839965133421300',1982,'31683996512','23','1.00','250','retail','0','2023-05-13 19:48:32','','','','0','Cash',0.00,'250','','','3','','1','2023-05-13 16:48:35','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-64.00','-65','Inclusive','branch','Inventory','','','','',''),('316839977803421300',1983,'31683997779','38','1.00','350','retail','0','2023-05-13 20:09:39','','','','0','Cash',0.00,'350','','','3','','1','2023-05-13 17:09:43','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-227.00','-228','Inclusive','branch','Inventory','','','','',''),('316839989188829834',1984,'31683998918','38','1.00','350','retail','0','2023-05-13 20:28:38','','','','0','Cash',0.00,'350','','','3','','1','2023-05-13 17:28:42','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-228.00','-229','Inclusive','branch','Inventory','','','','',''),('316840027542222032',1985,'31684002753','22','1.00','250','retail','0','2023-05-13 21:32:33','','','','0','Cash',0.00,'250','','','3','','1','2023-05-13 18:32:37','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-25.00','-26','Inclusive','branch','Inventory','','','','',''),('316840027792222032',1986,'31684002778','21','1.00','200','retail','0','2023-05-13 21:32:58','','','','0','Cash',0.00,'200','','','3','','1','2023-05-13 18:33:17','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-204.00','-205','Inclusive','branch','Inventory','','','','',''),('316840029162222032',1987,'31684002915','4','1.00','150','retail','0','2023-05-13 21:35:15','','','','0','Cash',0.00,'150','','','3','','1','2023-05-13 18:35:18','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-21.00','-22','Inclusive','branch','Inventory','','','','',''),('316840031860202034',1988,'31684003185','5','1.00','300','retail','0','2023-05-13 21:39:45','','','','0','Cash',0.00,'300','','','3','','1','2023-05-13 18:39:56','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-44.00','-45','Inclusive','branch','Inventory','','','','',''),('316840032138230832',1989,'31684003212','59','1.00','150','retail','0','2023-05-13 21:40:12','','','','100','Cash',0.00,'150','','','3','','1','2023-05-13 18:40:14','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','36.00','35','Inclusive','branch','Service','1110','4000','5500','',''),('316840045498290832',1990,'31684004548','38','1.00','350','retail','0','2023-05-13 22:02:28','','','','0','Cash',0.00,'350','','','3','','1','2023-05-13 19:02:31','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-229.00','-230','Inclusive','branch','Inventory','','','','',''),('316840633842368342',1991,'31684063383','11','1.00','280','retail','0','2023-05-14 14:23:03','','','','0','Cash',0.00,'280','','','3','','1','2023-05-14 11:23:19','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','83.00','82','Inclusive','branch','Inventory','','','','',''),('316840654842263223',1992,'31684065483','21','1.00','200','retail','0','2023-05-14 14:58:03','','','','0','Cash',0.00,'200','','','3','','1','2023-05-14 11:58:25','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-205.00','-206','Inclusive','branch','Inventory','','','','',''),('316840655625820534',1993,'31684065561','21','1.00','200','retail','0','2023-05-14 14:59:21','','','','0','Cash',0.00,'200','','','3','','1','2023-05-14 11:59:35','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-206.00','-207','Inclusive','branch','Inventory','','','','',''),('416840770938230832',1994,'41684077092','52','1.00','150','retail','0','2023-05-14 18:11:33','','','','200','Cash',0.00,'150','','','4','','1','2023-05-14 15:11:36','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316840817993421300',1995,'31684081799','38','1.00','350','retail','0','2023-05-14 19:29:59','','','','0','Cash',0.00,'350','','','3','','1','2023-05-14 16:30:02','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-230.00','-231','Inclusive','branch','Inventory','','','','',''),('316840862633421300',1996,'31684086262','59','1.00','150','retail','0','2023-05-14 20:44:22','','','','100','Cash',0.00,'150','','','3','','1','2023-05-14 17:44:25','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','36.00','35','Inclusive','branch','Service','1110','4000','5500','',''),('416841295058250832',1997,'41684129504','7','1.00','200','retail','0','2023-05-15 08:45:04','','','','0','Cash',0.00,'200','','','4','','1','2023-05-15 05:45:27','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-90.00','-91','Inclusive','branch','Inventory','','','','',''),('416841295112222032',1998,'41684129504','11','1.00','280','retail','0','2023-05-15 08:45:10','','','','0','Cash',0.00,'280','','','4','','1','2023-05-15 05:45:27','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','82.00','81','Inclusive','branch','Inventory','','','','',''),('416841295230202034',1999,'41684129504','24','1.00','100','retail','0','2023-05-15 08:45:22','','','','0','Cash',0.00,'100','','','4','','1','2023-05-15 05:45:27','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-15.00','-16','Inclusive','branch','Inventory','','','','',''),('416841401950821044',2000,'41684140194','7','1.00','200','retail','0','2023-05-15 11:43:14','','','','0','Cash',0.00,'200','','','4','','1','2023-05-15 08:43:19','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-91.00','-92','Inclusive','branch','Inventory','','','','',''),('416841475394242432',2001,'41684147538','59','1.00','150','retail','0','2023-05-15 13:45:38','','','','100','Cash',0.00,'150','','','4','','1','2023-05-15 10:45:43','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','36.00','35','Inclusive','branch','Service','1110','4000','5500','',''),('416841517038230832',2002,'41684151702','40','1.00','600','retail','0','2023-05-15 14:55:02','','','','0','Cash',0.00,'600','','','4','','1','2023-05-15 11:55:11','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-24.00','-25','Inclusive','branch','Inventory','','','','',''),('416841566702667342',2003,'41684156669','21','1.00','200','retail','0','2023-05-15 16:17:49','','','','0','Cash',0.00,'200','','','4','','1','2023-05-15 13:17:56','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-207.00','-208','Inclusive','branch','Inventory','','','','',''),('416841582693022362',2004,'41684158268','21','1.00','200','retail','0','2023-05-15 16:44:28','','','','0','Cash',0.00,'200','','','4','','1','2023-05-15 13:44:32','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-208.00','-209','Inclusive','branch','Inventory','','','','',''),('416841607072222032',2005,'41684160706','21','1.00','200','retail','0','2023-05-15 17:25:06','','','','0','Cash',0.00,'200','','','4','','1','2023-05-15 14:25:10','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-209.00','-210','Inclusive','branch','Inventory','','','','',''),('416841624718210832',2006,'41684162470','40','1.00','600','retail','0','2023-05-15 17:54:30','','','','0','Cash',0.00,'600','','','4','','1','2023-05-15 14:54:35','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-25.00','-26','Inclusive','branch','Inventory','','','','',''),('416841652393421300',2007,'41684165238','7','1.00','200','retail','0','2023-05-15 18:40:38','','','','0','Cash',0.00,'200','','','4','','1','2023-05-15 15:40:47','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-92.00','-93','Inclusive','branch','Inventory','','','','',''),('416841652444262432',2008,'41684165238','7','1.00','200','retail','0','2023-05-15 18:40:43','','','','0','Cash',0.00,'200','','','4','','1','2023-05-15 15:40:47','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-93.00','-94','Inclusive','branch','Inventory','','','','',''),('416841664010202034',2009,'41684166400','52','1.00','150','retail','0','2023-05-15 19:00:00','','','','200','Cash',0.00,'150','','','4','','1','2023-05-15 16:00:04','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416841679767821744',2010,'41684167975','59','1.00','150','retail','0','2023-05-15 19:26:15','','','','100','Cash',0.00,'150','','','4','','1','2023-05-15 16:26:18','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','36.00','35','Inclusive','branch','Service','1110','4000','5500','',''),('416841687353022337',2011,'41684168734','59','1.00','150','retail','0','2023-05-15 19:38:54','','','','100','Cash',0.00,'150','','','4','','1','2023-05-15 16:38:58','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','36.00','35','Inclusive','branch','Service','1110','4000','5500','',''),('416841694033022304',2012,'41684169402','20','1.00','200','retail','0','2023-05-15 19:50:02','','','','0','Cash',0.00,'200','','','4','','1','2023-05-15 16:50:08','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-58.00','-59','Inclusive','branch','Inventory','','','','',''),('416841718362163342',2013,'41684171835','38','1.00','350','retail','0','2023-05-15 20:30:35','','','','0','Cash',0.00,'350','','','4','','1','2023-05-15 17:30:39','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-231.00','-232','Inclusive','branch','Inventory','','','','',''),('416841743938230832',2014,'41684174392','56','1.00','400','retail','0','2023-05-15 21:13:12','','','','200','Cash',0.00,'400','','','4','','1','2023-05-15 18:13:21','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','20.00','19','Inclusive','branch','Service','1110','4000','5500','',''),('416841743963022393',2015,'41684174392','34','1.00','300','retail','0','2023-05-15 21:13:15','','','','0','Cash',0.00,'300','','','4','','1','2023-05-15 18:13:21','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-57.00','-58','Inclusive','branch','Inventory','','','','',''),('416841753933022393',2016,'41684175391','1','1.00','280','retail','0','2023-05-15 21:29:51','','','','0','Cash',0.00,'280','','','4','','1','2023-05-15 18:29:55','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-87.00','-88','Inclusive','branch','Inventory','','','','',''),('416842163012222032',2017,'41684216300','11','1.00','280','retail','0','2023-05-16 08:51:40','','','','0','Cash',0.00,'280','','','4','','1','2023-05-16 05:52:22','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','81.00','80','Inclusive','branch','Inventory','','','','',''),('416842163243022323',2018,'41684216300','24','1.00','100','retail','0','2023-05-16 08:52:03','','','','0','Cash',0.00,'100','','','4','','1','2023-05-16 05:52:22','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-16.00','-17','Inclusive','branch','Inventory','','','','',''),('416842243072460342',2019,'41684224306','7','1.00','200','retail','0','2023-05-16 11:05:06','','','','0','Cash',0.00,'200','','','4','','1','2023-05-16 08:05:27','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-94.00','-95','Inclusive','branch','Inventory','','','','',''),('416842243143421300',2020,'41684224306','11','1.00','280','retail','0','2023-05-16 11:05:13','','','','0','Cash',0.00,'280','','','4','','1','2023-05-16 08:05:27','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','80.00','79','Inclusive','branch','Inventory','','','','',''),('416842243248240832',2021,'41684224306','21','1.00','200','retail','0','2023-05-16 11:05:23','','','','0','Cash',0.00,'200','','','4','','1','2023-05-16 08:05:27','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-210.00','-211','Inclusive','branch','Inventory','','','','',''),('416842250863421300',2022,'41684225085','59','1.00','150','retail','0','2023-05-16 11:18:05','','','','100','Cash',0.00,'150','','','4','','1','2023-05-16 08:18:08','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','36.00','35','Inclusive','branch','Service','1110','4000','5500','',''),('416842261904222432',2023,'41684226189','21','1.00','200','retail','0','2023-05-16 11:36:29','','','','0','Cash',0.00,'200','','','4','','1','2023-05-16 08:36:33','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-211.00','-212','Inclusive','branch','Inventory','','','','',''),('416842307952069342',2024,'41684230794','1','1.00','280','retail','0','2023-05-16 12:53:14','','','','0','Cash',0.00,'280','','','4','','1','2023-05-16 09:53:19','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-88.00','-89','Inclusive','branch','Inventory','','','','',''),('416842349042460342',2025,'41684234903','38','1.00','350','retail','0','2023-05-16 14:01:43','','','','0','Cash',0.00,'350','','','4','','1','2023-05-16 11:01:52','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-232.00','-233','Inclusive','branch','Inventory','','','','',''),('416842349082460342',2026,'41684234903','38','1.00','350','retail','0','2023-05-16 14:01:48','','','','0','Cash',0.00,'350','','','4','','1','2023-05-16 11:01:52','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-233.00','-234','Inclusive','branch','Inventory','','','','',''),('416842434353022334',2027,'41684243434','1','1.00','280','retail','0','2023-05-16 16:23:54','','','','0','Cash',0.00,'280','','','4','','1','2023-05-16 13:24:16','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-89.00','-90','Inclusive','branch','Inventory','','','','',''),('416842434442222032',2028,'41684243434','46','1.00','200','retail','0','2023-05-16 16:24:03','','','','0','Cash',0.00,'200','','','4','','1','2023-05-16 13:24:16','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','35.00','34','Inclusive','branch','Inventory','','','','',''),('416842434523822344',2029,'41684243434','20','1.00','200','retail','0','2023-05-16 16:24:11','','','','0','Cash',0.00,'200','','','4','','1','2023-05-16 13:24:16','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-59.00','-60','Inclusive','branch','Inventory','','','','',''),('416842509858250832',2030,'41684250984','1','1.00','280','retail','0','2023-05-16 18:29:44','','','','0','Cash',0.00,'280','','','4','','1','2023-05-16 15:29:52','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-90.00','-91','Inclusive','branch','Inventory','','','','',''),('316842543813022383',2031,'31684254380','6','1.00','280','retail','0','2023-05-16 19:26:20','','','','0','Cash',0.00,'280','','','3','','1','2023-05-16 16:26:40','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-20.00','-21','Inclusive','branch','Inventory','','','','',''),('316842543950202034',2032,'31684254380','67','1.00','800','retail','0','2023-05-16 19:26:34','','','','600','Cash',0.00,'800','','','3','','1','2023-05-16 16:26:40','','9','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','29.00','28','Inclusive','branch','Inventory','1110','4000','5500','',''),('316842545723421300',2033,'31684254571','8','1.00','150','retail','0','2023-05-16 19:29:31','','','','0','Cash',0.00,'150','','','3','','1','2023-05-16 16:29:36','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-56.00','-57','Inclusive','branch','Inventory','','','','',''),('316842575223022325',2034,'31684257521','8','1.00','150','retail','0','2023-05-16 20:18:41','','','','0','Cash',0.00,'150','','','3','','1','2023-05-16 17:18:45','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-57.00','-58','Inclusive','branch','Inventory','','','','',''),('316842599472964342',2035,'31684259946','21','1.00','200','retail','0','2023-05-16 20:59:06','','','','0','Cash',0.00,'200','','','3','','1','2023-05-16 17:59:28','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-212.00','-213','Inclusive','branch','Inventory','','','','',''),('316842599522965342',2036,'31684259946','21','1.00','200','retail','0','2023-05-16 20:59:11','','','','0','Cash',0.00,'200','','','3','','1','2023-05-16 17:59:28','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-213.00','-214','Inclusive','branch','Inventory','','','','',''),('316842599564252432',2037,'31684259946','21','1.00','200','retail','0','2023-05-16 20:59:15','','','','0','Cash',0.00,'200','','','3','','1','2023-05-16 17:59:28','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-214.00','-215','Inclusive','branch','Inventory','','','','',''),('316842615633022365',2038,'31684261562','6','1.00','280','retail','0','2023-05-16 21:26:02','','','','0','Cash',0.00,'280','','','3','','1','2023-05-16 18:26:06','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-21.00','-22','Inclusive','branch','Inventory','','','','',''),('316842617942169342',2039,'31684261793','12','1.00','250','retail','0','2023-05-16 21:29:53','','','','0','Cash',0.00,'250','','','3','','1','2023-05-16 18:29:56','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-52.00','-53','Inclusive','branch','Inventory','','','','',''),('316842692790202034',2040,'31684269278','11','1.00','280','retail','0','2023-05-16 23:34:38','','','','0','Cash',0.00,'280','','','3','','1','2023-05-16 20:34:50','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','79.00','78','Inclusive','branch','Inventory','','','','',''),('316842693190202034',2041,'31684269318','20','1.00','200','retail','0','2023-05-16 23:35:18','','','','0','Cash',0.00,'200','','','3','','1','2023-05-16 20:35:27','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-60.00','-61','Inclusive','branch','Inventory','','','','',''),('316843156580202034',2042,'31684315657','52','1.00','150','retail','0','2023-05-17 12:27:37','','','','200','Cash',0.00,'150','','','3','','1','2023-05-17 09:27:40','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316843159062560342',2043,'31684315905','21','1.00','200','retail','0','2023-05-17 12:31:45','','','','0','Cash',0.00,'200','','','3','','1','2023-05-17 09:31:49','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-215.00','-216','Inclusive','branch','Inventory','','','','',''),('316843159232562342',2044,'31684315922','59','1.00','150','retail','0','2023-05-17 12:32:02','','','','100','Cash',0.00,'150','','','3','','1','2023-05-17 09:32:10','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','36.00','35','Inclusive','branch','Service','1110','4000','5500','',''),('316843159262562342',2045,'31684315922','59','1.00','150','retail','0','2023-05-17 12:32:05','','','','100','Cash',0.00,'150','','','3','','1','2023-05-17 09:32:10','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','36.00','35','Inclusive','branch','Service','1110','4000','5500','',''),('316843159482222032',2046,'31684315947','11','1.00','280','retail','0','2023-05-17 12:32:27','','','','0','Cash',0.00,'280','','','3','','1','2023-05-17 09:32:33','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','78.00','77','Inclusive','branch','Inventory','','','','',''),('316843222462222032',2047,'31684322245','38','1.00','350','retail','0','2023-05-17 14:17:25','','','','0','Cash',0.00,'350','','','3','','1','2023-05-17 11:17:45','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-234.00','-235','Inclusive','branch','Inventory','','','','',''),('316843222583022352',2048,'31684322245','4','1.00','150','retail','0','2023-05-17 14:17:37','','','','0','Cash',0.00,'150','','','3','','1','2023-05-17 11:17:45','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-22.00','-23','Inclusive','branch','Inventory','','','','',''),('316843313443421300',2049,'31684331343','38','1.00','350','retail','0','2023-05-17 16:49:03','','','','0','Cash',0.00,'350','','','3','','1','2023-05-17 13:49:09','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-235.00','-236','Inclusive','branch','Inventory','','','','',''),('316843338563421300',2050,'31684333855','23','1.00','250','retail','0','2023-05-17 17:30:55','','','','0','Cash',0.00,'250','','','3','','1','2023-05-17 14:31:20','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-65.00','-66','Inclusive','branch','Inventory','','','','',''),('316843339392363342',2051,'31684333939','20','1.00','200','retail','0','2023-05-17 17:32:19','','','','0','Cash',0.00,'200','','','3','','1','2023-05-17 14:32:24','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-61.00','-62','Inclusive','branch','Inventory','','','','',''),('316843341963421300',2052,'31684334195','22','1.00','250','retail','0','2023-05-17 17:36:35','','','','0','Cash',0.00,'250','','','3','','1','2023-05-17 14:36:43','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-26.00','-27','Inclusive','branch','Inventory','','','','',''),('316843453852568342',2053,'31684345384','38','1.00','350','retail','0','2023-05-17 20:43:04','','','','0','Cash',0.00,'350','','','3','','1','2023-05-17 17:43:12','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-236.00','-237','Inclusive','branch','Inventory','','','','',''),('316843453888280832',2054,'31684345384','38','1.00','350','retail','0','2023-05-17 20:43:07','','','','0','Cash',0.00,'350','','','3','','1','2023-05-17 17:43:12','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-237.00','-238','Inclusive','branch','Inventory','','','','',''),('316843459414242432',2055,'31684345940','20','1.00','200','retail','0','2023-05-17 20:52:20','','','','0','Cash',0.00,'200','','','3','','1','2023-05-17 17:52:33','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-62.00','-63','Inclusive','branch','Inventory','','','','',''),('316843459664242432',2056,'31684345966','1','1.00','280','retail','0','2023-05-17 20:52:46','','','','0','Cash',0.00,'280','','','3','','1','2023-05-17 17:52:58','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-91.00','-92','Inclusive','branch','Inventory','','','','',''),('316843459982222032',2057,'31684345997','11','1.00','280','retail','0','2023-05-17 20:53:17','','','','0','Cash',0.00,'280','','','3','','1','2023-05-17 17:54:48','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','77.00','76','Inclusive','branch','Inventory','','','','',''),('316843460763421300',2058,'31684345997','26','1.00','100','retail','0','2023-05-17 20:54:35','','','','0','Cash',0.00,'100','','','3','','1','2023-05-17 17:54:48','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-16.00','-17','Inclusive','branch','Inventory','','','','',''),('316844001714202432',2060,'31684400170','38','1.00','350','retail','0','2023-05-18 11:56:10','','','','0','Cash',0.00,'350','','','3','','1','2023-05-18 09:10:43','','7','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-238.00','-239','Inclusive','branch','Inventory','','','','',''),('316844010380202034',2061,'31684400170','15','1.00','200','retail','0','2023-05-18 12:10:37','','','','0','Cash',0.00,'200','','','3','','1','2023-05-18 09:10:43','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-10.00','-11','Inclusive','branch','Inventory','','','','',''),('316844061413022341',2062,'31684406140','29','1.00','300','retail','0','2023-05-18 13:35:40','','','','0','Cash',0.00,'300','','','3','','1','2023-05-18 10:35:45','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-16.00','-17','Inclusive','branch','Inventory','','','','',''),('316844079002222032',2063,'31684407900','52','1.00','150','retail','0','2023-05-18 14:05:00','','','','200','Cash',0.00,'150','','','3','','1','2023-05-18 11:05:05','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416844125893421300',2064,'41684412588','1','1.00','280','retail','0','2023-05-18 15:23:08','','','','0','Cash',0.00,'280','','','4','','1','2023-05-18 12:23:28','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-92.00','-93','Inclusive','branch','Inventory','','','','',''),('416844126002260342',2065,'41684412588','19','1.00','200','retail','0','2023-05-18 15:23:19','','','','0','Cash',0.00,'200','','','4','','1','2023-05-18 12:23:28','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-4.00','-5','Inclusive','branch','Inventory','','','','',''),('316844080260202034',2066,'31684408025','59','1.00','150','retail','0','2023-05-18 14:07:05','','','','100','Cash',0.00,'150','','','3','','1','2023-05-18 12:30:53','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','36.00','35','Inclusive','branch','Service','1110','4000','5500','',''),('416844131032222032',2067,'41684413102','4','1.00','150','retail','0','2023-05-18 15:31:42','','','','0','Cash',0.00,'150','','','4','','1','2023-05-18 12:31:47','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-23.00','-24','Inclusive','branch','Inventory','','','','',''),('416844142443022342',2068,'41684414243','23','1.00','250','retail','0','2023-05-18 15:50:43','','','','0','Cash',0.00,'250','','','4','','1','2023-05-18 12:50:50','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-66.00','-67','Inclusive','branch','Inventory','','','','',''),('416844142483421300',2069,'41684414243','23','1.00','250','retail','0','2023-05-18 15:50:47','','','','0','Cash',0.00,'250','','','4','','1','2023-05-18 12:50:50','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-67.00','-68','Inclusive','branch','Inventory','','','','',''),('416844165712667342',2070,'41684416571','17','1.00','200','retail','0','2023-05-18 16:29:31','','','','0','Cash',0.00,'200','','','4','','1','2023-05-18 13:29:34','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-29.00','-30','Inclusive','branch','Inventory','','','','',''),('416844194223022324',2071,'41684419421','11','1.00','280','retail','0','2023-05-18 17:17:01','','','','0','Cash',0.00,'280','','','4','','1','2023-05-18 14:17:28','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','76.00','75','Inclusive','branch','Inventory','','','','',''),('316844197292222032',2072,'31684419728','40','1.00','600','retail','0','2023-05-18 17:22:08','','','','0','Cash',0.00,'600','','','3','','1','2023-05-18 14:22:22','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-26.00','-27','Inclusive','branch','Inventory','','','','',''),('416844199702222032',2073,'41684419969','40','1.00','600','retail','0','2023-05-18 17:26:09','','','','0','Cash',0.00,'600','','','4','','1','2023-05-18 14:26:13','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-27.00','-28','Inclusive','branch','Inventory','','','','',''),('416844210684222432',2074,'41684421067','1','1.00','280','retail','0','2023-05-18 17:44:27','','','','0','Cash',0.00,'280','','','4','','1','2023-05-18 14:44:31','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-93.00','-94','Inclusive','branch','Inventory','','','','',''),('316844220393421300',2075,'31684422038','52','1.00','150','retail','0','2023-05-18 18:00:38','','','','200','Cash',0.00,'150','','','3','','1','2023-05-18 15:00:43','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316844230300202034',2076,'31684423029','60','1.00','100','retail','0','2023-05-18 18:17:09','','','','70','Cash',0.00,'100','','','3','','1','2023-05-18 15:17:13','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('416844231032222032',2077,'41684423103','12','1.00','250','retail','0','2023-05-18 18:18:23','','','','0','Cash',0.00,'250','','','4','','1','2023-05-18 15:18:32','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-53.00','-54','Inclusive','branch','Inventory','','','','',''),('416844231082222032',2078,'41684423103','12','1.00','250','retail','0','2023-05-18 18:18:27','','','','0','Cash',0.00,'250','','','4','','1','2023-05-18 15:18:32','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-54.00','-55','Inclusive','branch','Inventory','','','','',''),('316844240744824434',2079,'31684424073','5','1.00','300','retail','0','2023-05-18 18:34:33','','','','0','Cash',0.00,'300','','','3','','1','2023-05-18 15:35:04','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-45.00','-46','Inclusive','branch','Inventory','','','','',''),('316844296432222032',2080,'31684429642','38','1.00','350','retail','0','2023-05-18 20:07:22','','','','0','Cash',0.00,'350','','','3','','1','2023-05-18 17:07:27','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-239.00','-240','Inclusive','branch','Inventory','','','','',''),('416844299313421300',2081,'41684429930','21','1.00','200','retail','0','2023-05-18 20:12:10','','','','0','Cash',0.00,'200','','','4','','1','2023-05-18 17:12:14','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-216.00','-217','Inclusive','branch','Inventory','','','','',''),('416844315350202034',2082,'41684431534','21','1.00','200','retail','0','2023-05-18 20:38:54','','','','0','Cash',0.00,'200','','','4','','1','2023-05-18 17:39:11','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-217.00','-218','Inclusive','branch','Inventory','','','','',''),('416844370167824744',2083,'41684437015','38','1.00','350','retail','0','2023-05-18 22:10:15','','','','0','Cash',0.00,'350','','','4','','1','2023-05-18 19:10:23','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-240.00','-241','Inclusive','branch','Inventory','','','','',''),('416844774814272432',2084,'41684477480','11','1.00','280','retail','0','2023-05-19 09:24:40','','','','0','Cash',0.00,'280','','','4','','1','2023-05-19 06:24:53','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','75.00','74','Inclusive','branch','Inventory','','','','',''),('416844774918210832',2085,'41684477480','20','1.00','200','retail','0','2023-05-19 09:24:50','','','','0','Cash',0.00,'200','','','4','','1','2023-05-19 06:24:53','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-63.00','-64','Inclusive','branch','Inventory','','','','',''),('416844775537824744',2086,'41684477552','12','1.00','250','retail','0','2023-05-19 09:25:52','','','','0','Cash',0.00,'250','','','4','','1','2023-05-19 06:25:56','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-55.00','-56','Inclusive','branch','Inventory','','','','',''),('416844783234272432',2087,'41684478322','26','1.00','100','retail','0','2023-05-19 09:38:42','','','','0','Cash',0.00,'100','','','4','','1','2023-05-19 06:39:01','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-17.00','-18','Inclusive','branch','Inventory','','','','',''),('416844783353421300',2088,'41684478322','11','1.00','280','retail','0','2023-05-19 09:38:54','','','','0','Cash',0.00,'280','','','4','','1','2023-05-19 06:39:01','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','74.00','73','Inclusive','branch','Inventory','','','','',''),('416844820780202034',2089,'41684482078','11','1.00','280','retail','0','2023-05-19 10:41:18','','','','0','Cash',0.00,'280','','','4','','1','2023-05-19 07:41:42','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','73.00','72','Inclusive','branch','Inventory','','','','',''),('416844820913022390',2090,'41684482078','39','1.00','300','retail','0','2023-05-19 10:41:30','','','','0','Cash',0.00,'300','','','4','','1','2023-05-19 07:41:42','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-6.00','-7','Inclusive','branch','Inventory','','','','',''),('416844820973022390',2091,'41684482078','21','1.00','200','retail','0','2023-05-19 10:41:36','','','','0','Cash',0.00,'200','','','4','','1','2023-05-19 07:41:42','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-218.00','-219','Inclusive','branch','Inventory','','','','',''),('416844898713421300',2092,'41684489870','11','1.00','280','retail','0','2023-05-19 12:51:10','','','','0','Cash',0.00,'280','','','4','','1','2023-05-19 09:51:18','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','72.00','71','Inclusive','branch','Inventory','','','','',''),('316844931100628003',2093,'31684493108','59','1.00','150','retail','0','2023-05-19 13:45:08','','','','100','Cash',0.00,'150','','','3','','1','2023-05-19 10:45:12','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','36.00','35','Inclusive','branch','Service','1110','4000','5500','',''),('316845024348240832',2094,'31684502433','7','1.00','200','retail','0','2023-05-19 16:20:33','','','','0','Cash',0.00,'200','','','3','','1','2023-05-19 13:20:51','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-95.00','-96','Inclusive','branch','Inventory','','','','',''),('316845025880202034',2095,'31684502587','1','1.00','280','retail','0','2023-05-19 16:23:07','','','','0','Cash',0.00,'280','','','3','','1','2023-05-19 13:23:13','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-94.00','-95','Inclusive','branch','Inventory','','','','',''),('316845041143022311',2096,'31684504113','12','1.00','250','retail','0','2023-05-19 16:48:33','','','','0','Cash',0.00,'250','','','3','','1','2023-05-19 13:48:42','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-56.00','-57','Inclusive','branch','Inventory','','','','',''),('316845061162661342',2097,'31684506115','38','1.00','350','retail','0','2023-05-19 17:21:55','','','','0','Cash',0.00,'350','','','3','','1','2023-05-19 14:22:34','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-241.00','-242','Inclusive','branch','Inventory','','','','',''),('316845191413022341',2098,'31684519139','1','1.00','280','retail','0','2023-05-19 20:59:00','','','','0','Cash',0.00,'280','','','3','','1','2023-05-19 17:59:07','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-96.00','-97','Inclusive','branch','Inventory','','','','',''),('316845224032825234',2099,'31684522400','59','1.00','150','retail','0','2023-05-19 21:53:22','','','','100','Cash',0.00,'150','','','3','','1','2023-05-19 18:53:56','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','36.00','35','Inclusive','branch','Service','1110','4000','5500','',''),('316845248542222032',2100,'31684524853','1','1.00','280','retail','0','2023-05-19 22:34:14','','','','0','Cash',0.00,'280','','','3','','1','2023-05-19 19:34:17','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-96.00','-97','Inclusive','branch','Inventory','','','','',''),('316845266240202034',2101,'31684526622','59','1.00','150','retail','0','2023-05-19 23:03:43','','','','100','Cash',0.00,'150','','','3','','1','2023-05-19 20:03:46','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Service','1110','4000','5500','',''),('316845282258825834',2102,'31684528224','21','1.00','200','retail','0','2023-05-19 23:30:24','','','','0','Cash',0.00,'200','','','3','','1','2023-05-19 20:30:37','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-219.00','-220','Inclusive','branch','Inventory','','','','',''),('316845282610202034',2103,'31684528260','20','1.00','200','retail','0','2023-05-19 23:31:00','','','','0','Cash',0.00,'200','','','3','','1','2023-05-19 20:31:28','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-64.00','-65','Inclusive','branch','Inventory','','','','',''),('316845282643421300',2104,'31684528260','20','1.00','200','retail','0','2023-05-19 23:31:03','','','','0','Cash',0.00,'200','','','3','','1','2023-05-19 20:31:28','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-65.00','-66','Inclusive','branch','Inventory','','','','',''),('316845283352863342',2105,'31684528334','20','1.00','200','retail','0','2023-05-19 23:32:14','','','','0','Cash',0.00,'200','','','3','','1','2023-05-19 20:32:34','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-66.00','-67','Inclusive','branch','Inventory','','','','',''),('416845733158250832',2106,'41684573314','11','1.00','280','retail','0','2023-05-20 12:01:54','','','','0','Cash',0.00,'280','','','4','','1','2023-05-20 09:01:58','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','71.00','70','Inclusive','branch','Inventory','','','','',''),('416845919501825144',2107,'41684591949','1','1.00','280','retail','0','2023-05-20 17:12:29','','','','0','Cash',0.00,'280','','','4','','1','2023-05-20 14:12:36','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-97.00','-98','Inclusive','branch','Inventory','','','','',''),('316845952632566342',2108,'31684595262','8','1.00','150','retail','0','2023-05-20 18:07:42','','','','0','Cash',0.00,'150','','','3','','1','2023-05-20 15:07:53','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-58.00','-59','Inclusive','branch','Inventory','','','','',''),('416845954265825544',2109,'41684595425','52','1.00','150','retail','0','2023-05-20 18:10:25','','','','200','Cash',0.00,'150','','','4','','1','2023-05-20 15:10:29','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316845978747825734',2110,'31684597873','1','1.00','280','retail','0','2023-05-20 18:51:13','','','','0','Cash',0.00,'280','','','3','','1','2023-05-20 15:51:21','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-98.00','-99','Inclusive','branch','Inventory','','','','',''),('316845978773421300',2111,'31684597873','59','1.00','150','retail','0','2023-05-20 18:51:16','','','','100','Cash',0.00,'150','','','3','','1','2023-05-20 15:51:21','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Service','1110','4000','5500','',''),('416846044508200832',2112,'41684604449','1','1.00','280','retail','0','2023-05-20 20:40:49','','','','0','Cash',0.00,'280','','','4','','1','2023-05-20 17:40:57','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-99.00','-100','Inclusive','branch','Inventory','','','','',''),('416846045372222032',2113,'41684604536','9','1.00','200','retail','0','2023-05-20 20:42:16','','','','0','Cash',0.00,'200','','','4','','1','2023-05-20 17:42:22','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-7.00','-8','Inclusive','branch','Inventory','','','','',''),('316846046733421300',2114,'31684604672','4','1.00','150','retail','0','2023-05-20 20:44:32','','','','0','Cash',0.00,'150','','','3','','1','2023-05-20 17:44:36','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-24.00','-25','Inclusive','branch','Inventory','','','','',''),('316846046902469342',2115,'31684604689','3','1.00','200','retail','0','2023-05-20 20:44:49','','','','0','Cash',0.00,'200','','','3','','1','2023-05-20 17:44:55','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-51.00','-52','Inclusive','branch','Inventory','','','','',''),('316846050872568342',2116,'31684605086','3','1.00','200','retail','0','2023-05-20 20:51:26','','','','0','Cash',0.00,'200','','','3','','1','2023-05-20 17:51:31','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-52.00','-53','Inclusive','branch','Inventory','','','','',''),('416846076312222032',2117,'41684607630','31','1.00','200','retail','0','2023-05-20 21:33:50','','','','0','Cash',0.00,'200','','','4','','1','2023-05-20 18:33:53','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-13.00','-14','Inclusive','branch','Inventory','','','','',''),('316846089772867342',2118,'31684608976','59','1.00','150','retail','0','2023-05-20 21:56:16','','','','100','Cash',0.00,'150','','','3','','1','2023-05-20 18:56:21','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Service','1110','4000','5500','',''),('316846107453022347',2119,'31684610744','38','1.00','350','retail','0','2023-05-20 22:25:44','','','','0','Cash',0.00,'350','','','3','','1','2023-05-20 19:25:47','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-242.00','-243','Inclusive','branch','Inventory','','','','',''),('416846124253022324',2120,'41684612424','3','1.00','200','retail','0','2023-05-20 22:53:44','','','','0','Cash',0.00,'200','','','4','','1','2023-05-20 19:53:53','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-53.00','-54','Inclusive','branch','Inventory','','','','',''),('316846568052353323',2121,'31684656804','17','1.00','200','retail','0','2023-05-21 11:13:24','','','','0','Cash',0.00,'200','','','3','','1','2023-05-21 08:13:29','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-30.00','-31','Inclusive','branch','Inventory','','','','',''),('316846667043421300',2122,'31684666703','21','1.00','200','retail','0','2023-05-21 13:58:23','','','','0','Cash',0.00,'200','','','3','','1','2023-05-21 10:58:26','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-220.00','-221','Inclusive','branch','Inventory','','','','',''),('416846821340202034',2123,'41684682133','23','1.00','250','retail','0','2023-05-21 18:15:33','','','','0','Cash',0.00,'250','','','4','','1','2023-05-21 15:15:46','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-68.00','-69','Inclusive','branch','Inventory','','','','',''),('416846821372826244',2124,'41684682133','23','1.00','250','retail','0','2023-05-21 18:15:37','','','','0','Cash',0.00,'250','','','4','','1','2023-05-21 15:15:46','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-69.00','-70','Inclusive','branch','Inventory','','','','',''),('316846874822408388',2125,'31684687481','38','1.00','350','retail','0','2023-05-21 19:44:41','','','','0','Cash',0.00,'350','','','3','','1','2023-05-21 16:44:45','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-243.00','-244','Inclusive','branch','Inventory','','','','',''),('416846883388826844',2126,'41684688337','1','1.00','280','retail','0','2023-05-21 19:58:57','','','','0','Cash',0.00,'280','','','4','','1','2023-05-21 16:59:06','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-100.00','-101','Inclusive','branch','Inventory','','','','',''),('316846959093421300',2127,'31684695908','20','1.00','200','retail','0','2023-05-21 22:05:08','','','','0','Cash',0.00,'200','','','3','','1','2023-05-21 19:05:17','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-67.00','-68','Inclusive','branch','Inventory','','','','',''),('416847450492564342',2128,'41684745048','59','1.00','150','retail','0','2023-05-22 11:44:08','','','','100','Cash',0.00,'150','','','4','','1','2023-05-22 08:44:13','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Service','1110','4000','5500','',''),('416847551023421300',2129,'41684755101','21','1.00','200','retail','0','2023-05-22 14:31:41','','','','0','Cash',0.00,'200','','','4','','1','2023-05-22 11:31:54','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-221.00','-222','Inclusive','branch','Inventory','','','','',''),('416847697762222032',2130,'41684769775','59','1.00','150','retail','0','2023-05-22 18:36:15','','','','100','Cash',0.00,'150','','','4','','1','2023-05-22 15:36:19','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Service','1110','4000','5500','',''),('416847711944272432',2131,'41684771193','38','1.00','350','retail','0','2023-05-22 18:59:53','','','','0','Cash',0.00,'350','','','4','','1','2023-05-22 16:00:11','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-244.00','-245','Inclusive','branch','Inventory','','','','',''),('416847737234272432',2132,'41684773722','18','1.00','200','retail','0','2023-05-22 19:42:02','','','','0','Cash',0.00,'200','','','4','','1','2023-05-22 16:42:11','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-18.00','-19','Inclusive','branch','Inventory','','','','',''),('416847737273827344',2133,'41684773722','16','1.00','200','retail','0','2023-05-22 19:42:06','','','','0','Cash',0.00,'200','','','4','','1','2023-05-22 16:42:11','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-14.00','-15','Inclusive','branch','Inventory','','','','',''),('416848360204232432',2134,'41684836019','33','1.00','300','retail','0','2023-05-23 13:00:20','','','','0','Cash',0.00,'300','','','4','','1','2023-05-23 10:00:34','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','35.00','34','Inclusive','branch','Inventory','','','','',''),('416848360242222032',2135,'41684836019','33','1.00','300','retail','0','2023-05-23 13:00:23','','','','0','Cash',0.00,'300','','','4','','1','2023-05-23 10:00:34','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','34.00','33','Inclusive','branch','Inventory','','','','',''),('416848367680202034',2136,'41684836767','55','1.00','200','retail','0','2023-05-23 13:12:47','','','','150','Cash',0.00,'200','','','4','','1','2023-05-23 10:12:51','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','298.00','297','Inclusive','branch','Inventory','1110','4000','5500','',''),('416848368103022318',2137,'41684836809','16','1.00','200','retail','0','2023-05-23 13:13:29','','','','0','Cash',0.00,'200','','','4','','1','2023-05-23 10:13:38','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-15.00','-16','Inclusive','branch','Inventory','','','','',''),('416848446980202034',2138,'41684844697','38','1.00','350','retail','0','2023-05-23 15:24:57','','','','0','Cash',0.00,'350','','','4','','1','2023-05-23 12:25:06','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-245.00','-246','Inclusive','branch','Inventory','','','','',''),('416848452765828544',2139,'41684845275','21','1.00','200','retail','0','2023-05-23 15:34:35','','','','0','Cash',0.00,'200','','','4','','1','2023-05-23 12:34:46','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-222.00','-223','Inclusive','branch','Inventory','','','','',''),('316848544903421300',2140,'31684854489','1','1.00','280','retail','0','2023-05-23 18:08:09','','','','0','Cash',0.00,'280','','','3','','1','2023-05-23 15:08:25','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-101.00','-102','Inclusive','branch','Inventory','','','','',''),('316848545374252432',2141,'31684854536','16','1.00','200','retail','0','2023-05-23 18:08:56','','','','0','Cash',0.00,'200','','','3','','1','2023-05-23 15:09:07','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-16.00','-17','Inclusive','branch','Inventory','','','','',''),('316848568314252432',2142,'31684856830','21','1.00','200','retail','0','2023-05-23 18:47:10','','','','0','Cash',0.00,'200','','','3','','1','2023-05-23 15:47:14','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-223.00','-224','Inclusive','branch','Inventory','','','','',''),('416848568778270832',2143,'41684856876','23','1.00','250','retail','0','2023-05-23 18:47:56','','','','0','Cash',0.00,'250','','','4','','1','2023-05-23 15:48:01','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-70.00','-71','Inclusive','branch','Inventory','','','','',''),('316848570492222032',2144,'31684857048','15','1.00','200','retail','0','2023-05-23 18:50:48','','','','0','Cash',0.00,'200','','','3','','1','2023-05-23 15:50:53','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-11.00','-12','Inclusive','branch','Inventory','','','','',''),('316848606954262432',2145,'31684860694','38','1.00','350','retail','0','2023-05-23 19:51:34','','','','0','Cash',0.00,'350','','','3','','1','2023-05-23 16:51:38','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-246.00','-247','Inclusive','branch','Inventory','','','','',''),('316848607090202034',2146,'31684860708','59','1.00','150','retail','0','2023-05-23 19:51:48','','','','100','Cash',0.00,'150','','','3','','1','2023-05-23 16:51:52','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Service','1110','4000','5500','',''),('316848608920828034',2147,'31684860891','21','1.00','200','retail','0','2023-05-23 19:54:51','','','','0','Cash',0.00,'200','','','3','','1','2023-05-23 16:54:59','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-224.00','-225','Inclusive','branch','Inventory','','','','',''),('316848660152222032',2148,'31684866014','21','1.00','200','retail','0','2023-05-23 21:20:14','','','','0','Cash',0.00,'200','','','3','','1','2023-05-23 18:20:23','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-225.00','-226','Inclusive','branch','Inventory','','','','',''),('316848660192661342',2149,'31684866014','22','1.00','250','retail','0','2023-05-23 21:20:18','','','','0','Cash',0.00,'250','','','3','','1','2023-05-23 18:20:23','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-27.00','-28','Inclusive','branch','Inventory','','','','',''),('316848696213421300',2150,'31684869620','21','1.00','200','retail','0','2023-05-23 22:20:20','','','','0','Cash',0.00,'200','','','3','','1','2023-05-23 19:20:32','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-226.00','-227','Inclusive','branch','Inventory','','','','',''),('316848696668260832',2151,'31684869665','5','1.00','300','retail','0','2023-05-23 22:21:05','','','','0','Cash',0.00,'300','','','3','','1','2023-05-23 19:27:38','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-46.00','-47','Inclusive','branch','Inventory','','','','',''),('316848702113421300',2152,'31684870210','1','1.00','280','retail','0','2023-05-23 22:30:10','','','','0','Cash',0.00,'280','','','3','','1','2023-05-23 19:30:27','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-102.00','-103','Inclusive','branch','Inventory','','','','',''),('316849222923932020',2153,'31684922291','7','1.00','200','retail','0','2023-05-24 12:58:11','','','','0','Cash',0.00,'200','','','3','','1','2023-05-24 09:58:16','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-96.00','-97','Inclusive','branch','Inventory','','','','',''),('316849324823421300',2154,'31684932481','1','1.00','280','retail','0','2023-05-24 15:48:01','','','','0','Cash',0.00,'280','','','3','','1','2023-05-24 12:48:05','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-103.00','-104','Inclusive','branch','Inventory','','','','',''),('316849325670202034',2155,'31684932566','21','1.00','200','retail','0','2023-05-24 15:49:26','','','','0','Cash',0.00,'200','','','3','','1','2023-05-24 12:49:39','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-227.00','-228','Inclusive','branch','Inventory','','','','',''),('316849325963243300',2156,'31684932595','23','1.00','250','retail','0','2023-05-24 15:49:55','','','','0','Cash',0.00,'250','','','3','','1','2023-05-24 12:50:05','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-71.00','-72','Inclusive','branch','Inventory','','','','',''),('316849333808200832',2157,'31684933379','3','1.00','200','retail','0','2023-05-24 16:02:59','','','','0','Cash',0.00,'200','','','3','','1','2023-05-24 13:03:15','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-54.00','-55','Inclusive','branch','Inventory','','','','',''),('316849333900022393',2158,'31684933379','3','1.00','200','retail','0','2023-05-24 16:03:09','','','','0','Cash',0.00,'200','','','3','','1','2023-05-24 13:03:15','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-55.00','-56','Inclusive','branch','Inventory','','','','',''),('316849365090202034',2159,'31684936508','59','1.00','150','retail','0','2023-05-24 16:55:08','','','','100','Cash',0.00,'150','','','3','','1','2023-05-24 13:55:12','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Service','1110','4000','5500','',''),('316849384338829834',2161,'31684938432','3','1.00','200','retail','0','2023-05-24 17:27:12','','','','0','Cash',0.00,'200','','','3','','1','2023-05-24 14:28:43','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-57.00','-58','Inclusive','branch','Inventory','','','','',''),('316849384473421300',2162,'31684938432','3','1.00','200','retail','0','2023-05-24 17:27:26','','','','0','Cash',0.00,'200','','','3','','1','2023-05-24 14:28:43','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-58.00','-59','Inclusive','branch','Inventory','','','','',''),('316849385458250832',2163,'31684938544','11','1.00','280','retail','0','2023-05-24 17:29:04','','','','0','Cash',0.00,'280','','','3','','1','2023-05-24 14:29:09','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','70.00','69','Inclusive','branch','Inventory','','','','',''),('316849383802222032',2164,'31684938379','3','1.00','200','retail','0','2023-05-24 17:26:19','','','','0','Cash',0.00,'200','','','3','','1','2023-05-24 14:41:16','','1','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-56.00','-57','Inclusive','branch','Inventory','','','','',''),('316849392733022372',2165,'31684938379','3','1.00','200','retail','0','2023-05-24 17:41:12','','','','0','Cash',0.00,'200','','','3','','1','2023-05-24 14:41:16','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-59.00','-60','Inclusive','branch','Inventory','','','','',''),('316849428364242432',2166,'31684942835','18','1.00','200','retail','0','2023-05-24 18:40:35','','','','0','Cash',0.00,'200','','','3','','1','2023-05-24 15:40:39','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-19.00','-20','Inclusive','branch','Inventory','','','','',''),('316849438973829334',2167,'31684943896','20','1.00','200','retail','0','2023-05-24 18:58:16','','','','0','Cash',0.00,'200','','','3','','1','2023-05-24 15:58:20','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-68.00','-69','Inclusive','branch','Inventory','','','','',''),('316849446922222032',2168,'31684944691','59','1.00','150','retail','0','2023-05-24 19:11:31','','','','100','Cash',0.00,'150','','','3','','1','2023-05-24 16:11:35','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Service','1110','4000','5500','',''),('316849481723322204',2169,'31684948171','38','1.00','350','retail','0','2023-05-24 20:09:31','','','','0','Cash',0.00,'350','','','3','','1','2023-05-24 17:09:36','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-247.00','-248','Inclusive','branch','Inventory','','','','',''),('316849497412222032',2170,'31684949740','1','1.00','280','retail','0','2023-05-24 20:35:40','','','','0','Cash',0.00,'280','','','3','','1','2023-05-24 17:35:59','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-104.00','-105','Inclusive','branch','Inventory','','','','',''),('316849513540202034',2171,'31684951353','11','1.00','280','retail','0','2023-05-24 21:02:33','','','','0','Cash',0.00,'280','','','3','','1','2023-05-24 18:03:00','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','69.00','68','Inclusive','branch','Inventory','','','','',''),('316849554538230832',2172,'31684955452','38','1.00','350','retail','0','2023-05-24 22:10:52','','','','0','Cash',0.00,'350','','','3','','1','2023-05-24 19:10:59','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-248.00','-249','Inclusive','branch','Inventory','','','','',''),('316849567583421300',2173,'31684956757','21','1.00','200','retail','0','2023-05-24 22:32:37','','','','0','Cash',0.00,'200','','','3','','1','2023-05-24 19:32:50','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-228.00','-229','Inclusive','branch','Inventory','','','','',''),('316849568926829634',2174,'31684956892','12','1.00','250','retail','0','2023-05-24 22:34:52','','','','0','Cash',0.00,'250','','','3','','1','2023-05-24 19:35:14','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-57.00','-58','Inclusive','branch','Inventory','','','','',''),('416850280090202035',2175,'41685028008','20','1.00','200','retail','0','2023-05-25 18:20:08','','','','0','Cash',0.00,'200','','','4','','1','2023-05-25 15:20:14','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-69.00','-70','Inclusive','branch','Inventory','','','','',''),('416850295433032252',2176,'41685029542','38','1.00','350','retail','0','2023-05-25 18:45:42','','','','0','Cash',0.00,'350','','','4','','1','2023-05-25 15:45:53','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-249.00','-250','Inclusive','branch','Inventory','','','','',''),('416850296143022316',2177,'41685029613','11','1.00','280','retail','0','2023-05-25 18:46:53','','','','0','Cash',0.00,'280','','','4','','1','2023-05-25 15:47:30','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','68.00','67','Inclusive','branch','Inventory','','','','',''),('316850298393421300',2178,'31685029838','1','1.00','280','retail','0','2023-05-25 18:50:38','','','','0','Cash',0.00,'280','','','3','','1','2023-05-25 15:51:03','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-105.00','-106','Inclusive','branch','Inventory','','','','',''),('316850299323022339',2179,'31685029931','11','1.00','280','retail','0','2023-05-25 18:52:11','','','','0','Cash',0.00,'280','','','3','','1','2023-05-25 15:52:35','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','67.00','66','Inclusive','branch','Inventory','','','','',''),('316850300878270832',2180,'31685030086','3','1.00','200','retail','0','2023-05-25 18:54:46','','','','0','Cash',0.00,'200','','','3','','1','2023-05-25 15:55:10','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-60.00','-61','Inclusive','branch','Inventory','','','','',''),('316850318008200832',2181,'31685031799','23','1.00','250','retail','0','2023-05-25 19:23:19','','','','0','Cash',0.00,'250','','','3','','1','2023-05-25 16:23:43','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-72.00','-73','Inclusive','branch','Inventory','','','','',''),('416850323102261352',2182,'41685032309','12','1.00','250','retail','0','2023-05-25 19:31:49','','','','0','Cash',0.00,'250','','','4','','1','2023-05-25 16:31:54','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-58.00','-59','Inclusive','branch','Inventory','','','','',''),('416850344663236224',2183,'41685034465','1','1.00','280','retail','0','2023-05-25 20:07:45','','','','0','Cash',0.00,'280','','','4','','1','2023-05-25 17:08:02','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-106.00','-107','Inclusive','branch','Inventory','','','','',''),('416850344794820444',2184,'41685034465','26','1.00','100','retail','0','2023-05-25 20:07:58','','','','0','Cash',0.00,'100','','','4','','1','2023-05-25 17:08:02','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-18.00','-19','Inclusive','branch','Inventory','','','','',''),('416850378053022308',2185,'41685037804','20','1.00','200','retail','0','2023-05-25 21:03:24','','','','0','Cash',0.00,'200','','','4','','1','2023-05-25 18:03:34','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-70.00','-71','Inclusive','branch','Inventory','','','','',''),('316850378682766352',2186,'31685037867','20','1.00','200','retail','0','2023-05-25 21:04:27','','','','0','Cash',0.00,'200','','','3','','1','2023-05-25 18:04:32','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-71.00','-72','Inclusive','branch','Inventory','','','','',''),('416850398863022388',2187,'41685039885','3','1.00','200','retail','0','2023-05-25 21:38:05','','','','0','Cash',0.00,'200','','','4','','1','2023-05-25 18:38:09','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-61.00','-62','Inclusive','branch','Inventory','','','','',''),('416850399160202035',2188,'41685039915','38','1.00','350','retail','0','2023-05-25 21:38:36','','','','0','Cash',0.00,'350','','','4','','1','2023-05-25 18:38:41','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-250.00','-251','Inclusive','branch','Inventory','','','','',''),('416850914410202035',2189,'41685091440','11','1.00','280','retail','0','2023-05-26 11:57:20','','','','0','Cash',0.00,'280','','','4','','1','2023-05-26 08:57:25','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','66.00','65','Inclusive','branch','Inventory','','','','',''),('416850916341820144',2190,'41685091633','6','1.00','280','retail','0','2023-05-26 12:00:33','','','','0','Cash',0.00,'280','','','4','','1','2023-05-26 09:00:50','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-22.00','-23','Inclusive','branch','Inventory','','','','',''),('416850930153421300',2191,'41685093014','8','1.00','150','retail','0','2023-05-26 12:23:34','','','','0','Cash',0.00,'150','','','4','','1','2023-05-26 09:23:39','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-59.00','-60','Inclusive','branch','Inventory','','','','',''),('316850953064292432',2192,'31685095305','59','1.00','150','retail','0','2023-05-26 13:01:46','','','','100','Cash',0.00,'150','','','3','','1','2023-05-26 10:01:52','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Service','1110','4000','5500','',''),('316850984493022344',2193,'31685098448','8','1.00','150','retail','0','2023-05-26 13:54:08','','','','0','Cash',0.00,'150','','','3','','1','2023-05-26 10:54:21','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-60.00','-61','Inclusive','branch','Inventory','','','','',''),('316851028373022338',2194,'31685102836','16','1.00','200','retail','0','2023-05-26 15:07:16','','','','0','Cash',0.00,'200','','','3','','1','2023-05-26 12:22:19','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-17.00','-18','Inclusive','branch','Inventory','','','','',''),('416851055398290832',2195,'41685105538','55','1.00','200','retail','0','2023-05-26 15:52:18','','','','150','Cash',0.00,'200','','','4','','1','2023-05-26 12:52:23','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','297.00','296','Inclusive','branch','Inventory','1110','4000','5500','',''),('416851055823421300',2196,'41685105581','11','1.00','280','retail','0','2023-05-26 15:53:01','','','','0','Cash',0.00,'280','','','4','','1','2023-05-26 12:53:07','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','65.00','64','Inclusive','branch','Inventory','','','','',''),('316851071982222032',2197,'31685107197','1','1.00','280','retail','0','2023-05-26 16:19:57','','','','0','Cash',0.00,'280','','','3','','1','2023-05-26 13:20:18','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-107.00','-108','Inclusive','branch','Inventory','','','','',''),('316851072130202035',2198,'31685107197','20','1.00','200','retail','0','2023-05-26 16:20:12','','','','0','Cash',0.00,'200','','','3','','1','2023-05-26 13:20:18','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-72.00','-73','Inclusive','branch','Inventory','','','','',''),('416851140000202035',2199,'41685113999','21','1.00','200','retail','0','2023-05-26 18:13:19','','','','0','Cash',0.00,'200','','','4','','1','2023-05-26 15:13:23','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-229.00','-230','Inclusive','branch','Inventory','','','','',''),('316851151542222032',2200,'31685115153','38','1.00','350','retail','0','2023-05-26 18:32:33','','','','0','Cash',0.00,'350','','','3','','1','2023-05-26 15:32:38','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-251.00','-252','Inclusive','branch','Inventory','','','','',''),('416851157583421300',2201,'41685115757','21','1.00','200','retail','0','2023-05-26 18:42:37','','','','0','Cash',0.00,'200','','','4','','1','2023-05-26 15:42:40','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-230.00','-231','Inclusive','branch','Inventory','','','','',''),('316851223550202035',2202,'31685122354','59','1.00','150','retail','0','2023-05-26 20:32:34','','','','100','Cash',0.00,'150','','','3','','1','2023-05-26 17:32:47','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Service','1110','4000','5500','',''),('316851223582222032',2203,'31685122354','59','1.00','150','retail','0','2023-05-26 20:32:37','','','','100','Cash',0.00,'150','','','3','','1','2023-05-26 17:32:47','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Service','1110','4000','5500','',''),('316851232294222432',2204,'31685123228','11','1.00','280','retail','0','2023-05-26 20:47:08','','','','0','Cash',0.00,'280','','','3','','1','2023-05-26 17:47:15','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','64.00','63','Inclusive','branch','Inventory','','','','',''),('416851268952222032',2205,'41685126895','59','1.00','150','retail','0','2023-05-26 21:48:15','','','','100','Cash',0.00,'150','','','4','','1','2023-05-26 18:48:20','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Service','1110','4000','5500','',''),('316851269363022339',2206,'31685126935','17','1.00','200','retail','0','2023-05-26 21:48:56','','','','0','Cash',0.00,'200','','','3','','1','2023-05-26 18:49:07','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-31.00','-32','Inclusive','branch','Inventory','','','','',''),('316851279137821734',2207,'31685127912','59','1.00','150','retail','0','2023-05-26 22:05:12','','','','100','Cash',0.00,'150','','','3','','1','2023-05-26 19:05:15','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Service','1110','4000','5500','',''),('316851305373022335',2208,'31685130536','11','1.00','280','retail','0','2023-05-26 22:48:56','','','','0','Cash',0.00,'280','','','3','','1','2023-05-26 19:49:35','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','63.00','62','Inclusive','branch','Inventory','','','','',''),('316851309982069352',2209,'31685130997','23','1.00','250','retail','0','2023-05-26 22:56:37','','','','0','Cash',0.00,'250','','','3','','1','2023-05-26 19:56:41','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-73.00','-74','Inclusive','branch','Inventory','','','','',''),('416851711020202035',2210,'41685171101','7','1.00','200','retail','0','2023-05-27 10:05:01','','','','0','Cash',0.00,'200','','','4','','1','2023-05-27 07:05:06','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-97.00','-98','Inclusive','branch','Inventory','','','','',''),('416851739423421300',2211,'41685173941','1','1.00','280','retail','0','2023-05-27 10:52:21','','','','0','Cash',0.00,'280','','','4','','1','2023-05-27 07:52:27','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-108.00','-109','Inclusive','branch','Inventory','','','','',''),('416851800410202035',2212,'41685180040','20','1.00','200','retail','0','2023-05-27 12:34:00','','','','0','Cash',0.00,'200','','','4','','1','2023-05-27 09:34:04','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-73.00','-74','Inclusive','branch','Inventory','','','','',''),('416851867343022337',2213,'41685186734','8','1.00','150','retail','0','2023-05-27 14:25:34','','','','0','Cash',0.00,'150','','','4','','1','2023-05-27 11:25:44','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-61.00','-62','Inclusive','branch','Inventory','','','','',''),('416851880638821844',2214,'41685188062','3','1.00','200','retail','0','2023-05-27 14:47:42','','','','0','Cash',0.00,'200','','','4','','1','2023-05-27 11:47:50','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-62.00','-63','Inclusive','branch','Inventory','','','','',''),('416851880678270832',2215,'41685188062','3','1.00','200','retail','0','2023-05-27 14:47:46','','','','0','Cash',0.00,'200','','','4','','1','2023-05-27 11:47:50','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-63.00','-64','Inclusive','branch','Inventory','','','','',''),('416851903022060352',2216,'41685190301','38','1.00','350','retail','0','2023-05-27 15:25:01','','','','0','Cash',0.00,'350','','','4','','1','2023-05-27 12:25:07','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-252.00','-253','Inclusive','branch','Inventory','','','','',''),('416851914018210832',2217,'41685191400','8','1.00','150','retail','0','2023-05-27 15:43:20','','','','0','Cash',0.00,'150','','','4','','1','2023-05-27 12:43:27','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-62.00','-63','Inclusive','branch','Inventory','','','','',''),('416851927860202035',2218,'41685192785','3','1.00','200','retail','0','2023-05-27 16:06:25','','','','0','Cash',0.00,'200','','','4','','1','2023-05-27 13:06:33','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-64.00','-65','Inclusive','branch','Inventory','','','','',''),('416851927902269352',2219,'41685192785','3','1.00','200','retail','0','2023-05-27 16:06:29','','','','0','Cash',0.00,'200','','','4','','1','2023-05-27 13:06:33','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-65.00','-66','Inclusive','branch','Inventory','','','','',''),('416851960510202035',2220,'41685196050','23','1.00','250','retail','0','2023-05-27 17:00:50','','','','0','Cash',0.00,'250','','','4','','1','2023-05-27 14:01:13','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-74.00','-75','Inclusive','branch','Inventory','','','','',''),('416851960622222032',2221,'41685196050','23','1.00','250','retail','0','2023-05-27 17:01:01','','','','0','Cash',0.00,'250','','','4','','1','2023-05-27 14:01:13','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-75.00','-76','Inclusive','branch','Inventory','','','','',''),('416851960683421300',2222,'41685196050','23','1.00','250','retail','0','2023-05-27 17:01:08','','','','0','Cash',0.00,'250','','','4','','1','2023-05-27 14:01:13','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-76.00','-77','Inclusive','branch','Inventory','','','','',''),('316852004368260832',2223,'31685200435','3','1.00','200','retail','0','2023-05-27 18:13:55','','','','0','Cash',0.00,'200','','','3','','1','2023-05-27 15:14:05','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-66.00','-67','Inclusive','branch','Inventory','','','','',''),('316852004562065352',2224,'31685200455','11','1.00','280','retail','0','2023-05-27 18:14:15','','','','0','Cash',0.00,'280','','','3','','1','2023-05-27 15:14:18','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','62.00','61','Inclusive','branch','Inventory','','','','',''),('316852006112061352',2225,'31685200610','52','1.00','150','retail','0','2023-05-27 18:16:50','','','','200','Cash',0.00,'150','','','3','','1','2023-05-27 15:17:28','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416852026112261352',2226,'41685202610','12','1.00','250','retail','0','2023-05-27 18:50:10','','','','0','Cash',0.00,'250','','','4','','1','2023-05-27 15:50:44','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-59.00','-60','Inclusive','branch','Inventory','','','','',''),('416852026203022326',2227,'41685202610','12','1.00','250','retail','0','2023-05-27 18:50:19','','','','0','Cash',0.00,'250','','','4','','1','2023-05-27 15:50:44','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-60.00','-61','Inclusive','branch','Inventory','','','','',''),('416852026382263352',2228,'41685202610','21','1.00','200','retail','0','2023-05-27 18:50:37','','','','0','Cash',0.00,'200','','','4','','1','2023-05-27 15:50:44','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-231.00','-232','Inclusive','branch','Inventory','','','','',''),('316852034133223030',2230,'31685203412','38','1.00','350','retail','0','2023-05-27 19:03:32','','','','0','Cash',0.00,'350','','','3','','1','2023-05-27 16:04:41','','7','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-253.00','-254','Inclusive','branch','Inventory','','','','',''),('316852034793421300',2231,'31685203412','38','1.00','350','retail','0','2023-05-27 19:04:38','','','','0','Cash',0.00,'350','','','3','','1','2023-05-27 16:04:41','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-254.00','-255','Inclusive','branch','Inventory','','','','',''),('316852066764202432',2232,'31685206675','38','1.00','350','retail','0','2023-05-27 19:57:55','','','','0','Cash',0.00,'350','','','3','','1','2023-05-27 16:58:00','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-255.00','-256','Inclusive','branch','Inventory','','','','',''),('316852081993421300',2233,'31685208198','38','1.00','350','retail','0','2023-05-27 20:23:18','','','','0','Cash',0.00,'350','','','3','','1','2023-05-27 17:23:22','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-256.00','-257','Inclusive','branch','Inventory','','','','',''),('316852082383421300',2234,'31685208237','15','1.00','200','retail','0','2023-05-27 20:23:57','','','','0','Cash',0.00,'200','','','3','','1','2023-05-27 17:24:00','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-12.00','-13','Inclusive','branch','Inventory','','','','',''),('316852083100202035',2235,'31685208309','3','1.00','200','retail','0','2023-05-27 20:25:09','','','','0','Cash',0.00,'200','','','3','','1','2023-05-27 17:25:13','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-67.00','-68','Inclusive','branch','Inventory','','','','',''),('316852170384212432',2236,'31685217037','38','1.00','350','retail','0','2023-05-27 22:50:37','','','','0','Cash',0.00,'350','','','3','','1','2023-05-27 19:50:40','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-257.00','-258','Inclusive','branch','Inventory','','','','',''),('416852177098290832',2239,'41685217708','5','1.00','300','retail','0','2023-05-27 23:01:48','','','','0','Cash',0.00,'300','','','4','','1','2023-05-27 20:01:56','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-48.00','-49','Inclusive','branch','Inventory','','','','',''),('416852177127822744',2240,'41685217708','5','1.00','300','retail','0','2023-05-27 23:01:51','','','','0','Cash',0.00,'300','','','4','','1','2023-05-27 20:01:56','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-49.00','-50','Inclusive','branch','Inventory','','','','',''),('416852179288280832',2241,'41685217927','17','1.00','200','retail','0','2023-05-27 23:05:27','','','','0','Cash',0.00,'200','','','4','','1','2023-05-27 20:05:30','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-32.00','-33','Inclusive','branch','Inventory','','','','',''),('316852176102222032',2242,'31685217609','38','1.00','350','retail','0','2023-05-27 23:00:09','','','','0','Cash',0.00,'350','','','3','','1','2023-05-27 20:31:38','','7','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-258.00','-259','Inclusive','branch','Inventory','','','','',''),('316852176150202035',2243,'31685217609','38','1.00','350','retail','0','2023-05-27 23:00:14','','','','0','Cash',0.00,'350','','','3','','1','2023-05-27 20:31:38','','7','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-259.00','-260','Inclusive','branch','Inventory','','','','',''),('316852194942969352',2244,'31685217609','38','1.00','350','retail','0','2023-05-27 23:31:33','','','','0','Cash',0.00,'350','','','3','','1','2023-05-27 20:31:38','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-260.00','-261','Inclusive','branch','Inventory','','','','',''),('316852205008200832',2245,'31685220499','38','1.00','350','retail','0','2023-05-27 23:48:19','','','','0','Cash',0.00,'350','','','3','','1','2023-05-27 20:48:46','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-261.00','-262','Inclusive','branch','Inventory','','','','',''),('316852205100202035',2246,'31685220499','21','1.00','200','retail','0','2023-05-27 23:48:28','','','','0','Cash',0.00,'200','','','3','','1','2023-05-27 20:48:46','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-232.00','-233','Inclusive','branch','Inventory','','','','',''),('316852205442222032',2247,'31685220543','20','1.00','200','retail','0','2023-05-27 23:49:03','','','','0','Cash',0.00,'200','','','3','','1','2023-05-27 20:49:31','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-74.00','-75','Inclusive','branch','Inventory','','','','',''),('316852205480356242',2248,'31685220543','20','1.00','200','retail','0','2023-05-27 23:49:07','','','','0','Cash',0.00,'200','','','3','','1','2023-05-27 20:49:31','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-75.00','-76','Inclusive','branch','Inventory','','','','',''),('316852205800202035',2249,'31685220579','1','1.00','280','retail','0','2023-05-27 23:49:39','','','','0','Cash',0.00,'280','','','3','','1','2023-05-27 20:49:48','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-109.00','-110','Inclusive','branch','Inventory','','','','',''),('316852206163421300',2250,'31685220614','23','1.00','250','retail','0','2023-05-27 23:50:14','','','','0','Cash',0.00,'250','','','3','','1','2023-05-27 20:50:43','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-77.00','-78','Inclusive','branch','Inventory','','','','',''),('316852206250822034',2251,'31685220614','5','1.00','300','retail','0','2023-05-27 23:50:24','','','','0','Cash',0.00,'300','','','3','','1','2023-05-27 20:50:43','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-49.00','-50','Inclusive','branch','Inventory','','','','',''),('416852207092060352',2252,'41685220708','59','1.00','150','retail','0','2023-05-27 23:51:48','','','','100','Cash',0.00,'150','','','4','','1','2023-05-27 20:52:12','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Service','1110','4000','5500','',''),('416852207123022317',2253,'41685220708','59','1.00','150','retail','0','2023-05-27 23:51:51','','','','100','Cash',0.00,'150','','','4','','1','2023-05-27 20:52:12','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Service','1110','4000','5500','',''),('316852211148240832',2254,'31685221113','60','1.00','100','retail','0','2023-05-27 23:58:33','','','','70','Cash',0.00,'100','','','3','','1','2023-05-27 20:58:37','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('316852738808200832',2255,'31685273878','38','1.00','350','retail','0','2023-05-28 14:37:59','','','','0','Cash',0.00,'350','','','3','','1','2023-05-28 11:38:04','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-262.00','-263','Inclusive','branch','Inventory','','','','',''),('316852741524822434',2256,'31685274151','59','1.00','150','retail','0','2023-05-28 14:42:31','','','','100','Cash',0.00,'150','','','3','','1','2023-05-28 11:42:39','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Service','1110','4000','5500','',''),('316852748553022358',2257,'31685274854','60','1.00','100','retail','0','2023-05-28 14:54:14','','','','70','Cash',0.00,'100','','','3','','1','2023-05-28 11:54:19','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','22.00','21','Inclusive','branch','Inventory','1110','4000','5500','',''),('316852766174272432',2258,'31685276616','46','1.00','200','retail','0','2023-05-28 15:23:36','','','','0','Cash',0.00,'200','','','3','','1','2023-05-28 12:25:44','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','34.00','33','Inclusive','branch','Inventory','','','','',''),('316852767074272432',2259,'31685276616','5','1.00','300','retail','0','2023-05-28 15:25:06','','','','0','Cash',0.00,'300','','','3','','1','2023-05-28 12:25:44','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-50.00','-51','Inclusive','branch','Inventory','','','','',''),('316852767204272432',2260,'31685276616','7','1.00','200','retail','0','2023-05-28 15:25:18','','','','0','Cash',0.00,'200','','','3','','1','2023-05-28 12:25:44','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-98.00','-99','Inclusive','branch','Inventory','','','','',''),('416852830334282432',2261,'41685283032','3','1.00','200','retail','0','2023-05-28 17:10:32','','','','0','Cash',0.00,'200','','','4','','1','2023-05-28 14:10:40','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-68.00','-69','Inclusive','branch','Inventory','','','','',''),('416852830373822344',2262,'41685283032','3','1.00','200','retail','0','2023-05-28 17:10:36','','','','0','Cash',0.00,'200','','','4','','1','2023-05-28 14:10:40','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-69.00','-70','Inclusive','branch','Inventory','','','','',''),('416852835622222032',2263,'41685283561','11','1.00','280','retail','0','2023-05-28 17:19:21','','','','0','Cash',0.00,'280','','','4','','1','2023-05-28 14:19:26','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','61.00','60','Inclusive','branch','Inventory','','','','',''),('416852836178270832',2264,'41685283616','38','1.00','350','retail','0','2023-05-28 17:20:16','','','','0','Cash',0.00,'350','','','4','','1','2023-05-28 14:20:19','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-263.00','-264','Inclusive','branch','Inventory','','','','',''),('416852847562465352',2265,'41685284755','21','1.00','200','retail','0','2023-05-28 17:39:15','','','','0','Cash',0.00,'200','','','4','','1','2023-05-28 14:39:53','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-233.00','-234','Inclusive','branch','Inventory','','','','',''),('416852847604822444',2266,'41685284755','23','1.00','250','retail','0','2023-05-28 17:39:19','','','','0','Cash',0.00,'250','','','4','','1','2023-05-28 14:39:53','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-78.00','-79','Inclusive','branch','Inventory','','','','',''),('416852882163421300',2267,'41685288215','21','1.00','200','retail','0','2023-05-28 18:36:55','','','','0','Cash',0.00,'200','','','4','','1','2023-05-28 15:37:00','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-234.00','-235','Inclusive','branch','Inventory','','','','',''),('316852906020822034',2268,'31685290601','59','1.00','150','retail','0','2023-05-28 19:16:41','','','','100','Cash',0.00,'150','','','3','','1','2023-05-28 16:16:44','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Service','1110','4000','5500','',''),('316852906393223090',2269,'31685290638','59','1.00','150','retail','0','2023-05-28 19:17:18','','','','100','Cash',0.00,'150','','','3','','1','2023-05-28 16:17:22','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Service','1110','4000','5500','',''),('316852918258250832',2270,'31685291824','1','1.00','280','retail','0','2023-05-28 19:37:04','','','','0','Cash',0.00,'280','','','3','','1','2023-05-28 16:37:08','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-110.00','-111','Inclusive','branch','Inventory','','','','',''),('316852932832222032',2271,'31685293283','1','1.00','280','retail','0','2023-05-28 20:01:23','','','','0','Cash',0.00,'280','','','3','','1','2023-05-28 17:01:27','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-111.00','-112','Inclusive','branch','Inventory','','','','',''),('316852933043822334',2272,'31685293303','61','1.00','150','retail','0','2023-05-28 20:01:43','','','','100','Cash',0.00,'150','','','3','','1','2023-05-28 17:01:47','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Service','1110','4000','5500','',''),('416852966112661352',2273,'41685296610','3','1.00','200','retail','0','2023-05-28 20:56:50','','','','0','Cash',0.00,'200','','','4','','1','2023-05-28 17:56:54','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-70.00','-71','Inclusive','branch','Inventory','','','','',''),('416852966233022326',2274,'41685296622','3','1.00','200','retail','0','2023-05-28 20:57:02','','','','0','Cash',0.00,'200','','','4','','1','2023-05-28 17:57:06','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-71.00','-72','Inclusive','branch','Inventory','','','','',''),('416852979170202035',2275,'41685297916','11','1.00','280','retail','0','2023-05-28 21:18:36','','','','0','Cash',0.00,'280','','','4','','1','2023-05-28 18:18:40','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','60.00','59','Inclusive','branch','Inventory','','','','',''),('416853577588280832',2276,'41685357757','1','1.00','280','retail','0','2023-05-29 13:55:57','','','','0','Cash',0.00,'280','','','4','','1','2023-05-29 10:56:06','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-112.00','-113','Inclusive','branch','Inventory','','','','',''),('416853577638230832',2277,'41685357757','46','1.00','200','retail','0','2023-05-29 13:56:02','','','','0','Cash',0.00,'200','','','4','','1','2023-05-29 10:56:06','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','33.00','32','Inclusive','branch','Inventory','','','','',''),('416853726362222032',2278,'41685372635','38','1.00','350','retail','0','2023-05-29 18:03:55','','','','0','Cash',0.00,'350','','','4','','1','2023-05-29 15:04:00','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-264.00','-265','Inclusive','branch','Inventory','','','','',''),('416853726532222032',2279,'41685372652','19','1.00','200','retail','0','2023-05-29 18:04:12','','','','0','Cash',0.00,'200','','','4','','1','2023-05-29 15:04:17','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-5.00','-6','Inclusive','branch','Inventory','','','','',''),('416853737182361352',2280,'41685373717','58','1.00','30','retail','0','2023-05-29 18:21:57','','','','15','Cash',0.00,'30','','','4','','1','2023-05-29 15:22:01','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','52.00','51','Inclusive','branch','Service','1110','4000','5500','',''),('416853737442222032',2281,'41685373743','23','1.00','250','retail','0','2023-05-29 18:22:23','','','','0','Cash',0.00,'250','','','4','','1','2023-05-29 15:22:37','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-79.00','-80','Inclusive','branch','Inventory','','','','',''),('416853737543823344',2282,'41685373743','2','1.00','250','retail','0','2023-05-29 18:22:33','','','','0','Cash',0.00,'250','','','4','','1','2023-05-29 15:22:37','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-55.00','-56','Inclusive','branch','Inventory','','','','',''),('416853745950202035',2283,'41685374594','1','1.00','280','retail','0','2023-05-29 18:36:34','','','','0','Cash',0.00,'280','','','4','','1','2023-05-29 15:36:38','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-113.00','-114','Inclusive','branch','Inventory','','','','',''),('416853754480202035',2284,'41685375447','11','1.00','280','retail','0','2023-05-29 18:50:47','','','','0','Cash',0.00,'280','','','4','','1','2023-05-29 15:50:54','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','59.00','58','Inclusive','branch','Inventory','','','','',''),('416853766800202035',2285,'41685376679','21','1.00','200','retail','0','2023-05-29 19:11:19','','','','0','Cash',0.00,'200','','','4','','1','2023-05-29 16:11:23','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-235.00','-236','Inclusive','branch','Inventory','','','','',''),('416853811793421300',2286,'41685381178','20','1.00','200','retail','0','2023-05-29 20:26:18','','','','0','Cash',0.00,'200','','','4','','1','2023-05-29 17:26:26','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-76.00','-77','Inclusive','branch','Inventory','','','','',''),('416853811831823144',2287,'41685381178','20','1.00','200','retail','0','2023-05-29 20:26:22','','','','0','Cash',0.00,'200','','','4','','1','2023-05-29 17:26:26','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-77.00','-78','Inclusive','branch','Inventory','','','','',''),('416853841112222032',2288,'41685384110','21','1.00','200','retail','0','2023-05-29 21:15:10','','','','0','Cash',0.00,'200','','','4','','1','2023-05-29 18:15:20','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-236.00','-237','Inclusive','branch','Inventory','','','','',''),('416854292132961352',2289,'41685429212','1','1.00','280','retail','0','2023-05-30 09:46:52','','','','0','Cash',0.00,'280','','','4','','1','2023-05-30 06:47:05','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-114.00','-115','Inclusive','branch','Inventory','','','','',''),('416854317338230832',2290,'41685431732','59','1.00','150','retail','0','2023-05-30 10:28:52','','','','100','Cash',0.00,'150','','','4','','1','2023-05-30 07:28:57','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Service','1110','4000','5500','',''),('416854389003421300',2291,'41685438899','21','1.00','200','retail','0','2023-05-30 12:28:19','','','','0','Cash',0.00,'200','','','4','','1','2023-05-30 09:28:27','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-237.00','-238','Inclusive','branch','Inventory','','','','',''),('416854412472222032',2292,'41685441246','11','1.00','280','retail','0','2023-05-30 13:07:26','','','','0','Cash',0.00,'280','','','4','','1','2023-05-30 10:07:32','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','58.00','57','Inclusive','branch','Inventory','','','','',''),('416854497532222032',2293,'41685449752','4','1.00','150','retail','0','2023-05-30 15:29:12','','','','0','Cash',0.00,'150','','','4','','1','2023-05-30 12:29:26','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-25.00','-26','Inclusive','branch','Inventory','','','','',''),('316854520360202035',2294,'31685452035','56','1.00','400','retail','0','2023-05-30 16:07:15','','','','200','Cash',0.00,'400','','','3','','1','2023-05-30 13:08:01','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','20.00','19','Inclusive','branch','Service','1110','4000','5500','',''),('416854554945824544',2295,'41685455493','38','1.00','350','retail','0','2023-05-30 17:04:53','','','','0','Cash',0.00,'350','','','4','','1','2023-05-30 14:05:00','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-265.00','-266','Inclusive','branch','Inventory','','','','',''),('416854592502222032',2296,'41685459249','16','1.00','200','retail','0','2023-05-30 18:07:29','','','','0','Cash',0.00,'200','','','4','','1','2023-05-30 15:08:18','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-18.00','-19','Inclusive','branch','Inventory','','','','',''),('416854592940202035',2297,'41685459249','23','1.00','250','retail','0','2023-05-30 18:08:13','','','','0','Cash',0.00,'250','','','4','','1','2023-05-30 15:08:18','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-80.00','-81','Inclusive','branch','Inventory','','','','',''),('316854599714252432',2298,'31685459970','11','1.00','280','retail','0','2023-05-30 18:19:30','','','','0','Cash',0.00,'280','','','3','','1','2023-05-30 15:19:34','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','57.00','56','Inclusive','branch','Inventory','','','','',''),('316854605664262432',2299,'31685460565','52','1.00','150','retail','0','2023-05-30 18:29:25','','','','200','Cash',0.00,'150','','','3','','1','2023-05-30 15:29:29','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316854616663421300',2300,'31685461665','2','1.00','250','retail','0','2023-05-30 18:47:45','','','','0','Cash',0.00,'250','','','3','','1','2023-05-30 15:47:50','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-56.00','-57','Inclusive','branch','Inventory','','','','',''),('316854689418210832',2301,'31685468939','59','1.00','150','retail','0','2023-05-30 20:48:59','','','','100','Cash',0.00,'150','','','3','','1','2023-05-30 17:49:04','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Service','1110','4000','5500','',''),('316854740234824434',2302,'31685474022','22','1.00','250','retail','0','2023-05-30 22:13:42','','','','0','Cash',0.00,'250','','','3','','1','2023-05-30 19:13:45','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-28.00','-29','Inclusive','branch','Inventory','','','','',''),('316854758833421300',2303,'31685475882','61','1.00','150','retail','0','2023-05-30 22:44:42','','','','100','Cash',0.00,'150','','','3','','1','2023-05-30 19:44:58','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Service','1110','4000','5500','',''),('316854758894272432',2304,'31685475882','20','1.00','200','retail','0','2023-05-30 22:44:48','','','','0','Cash',0.00,'200','','','3','','1','2023-05-30 19:44:58','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-78.00','-79','Inclusive','branch','Inventory','','','','',''),('316854759354272432',2305,'31685475934','5','1.00','300','retail','0','2023-05-30 22:45:34','','','','0','Cash',0.00,'300','','','3','','1','2023-05-30 19:45:48','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-51.00','-52','Inclusive','branch','Inventory','','','','',''),('316854759588280832',2306,'31685475957','21','1.00','200','retail','0','2023-05-30 22:45:57','','','','0','Cash',0.00,'200','','','3','','1','2023-05-30 19:46:13','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-238.00','-239','Inclusive','branch','Inventory','','','','',''),('316855408042060352',2307,'31685540803','52','1.00','150','retail','0','2023-05-31 16:46:43','','','','200','Cash',0.00,'150','','','3','','1','2023-05-31 13:46:50','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316855430463421300',2308,'31685543045','59','1.00','150','retail','0','2023-05-31 17:24:05','','','','100','Cash',0.00,'150','','','3','','1','2023-05-31 14:24:12','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Service','1110','4000','5500','',''),('316855430932369352',2309,'31685543092','8','1.00','150','retail','0','2023-05-31 17:24:52','','','','0','Cash',0.00,'150','','','3','','1','2023-05-31 14:24:57','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-63.00','-64','Inclusive','branch','Inventory','','','','',''),('316855468366825634',2310,'31685546835','21','1.00','200','retail','0','2023-05-31 18:27:15','','','','0','Cash',0.00,'200','','','3','','1','2023-05-31 15:27:18','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-239.00','-240','Inclusive','branch','Inventory','','','','',''),('316855468620202035',2311,'31685546861','52','1.00','150','retail','0','2023-05-31 18:27:41','','','','200','Cash',0.00,'150','','','3','','1','2023-05-31 15:27:45','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316855468946825634',2312,'31685546893','59','1.00','150','retail','0','2023-05-31 18:28:13','','','','100','Cash',0.00,'150','','','3','','1','2023-05-31 15:28:17','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Service','1110','4000','5500','',''),('316855471292762352',2313,'31685547128','59','1.00','150','retail','0','2023-05-31 18:32:08','','','','100','Cash',0.00,'150','','','3','','1','2023-05-31 15:32:12','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Service','1110','4000','5500','',''),('316855501653022361',2314,'31685550164','20','1.00','200','retail','0','2023-05-31 19:22:44','','','','0','Cash',0.00,'200','','','3','','1','2023-05-31 16:22:54','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-79.00','-80','Inclusive','branch','Inventory','','','','',''),('316855521752825234',2315,'31685552174','59','1.00','150','retail','0','2023-05-31 19:56:14','','','','100','Cash',0.00,'150','','','3','','1','2023-05-31 16:56:19','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Service','1110','4000','5500','',''),('316855588183022318',2316,'31685558817','11','1.00','280','retail','0','2023-05-31 21:46:57','','','','0','Cash',0.00,'280','','','3','','1','2023-05-31 19:02:52','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','56.00','55','Inclusive','branch','Inventory','','','','',''),('316855588232222032',2317,'31685558817','11','1.00','280','retail','0','2023-05-31 21:47:02','','','','0','Cash',0.00,'280','','','3','','1','2023-05-31 19:02:52','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','55.00','54','Inclusive','branch','Inventory','','','','',''),('316855588303421300',2318,'31685558817','26','1.00','100','retail','0','2023-05-31 21:47:09','','','','0','Cash',0.00,'100','','','3','','1','2023-05-31 19:02:52','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-19.00','-20','Inclusive','branch','Inventory','','','','',''),('316855588388825834',2319,'31685558817','26','1.00','100','retail','0','2023-05-31 21:47:17','','','','0','Cash',0.00,'100','','','3','','1','2023-05-31 19:02:52','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-20.00','-21','Inclusive','branch','Inventory','','','','',''),('316855588654252432',2320,'31685558817','11','1.00','280','retail','0','2023-05-31 21:47:44','','','','0','Cash',0.00,'280','','','3','','1','2023-05-31 19:02:52','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','54.00','53','Inclusive','branch','Inventory','','','','',''),('316855600123421300',2321,'31685560011','4','1.00','150','retail','0','2023-05-31 22:06:51','','','','0','Cash',0.00,'150','','','3','','1','2023-05-31 19:07:00','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-26.00','-27','Inclusive','branch','Inventory','','','','',''),('316855620673022360',2322,'31685562066','11','1.00','280','retail','0','2023-05-31 22:41:06','','','','0','Cash',0.00,'280','','','3','','1','2023-05-31 19:41:19','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','53.00','52','Inclusive','branch','Inventory','','','','',''),('316855626852222032',2323,'31685562684','11','1.00','280','retail','0','2023-05-31 22:51:24','','','','0','Cash',0.00,'280','','','3','','1','2023-05-31 19:51:33','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','52.00','51','Inclusive','branch','Inventory','','','','',''),('316855627023421300',2324,'31685562701','38','1.00','350','retail','0','2023-05-31 22:51:41','','','','0','Cash',0.00,'350','','','3','','1','2023-05-31 19:52:03','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-266.00','-267','Inclusive','branch','Inventory','','','','',''),('316855634220202035',2325,'31685563421','38','1.00','350','retail','0','2023-05-31 23:03:41','','','','0','Cash',0.00,'350','','','3','','1','2023-05-31 20:03:45','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-267.00','-268','Inclusive','branch','Inventory','','','','',''),('316855639433421300',2326,'31685563942','38','1.00','350','retail','0','2023-05-31 23:12:22','','','','0','Cash',0.00,'350','','','3','','1','2023-05-31 20:12:35','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-268.00','-269','Inclusive','branch','Inventory','','','','',''),('316855640294262432',2327,'31685564028','21','1.00','200','retail','0','2023-05-31 23:13:48','','','','0','Cash',0.00,'200','','','3','','1','2023-05-31 20:13:58','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-240.00','-241','Inclusive','branch','Inventory','','','','',''),('316855640705310623',2328,'31685564069','21','1.00','200','retail','0','2023-05-31 23:14:29','','','','0','Cash',0.00,'200','','','3','','1','2023-05-31 20:14:38','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-241.00','-242','Inclusive','branch','Inventory','','','','',''),('316855644454825434',2329,'31685564444','20','1.00','200','retail','0','2023-05-31 23:20:44','','','','0','Cash',0.00,'200','','','3','','1','2023-05-31 20:20:48','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-80.00','-81','Inclusive','branch','Inventory','','','','',''),('316856065506826634',2330,'31685606549','1','1.00','280','retail','0','2023-06-01 11:02:29','','','','0','Cash',0.00,'280','','','3','','1','2023-06-01 08:02:39','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-115.00','-116','Inclusive','branch','Inventory','','','','',''),('316856175957826734',2331,'31685617594','1','1.00','280','retail','0','2023-06-01 14:06:34','','','','0','Cash',0.00,'280','','','3','','1','2023-06-01 11:06:40','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-116.00','-117','Inclusive','branch','Inventory','','','','',''),('316856176603322205',2332,'31685617659','7','1.00','200','retail','0','2023-06-01 14:07:39','','','','0','Cash',0.00,'200','','','3','','1','2023-06-01 11:07:47','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-99.00','-100','Inclusive','branch','Inventory','','','','',''),('316856180118826834',2333,'31685618010','59','1.00','150','retail','0','2023-06-01 14:13:30','','','','100','Cash',0.00,'150','','','3','','1','2023-06-01 11:13:36','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Service','1110','4000','5500','',''),('316856192272962352',2334,'31685619226','7','1.00','200','retail','0','2023-06-01 14:33:46','','','','0','Cash',0.00,'200','','','3','','1','2023-06-01 11:33:50','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-100.00','-101','Inclusive','branch','Inventory','','','','',''),('316856192588280832',2335,'31685619257','29','1.00','300','retail','0','2023-06-01 14:34:17','','','','0','Cash',0.00,'300','','','3','','1','2023-06-01 11:34:21','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-17.00','-18','Inclusive','branch','Inventory','','','','',''),('416856224050202035',2336,'41685622404','29','1.00','300','retail','0','2023-06-01 15:26:44','','','','0','Cash',0.00,'300','','','4','','1','2023-06-01 12:26:48','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-18.00','-19','Inclusive','branch','Inventory','','','','',''),('416856253178270832',2337,'41685625316','7','1.00','200','retail','0','2023-06-01 16:15:16','','','','0','Cash',0.00,'200','','','4','','1','2023-06-01 13:15:34','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-101.00','-102','Inclusive','branch','Inventory','','','','',''),('416856274727826744',2338,'41685627471','8','1.00','150','retail','0','2023-06-01 16:51:11','','','','0','Cash',0.00,'150','','','4','','1','2023-06-01 13:51:16','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-64.00','-65','Inclusive','branch','Inventory','','','','',''),('316856281332863352',2339,'31685628132','38','1.00','350','retail','0','2023-06-01 17:02:12','','','','0','Cash',0.00,'350','','','3','','1','2023-06-01 14:02:28','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-269.00','-270','Inclusive','branch','Inventory','','','','',''),('416856286063421300',2340,'41685628605','38','1.00','350','retail','0','2023-06-01 17:10:05','','','','0','Cash',0.00,'350','','','4','','1','2023-06-01 14:10:15','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-270.00','-271','Inclusive','branch','Inventory','','','','',''),('316856293040202035',2341,'31685629303','38','1.00','350','retail','0','2023-06-01 17:21:43','','','','0','Cash',0.00,'350','','','3','','1','2023-06-01 14:21:55','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-271.00','-272','Inclusive','branch','Inventory','','','','',''),('416856303310202035',2342,'41685630330','2','1.00','250','retail','0','2023-06-01 17:38:50','','','','0','Cash',0.00,'250','','','4','','1','2023-06-01 14:38:55','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-57.00','-58','Inclusive','branch','Inventory','','','','',''),('416856351398290832',2343,'41685635138','52','1.00','150','retail','0','2023-06-01 18:58:58','','','','200','Cash',0.00,'150','','','4','','1','2023-06-01 15:59:02','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416856351602222032',2344,'41685635159','16','1.00','200','retail','0','2023-06-01 18:59:19','','','','0','Cash',0.00,'200','','','4','','1','2023-06-01 15:59:29','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-19.00','-20','Inclusive','branch','Inventory','','','','',''),('416856351653421300',2345,'41685635159','62','1.00','200','retail','0','2023-06-01 18:59:24','','','','200','Cash',0.00,'200','','','4','','1','2023-06-01 15:59:29','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','28.00','27','Inclusive','branch','Inventory','1110','4000','5500','',''),('416856362638230832',2346,'41685636262','1','1.00','280','retail','0','2023-06-01 19:17:42','','','','0','Cash',0.00,'280','','','4','','1','2023-06-01 16:17:46','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-117.00','-118','Inclusive','branch','Inventory','','','','',''),('416856390544403385',2347,'41685639053','1','1.00','280','retail','0','2023-06-01 20:04:13','','','','0','Cash',0.00,'280','','','4','','1','2023-06-01 17:04:18','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-118.00','-119','Inclusive','branch','Inventory','','','','',''),('416856439012360352',2348,'41685643901','52','1.00','150','retail','0','2023-06-01 21:25:01','','','','200','Cash',0.00,'150','','','4','','1','2023-06-01 18:25:07','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416856442824242432',2349,'41685644281','38','1.00','350','retail','0','2023-06-01 21:31:21','','','','0','Cash',0.00,'350','','','4','','1','2023-06-01 18:31:37','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-272.00','-273','Inclusive','branch','Inventory','','','','',''),('416856443092460352',2350,'41685644308','5','1.00','300','retail','0','2023-06-01 21:31:48','','','','0','Cash',0.00,'300','','','4','','1','2023-06-01 18:32:31','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-52.00','-53','Inclusive','branch','Inventory','','','','',''),('416856444023421300',2351,'41685644402','53','1.00','200','retail','0','2023-06-01 21:33:22','','','','150','Cash',0.00,'200','','','4','','1','2023-06-01 18:33:38','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','47.00','46','Inclusive','branch','Inventory','1110','4000','5500','',''),('416856445968260832',2352,'41685644595','20','1.00','200','retail','0','2023-06-01 21:36:35','','','','0','Cash',0.00,'200','','','4','','1','2023-06-01 18:36:44','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-81.00','-82','Inclusive','branch','Inventory','','','','',''),('416856862092222032',2353,'41685686208','7','1.00','200','retail','0','2023-06-02 09:10:08','','','','0','Cash',0.00,'200','','','4','','1','2023-06-02 06:10:16','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-102.00','-103','Inclusive','branch','Inventory','','','','',''),('416856862126826644',2354,'41685686208','7','1.00','200','retail','0','2023-06-02 09:10:11','','','','0','Cash',0.00,'200','','','4','','1','2023-06-02 06:10:16','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-103.00','-104','Inclusive','branch','Inventory','','','','',''),('416856914682166352',2355,'41685691467','21','1.00','200','retail','0','2023-06-02 10:37:47','','','','0','Cash',0.00,'200','','','4','','1','2023-06-02 07:37:51','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-242.00','-243','Inclusive','branch','Inventory','','','','',''),('316857104324212432',2356,'31685710431','1','1.00','280','retail','0','2023-06-02 15:53:51','','','','0','Cash',0.00,'280','','','3','','1','2023-06-02 12:53:55','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-119.00','-120','Inclusive','branch','Inventory','','','','',''),('416857121222222032',2357,'41685712121','3','1.00','200','retail','0','2023-06-02 16:22:01','','','','0','Cash',0.00,'200','','','4','','1','2023-06-02 13:22:04','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-72.00','-73','Inclusive','branch','Inventory','','','','',''),('316857122162827234',2358,'31685712215','3','1.00','200','retail','0','2023-06-02 16:23:35','','','','0','Cash',0.00,'200','','','3','','1','2023-06-02 13:23:40','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-73.00','-74','Inclusive','branch','Inventory','','','','',''),('416857173547827744',2359,'41685717353','12','1.00','250','retail','0','2023-06-02 17:49:13','','','','0','Cash',0.00,'250','','','4','','1','2023-06-02 14:49:18','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-61.00','-62','Inclusive','branch','Inventory','','','','',''),('316857174240202035',2360,'31685717423','21','1.00','200','retail','0','2023-06-02 17:50:23','','','','0','Cash',0.00,'200','','','3','','1','2023-06-02 14:50:27','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-243.00','-244','Inclusive','branch','Inventory','','','','',''),('316857233202222032',2361,'31685723319','52','1.00','150','retail','0','2023-06-02 19:28:39','','','','200','Cash',0.00,'150','','','3','','1','2023-06-02 16:29:01','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316857261410202035',2362,'31685726141','3','1.00','200','retail','0','2023-06-02 20:15:41','','','','0','Cash',0.00,'200','','','3','','1','2023-06-02 17:15:45','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-74.00','-75','Inclusive','branch','Inventory','','','','',''),('316857263752222032',2363,'31685726374','59','1.00','150','retail','0','2023-06-02 20:19:34','','','','100','Cash',0.00,'150','','','3','','1','2023-06-02 17:19:41','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Service','1110','4000','5500','',''),('316857263798290832',2364,'31685726374','59','1.00','150','retail','0','2023-06-02 20:19:38','','','','100','Cash',0.00,'150','','','3','','1','2023-06-02 17:19:41','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Service','1110','4000','5500','',''),('416857269956827644',2365,'41685726994','59','1.00','150','retail','0','2023-06-02 20:29:54','','','','100','Cash',0.00,'150','','','4','','1','2023-06-02 17:29:58','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Service','1110','4000','5500','',''),('316857308628220832',2366,'31685730861','21','1.00','200','retail','0','2023-06-02 21:34:21','','','','0','Cash',0.00,'200','','','3','','1','2023-06-02 18:34:24','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-244.00','-245','Inclusive','branch','Inventory','','','','',''),('316857320293421300',2367,'31685732028','52','1.00','150','retail','0','2023-06-02 21:53:48','','','','200','Cash',0.00,'150','','','3','','1','2023-06-02 19:18:54','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316857357618210832',2368,'31685735760','7','1.00','200','retail','0','2023-06-02 22:56:00','','','','0','Cash',0.00,'200','','','3','','1','2023-06-02 19:56:05','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-104.00','-105','Inclusive','branch','Inventory','','','','',''),('316857373733022373',2369,'31685737372','11','1.00','280','retail','0','2023-06-02 23:22:52','','','','0','Cash',0.00,'280','','','3','','1','2023-06-02 20:23:07','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','51.00','50','Inclusive','branch','Inventory','','','','',''),('316857373770202035',2370,'31685737372','11','1.00','280','retail','0','2023-06-02 23:22:56','','','','0','Cash',0.00,'280','','','3','','1','2023-06-02 20:23:07','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Inventory','','','','',''),('316857374233421300',2371,'31685737422','5','1.00','300','retail','0','2023-06-02 23:23:42','','','','0','Cash',0.00,'300','','','3','','1','2023-06-02 20:24:12','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-53.00','-54','Inclusive','branch','Inventory','','','','',''),('316857374637310323',2372,'31685737462','5','1.00','300','retail','0','2023-06-02 23:24:22','','','','0','Cash',0.00,'300','','','3','','1','2023-06-02 20:24:39','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-54.00','-55','Inclusive','branch','Inventory','','','','',''),('416857796552965352',2373,'41685779654','20','1.00','200','retail','0','2023-06-03 11:07:34','','','','0','Cash',0.00,'200','','','4','','1','2023-06-03 08:07:39','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-82.00','-83','Inclusive','branch','Inventory','','','','',''),('416857810674282432',2374,'41685781066','7','1.00','200','retail','0','2023-06-03 11:31:06','','','','0','Cash',0.00,'200','','','4','','1','2023-06-03 08:31:12','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-105.00','-106','Inclusive','branch','Inventory','','','','',''),('416857823972827244',2375,'41685782396','21','1.00','200','retail','0','2023-06-03 11:53:16','','','','0','Cash',0.00,'200','','','4','','1','2023-06-03 08:53:31','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-245.00','-246','Inclusive','branch','Inventory','','','','',''),('416857834288280832',2376,'41685783427','1','1.00','280','retail','0','2023-06-03 12:10:27','','','','0','Cash',0.00,'280','','','4','','1','2023-06-03 09:10:55','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-120.00','-121','Inclusive','branch','Inventory','','','','',''),('416857834323421300',2377,'41685783427','7','1.00','200','retail','0','2023-06-03 12:10:31','','','','0','Cash',0.00,'200','','','4','','1','2023-06-03 09:10:55','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-106.00','-107','Inclusive','branch','Inventory','','','','',''),('416857834452222032',2378,'41685783427','58','1.00','30','retail','0','2023-06-03 12:10:44','','','','15','Cash',0.00,'30','','','4','','1','2023-06-03 09:10:55','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','53.00','52','Inclusive','branch','Service','1110','4000','5500','',''),('416857834483022344',2379,'41685783427','58','1.00','30','retail','0','2023-06-03 12:10:47','','','','15','Cash',0.00,'30','','','4','','1','2023-06-03 09:10:55','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','53.00','52','Inclusive','branch','Service','1110','4000','5500','',''),('416857869522222032',2380,'41685786951','1','1.00','280','retail','0','2023-06-03 13:09:11','','','','0','Cash',0.00,'280','','','4','','1','2023-06-03 10:09:15','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-121.00','-122','Inclusive','branch','Inventory','','','','',''),('416857949488280832',2381,'41685794947','62','1.00','200','retail','0','2023-06-03 15:22:27','','','','200','Cash',0.00,'200','','','4','','1','2023-06-03 12:22:42','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','27.00','26','Inclusive','branch','Inventory','1110','4000','5500','',''),('316857958453022348',2382,'31685795844','38','1.00','350','retail','0','2023-06-03 15:37:24','','','','0','Cash',0.00,'350','','','3','','1','2023-06-03 12:37:40','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-273.00','-274','Inclusive','branch','Inventory','','','','',''),('316857969783421300',2383,'31685796977','5','1.00','300','retail','0','2023-06-03 15:56:17','','','','0','Cash',0.00,'300','','','3','','1','2023-06-03 12:56:21','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-55.00','-56','Inclusive','branch','Inventory','','','','',''),('416857972492222032',2384,'41685797248','3','1.00','200','retail','0','2023-06-03 16:00:48','','','','0','Cash',0.00,'200','','','4','','1','2023-06-03 13:00:56','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-75.00','-76','Inclusive','branch','Inventory','','','','',''),('416857980853421300',2385,'41685798084','3','1.00','200','retail','0','2023-06-03 16:14:44','','','','0','Cash',0.00,'200','','','4','','1','2023-06-03 13:17:02','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-76.00','-77','Inclusive','branch','Inventory','','','','',''),('416858009974202432',2386,'41685800996','21','1.00','200','retail','0','2023-06-03 17:03:16','','','','0','Cash',0.00,'200','','','4','','1','2023-06-03 14:03:24','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-246.00','-247','Inclusive','branch','Inventory','','','','',''),('316858011102222032',2387,'31685801109','23','1.00','250','retail','0','2023-06-03 17:05:09','','','','0','Cash',0.00,'250','','','3','','1','2023-06-03 14:05:14','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-81.00','-82','Inclusive','branch','Inventory','','','','',''),('316858012030202035',2388,'31685801202','38','1.00','350','retail','0','2023-06-03 17:06:42','','','','0','Cash',0.00,'350','','','3','','1','2023-06-03 14:06:46','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-274.00','-275','Inclusive','branch','Inventory','','','','',''),('416858051922569352',2389,'41685805191','52','1.00','150','retail','0','2023-06-03 18:13:11','','','','200','Cash',0.00,'150','','','4','','1','2023-06-03 15:13:15','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316858058523421300',2390,'31685805851','4','1.00','150','retail','0','2023-06-03 18:24:11','','','','0','Cash',0.00,'150','','','3','','1','2023-06-03 15:24:26','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-27.00','-28','Inclusive','branch','Inventory','','','','',''),('316858058562565352',2391,'31685805851','4','1.00','150','retail','0','2023-06-03 18:24:15','','','','0','Cash',0.00,'150','','','3','','1','2023-06-03 15:24:26','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-28.00','-29','Inclusive','branch','Inventory','','','','',''),('316858087738828834',2392,'31685808772','59','1.00','150','retail','0','2023-06-03 19:12:52','','','','100','Cash',0.00,'150','','','3','','1','2023-06-03 16:12:58','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Service','1110','4000','5500','',''),('316858087762867352',2393,'31685808772','59','1.00','150','retail','0','2023-06-03 19:12:55','','','','100','Cash',0.00,'150','','','3','','1','2023-06-03 16:12:58','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Service','1110','4000','5500','',''),('416858123608200832',2394,'41685812359','1','1.00','280','retail','0','2023-06-03 20:12:39','','','','0','Cash',0.00,'280','','','4','','1','2023-06-03 17:12:43','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-122.00','-123','Inclusive','branch','Inventory','','','','',''),('416858123772222032',2395,'41685812376','7','1.00','200','retail','0','2023-06-03 20:12:57','','','','0','Cash',0.00,'200','','','4','','1','2023-06-03 17:13:01','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-107.00','-108','Inclusive','branch','Inventory','','','','',''),('316858149312222032',2396,'31685814930','3','1.00','200','retail','0','2023-06-03 20:55:30','','','','0','Cash',0.00,'200','','','3','','1','2023-06-03 17:55:51','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-77.00','-78','Inclusive','branch','Inventory','','','','',''),('316858155673421300',2397,'31685815566','23','1.00','250','retail','0','2023-06-03 21:06:06','','','','0','Cash',0.00,'250','','','3','','1','2023-06-03 18:06:10','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-82.00','-83','Inclusive','branch','Inventory','','','','',''),('316858200132061352',2398,'31685820012','1','1.00','280','retail','0','2023-06-03 22:20:12','','','','0','Cash',0.00,'280','','','3','','1','2023-06-03 19:20:17','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-123.00','-124','Inclusive','branch','Inventory','','','','',''),('316858216651828134',2399,'31685821665','5','1.00','300','retail','0','2023-06-03 22:47:45','','','','0','Cash',0.00,'300','','','3','','1','2023-06-03 19:57:53','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-56.00','-57','Inclusive','branch','Inventory','','','','',''),('316858223320202035',2400,'31685822331','1','1.00','280','retail','0','2023-06-03 22:58:51','','','','0','Cash',0.00,'280','','','3','','1','2023-06-03 19:59:20','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-124.00','-125','Inclusive','branch','Inventory','','','','',''),('316858225352263352',2401,'31685822534','1','1.00','280','retail','0','2023-06-03 23:02:14','','','','0','Cash',0.00,'280','','','3','','1','2023-06-03 20:02:26','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-125.00','-126','Inclusive','branch','Inventory','','','','',''),('316858770584272432',2402,'31685877057','4','1.00','150','retail','0','2023-06-04 14:10:57','','','','0','Cash',0.00,'150','','','3','','1','2023-06-04 11:11:19','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-29.00','-30','Inclusive','branch','Inventory','','','','',''),('316858770707828734',2403,'31685877057','4','1.00','150','retail','0','2023-06-04 14:11:09','','','','0','Cash',0.00,'150','','','3','','1','2023-06-04 11:11:19','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-30.00','-31','Inclusive','branch','Inventory','','','','',''),('316858771084272432',2404,'31685877107','59','1.00','150','retail','0','2023-06-04 14:11:47','','','','100','Cash',0.00,'150','','','3','','1','2023-06-04 11:11:55','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Service','1110','4000','5500','',''),('316858771118210832',2405,'31685877107','59','1.00','150','retail','0','2023-06-04 14:11:50','','','','100','Cash',0.00,'150','','','3','','1','2023-06-04 11:11:55','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Service','1110','4000','5500','',''),('316858848663421300',2406,'31685884865','17','1.00','200','retail','0','2023-06-04 16:21:07','','','','0','Cash',0.00,'200','','','3','','1','2023-06-04 13:21:12','','2','printed','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-33.00','-34','Inclusive','branch','Inventory','','','','',''),('416858849873837142',2408,'41685884986','17','1.00','200','retail','0','2023-06-04 16:23:06','','','','0','Cash',0.00,'200','','','4','','1','2023-06-04 14:29:56','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-34.00','-35','Inclusive','branch','Inventory','','','','',''),('416858890154282432',2409,'41685889014','1','1.00','280','retail','0','2023-06-04 17:30:14','','','','0','Cash',0.00,'280','','','4','','1','2023-06-04 14:30:25','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-126.00','-127','Inclusive','branch','Inventory','','','','',''),('416858890382222032',2410,'41685889037','5','1.00','300','retail','0','2023-06-04 17:30:37','','','','0','Cash',0.00,'300','','','4','','1','2023-06-04 14:30:52','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-57.00','-58','Inclusive','branch','Inventory','','','','',''),('416858917974292432',2411,'41685891796','52','1.00','150','retail','0','2023-06-04 18:16:36','','','','200','Cash',0.00,'150','','','4','','1','2023-06-04 15:16:41','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316858939372363352',2412,'31685893936','59','1.00','150','retail','0','2023-06-04 18:52:16','','','','100','Cash',0.00,'150','','','3','','1','2023-06-04 15:52:20','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Service','1110','4000','5500','',''),('416859480893421300',2413,'41685948089','20','1.00','200','retail','0','2023-06-05 09:54:49','','','','0','Cash',0.00,'200','','','4','','1','2023-06-05 06:54:52','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-83.00','-84','Inclusive','branch','Inventory','','','','',''),('416859524574252432',2414,'41685952456','23','1.00','250','retail','0','2023-06-05 11:07:36','','','','0','Cash',0.00,'250','','','4','','1','2023-06-05 08:07:40','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-83.00','-84','Inclusive','branch','Inventory','','','','',''),('416859573244252432',2415,'41685957323','23','1.00','250','retail','0','2023-06-05 12:28:43','','','','0','Cash',0.00,'250','','','4','','1','2023-06-05 09:28:53','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-84.00','-85','Inclusive','branch','Inventory','','','','',''),('416859661713022371',2416,'41685966170','11','1.00','280','retail','0','2023-06-05 14:56:10','','','','0','Cash',0.00,'280','','','4','','1','2023-06-05 11:56:36','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','49.00','48','Inclusive','branch','Inventory','','','','',''),('416859661852263223',2417,'41685966170','46','1.00','200','retail','0','2023-06-05 14:56:24','','','','0','Cash',0.00,'200','','','4','','1','2023-06-05 11:56:36','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','32.00','31','Inclusive','branch','Inventory','','','','',''),('416859666853835162',2418,'41685966684','21','1.00','200','retail','0','2023-06-05 15:04:44','','','','0','Cash',0.00,'200','','','4','','1','2023-06-05 12:04:52','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-247.00','-248','Inclusive','branch','Inventory','','','','',''),('416859677833022387',2419,'41685967782','21','1.00','200','retail','0','2023-06-05 15:23:02','','','','0','Cash',0.00,'200','','','4','','1','2023-06-05 12:23:06','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-248.00','-249','Inclusive','branch','Inventory','','','','',''),('416859774902769352',2420,'41685977489','12','1.00','250','retail','0','2023-06-05 18:04:49','','','','0','Cash',0.00,'250','','','4','','1','2023-06-05 15:04:53','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-62.00','-63','Inclusive','branch','Inventory','','','','',''),('416859781588829844',2421,'41685978157','52','1.00','150','retail','0','2023-06-05 18:15:57','','','','200','Cash',0.00,'150','','','4','','1','2023-06-05 15:16:02','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416859852405829544',2422,'41685985239','1','1.00','280','retail','0','2023-06-05 20:13:59','','','','0','Cash',0.00,'280','','','4','','1','2023-06-05 17:14:02','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-127.00','-128','Inclusive','branch','Inventory','','','','',''),('416860352592565362',2423,'41686035258','1','1.00','280','retail','0','2023-06-06 10:07:38','','','','0','Cash',0.00,'280','','','4','','1','2023-06-06 07:08:12','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-128.00','-129','Inclusive','branch','Inventory','','','','',''),('416860352633022362',2424,'41686035258','1','1.00','280','retail','0','2023-06-06 10:07:42','','','','0','Cash',0.00,'280','','','4','','1','2023-06-06 07:08:12','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-129.00','-130','Inclusive','branch','Inventory','','','','',''),('416860352712567362',2425,'41686035258','47','1.00','200','retail','0','2023-06-06 10:07:50','','','','0','Cash',0.00,'200','','','4','','1','2023-06-06 07:08:12','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','40.00','39','Inclusive','branch','Inventory','','','','',''),('416860352783022372',2426,'41686035258','47','1.00','200','retail','0','2023-06-06 10:07:58','','','','0','Cash',0.00,'200','','','4','','1','2023-06-06 07:08:12','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','39.00','38','Inclusive','branch','Inventory','','','','',''),('416860491842222032',2427,'41686049183','33','1.00','300','retail','0','2023-06-06 13:59:43','','','','0','Cash',0.00,'300','','','4','','1','2023-06-06 11:00:05','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','33.00','32','Inclusive','branch','Inventory','','','','',''),('416860491872222032',2428,'41686049183','33','1.00','300','retail','0','2023-06-06 13:59:46','','','','0','Cash',0.00,'300','','','4','','1','2023-06-06 11:00:05','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','32.00','31','Inclusive','branch','Inventory','','','','',''),('416860491989820944',2429,'41686049183','47','1.00','200','retail','0','2023-06-06 13:59:57','','','','0','Cash',0.00,'200','','','4','','1','2023-06-06 11:00:05','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','38.00','37','Inclusive','branch','Inventory','','','','',''),('416860492012960362',2430,'41686049183','47','1.00','200','retail','0','2023-06-06 14:00:00','','','','0','Cash',0.00,'200','','','4','','1','2023-06-06 11:00:05','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Inventory','','','','',''),('416860501024252432',2431,'41686050101','58','1.00','30','retail','0','2023-06-06 14:15:01','','','','15','Cash',0.00,'30','','','4','','1','2023-06-06 11:15:05','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','53.00','52','Inclusive','branch','Service','1110','4000','5500','',''),('316860603663022363',2432,'31686060365','17','1.00','200','retail','0','2023-06-06 17:06:05','','','','0','Cash',0.00,'200','','','3','','1','2023-06-06 14:06:09','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-35.00','-36','Inclusive','branch','Inventory','','','','',''),('316860603808200832',2433,'31686060379','21','1.00','200','retail','0','2023-06-06 17:06:19','','','','0','Cash',0.00,'200','','','3','','1','2023-06-06 14:06:23','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-249.00','-250','Inclusive','branch','Inventory','','','','',''),('416860616150202036',2434,'41686061614','1','1.00','280','retail','0','2023-06-06 17:26:55','','','','0','Cash',0.00,'280','','','4','','1','2023-06-06 14:27:04','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-130.00','-131','Inclusive','branch','Inventory','','','','',''),('316860663318210832',2435,'31686066330','52','1.00','150','retail','0','2023-06-06 18:45:30','','','','200','Cash',0.00,'150','','','3','','1','2023-06-06 15:45:35','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316860704578270832',2437,'31686070456','58','1.00','30','retail','0','2023-06-06 19:54:16','','','','15','Cash',0.00,'30','','','3','','1','2023-06-06 16:54:33','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','53.00','52','Inclusive','branch','Service','1110','4000','5500','',''),('316860771132761362',2438,'31686077112','38','1.00','350','retail','0','2023-06-06 21:45:12','','','','0','Cash',0.00,'350','','','3','','1','2023-06-06 18:45:53','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-276.00','-277','Inclusive','branch','Inventory','','','','',''),('316860771173022311',2439,'31686077112','58','1.00','30','retail','0','2023-06-06 21:45:16','','','','15','Cash',0.00,'30','','','3','','1','2023-06-06 18:45:53','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','53.00','52','Inclusive','branch','Service','1110','4000','5500','',''),('316860778303022338',2440,'31686077829','59','1.00','150','retail','0','2023-06-06 21:57:09','','','','100','Cash',0.00,'150','','','3','','1','2023-06-06 18:57:12','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Service','1110','4000','5500','',''),('316860703454272432',2441,'31686070345','38','1.00','350','retail','0','2023-06-06 19:52:25','','','','0','Cash',0.00,'350','','','3','','1','2023-06-06 18:57:46','','7','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-275.00','-276','Inclusive','branch','Inventory','','','','',''),('316860778634272432',2442,'31686070345','11','1.00','280','retail','0','2023-06-06 21:57:42','','','','0','Cash',0.00,'280','','','3','','1','2023-06-06 18:57:46','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','48.00','47','Inclusive','branch','Inventory','','','','',''),('316860801313421300',2443,'31686080130','11','1.00','280','retail','0','2023-06-06 22:35:30','','','','0','Cash',0.00,'280','','','3','','1','2023-06-06 19:35:41','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','47.00','46','Inclusive','branch','Inventory','','','','',''),('316860801683022361',2444,'31686080167','5','1.00','300','retail','0','2023-06-06 22:36:07','','','','0','Cash',0.00,'300','','','3','','1','2023-06-06 19:36:23','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-58.00','-59','Inclusive','branch','Inventory','','','','',''),('316861222062260362',2445,'31686122205','7','1.00','200','retail','0','2023-06-07 10:16:45','','','','0','Cash',0.00,'200','','','3','','1','2023-06-07 08:00:10','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-108.00','-109','Inclusive','branch','Inventory','','','','',''),('316861252663022362',2446,'31686125265','38','1.00','350','retail','0','2023-06-07 11:07:45','','','','0','Cash',0.00,'350','','','3','','1','2023-06-07 08:07:50','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-277.00','-278','Inclusive','branch','Inventory','','','','',''),('316861261380202036',2447,'31686126137','59','1.00','150','retail','0','2023-06-07 11:22:17','','','','100','Cash',0.00,'150','','','3','','1','2023-06-07 08:22:23','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Service','1110','4000','5500','',''),('316861261721310223',2448,'31686126171','59','1.00','150','retail','0','2023-06-07 11:22:51','','','','100','Cash',0.00,'150','','','3','','1','2023-06-07 08:22:54','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Service','1110','4000','5500','',''),('316861263162661362',2449,'31686126315','7','1.00','200','retail','0','2023-06-07 11:25:15','','','','0','Cash',0.00,'200','','','3','','1','2023-06-07 08:25:22','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-109.00','-110','Inclusive','branch','Inventory','','','','',''),('316861263633421300',2450,'31686126362','21','1.00','200','retail','0','2023-06-07 11:26:02','','','','0','Cash',0.00,'200','','','3','','1','2023-06-07 08:26:05','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-250.00','-251','Inclusive','branch','Inventory','','','','',''),('316861424503252223',2451,'31686142449','5','1.00','300','retail','0','2023-06-07 15:54:09','','','','0','Cash',0.00,'300','','','3','','1','2023-06-07 12:54:13','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-59.00','-60','Inclusive','branch','Inventory','','','','',''),('316861424882268362',2452,'31686142488','1','1.00','280','retail','0','2023-06-07 15:54:48','','','','0','Cash',0.00,'280','','','3','','1','2023-06-07 12:54:52','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-131.00','-132','Inclusive','branch','Inventory','','','','',''),('316861444864821434',2454,'31686144485','17','1.00','200','retail','0','2023-06-07 16:28:05','','','','0','Cash',0.00,'200','','','3','','1','2023-06-07 13:50:09','','2','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-36.00','-37','Inclusive','branch','Inventory','','','','',''),('316861458063421300',2455,'31686144485','17','1.00','200','retail','0','2023-06-07 16:50:05','','','','0','Cash',0.00,'200','','','3','','1','2023-06-07 13:50:09','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-37.00','-38','Inclusive','branch','Inventory','','','','',''),('316861482900202036',2456,'31686148272','11','1.00','280','retail','0','2023-06-07 17:31:29','','','','0','Cash',0.00,'280','','','3','','1','2023-06-07 14:31:39','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','45.00','44','Inclusive','branch','Inventory','','','','',''),('316861485728220832',2457,'31686148571','11','1.00','280','retail','0','2023-06-07 17:36:11','','','','0','Cash',0.00,'280','','','3','','1','2023-06-07 14:36:22','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','45.00','44','Inclusive','branch','Inventory','','','','',''),('316861514666405386',2458,'31686151465','1','1.00','280','retail','0','2023-06-07 18:24:25','','','','0','Cash',0.00,'280','','','3','','1','2023-06-07 15:24:29','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-132.00','-133','Inclusive','branch','Inventory','','','','',''),('316861526372222032',2459,'31686152636','22','1.00','250','retail','0','2023-06-07 18:43:56','','','','0','Cash',0.00,'250','','','3','','1','2023-06-07 15:43:59','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-29.00','-30','Inclusive','branch','Inventory','','','','',''),('316861552763022372',2460,'31686155275','52','1.00','150','retail','0','2023-06-07 19:27:55','','','','200','Cash',0.00,'150','','','3','','1','2023-06-07 16:28:01','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316861585063421300',2461,'31686158505','38','1.00','350','retail','0','2023-06-07 20:21:45','','','','0','Cash',0.00,'350','','','3','','1','2023-06-07 17:21:49','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-278.00','-279','Inclusive','branch','Inventory','','','','',''),('316861631728220832',2462,'31686163171','7','1.00','200','retail','0','2023-06-07 21:39:31','','','','0','Cash',0.00,'200','','','3','','1','2023-06-07 18:39:35','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-110.00','-111','Inclusive','branch','Inventory','','','','',''),('316861638354262432',2463,'31686163834','59','1.00','150','retail','0','2023-06-07 21:50:34','','','','100','Cash',0.00,'150','','','3','','1','2023-06-07 18:50:38','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Service','1110','4000','5500','',''),('316861650152561362',2464,'31686165014','48','1.00','20','retail','0','2023-06-07 22:10:14','','','','0','Cash',0.00,'20','','','3','','1','2023-06-07 19:11:11','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','384.00','383','Inclusive','branch','None Inventory','1110','4000','5500','',''),('316861664366821634',2465,'31686166435','1','1.00','280','retail','0','2023-06-07 22:33:55','','','','0','Cash',0.00,'280','','','3','','1','2023-06-07 19:34:07','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-133.00','-134','Inclusive','branch','Inventory','','','','',''),('316861664643421300',2466,'31686166463','21','1.00','200','retail','0','2023-06-07 22:34:23','','','','0','Cash',0.00,'200','','','3','','1','2023-06-07 19:34:34','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-251.00','-252','Inclusive','branch','Inventory','','','','',''),('316861664872222032',2467,'31686166486','5','1.00','300','retail','0','2023-06-07 22:34:46','','','','0','Cash',0.00,'300','','','3','','1','2023-06-07 19:34:55','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-60.00','-61','Inclusive','branch','Inventory','','','','',''),('316862235334222432',2468,'31686223532','59','1.00','150','retail','0','2023-06-08 14:25:32','','','','100','Cash',0.00,'150','','','3','','1','2023-06-08 11:25:37','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Service','1110','4000','5500','',''),('316862236004222432',2469,'31686223597','1','1.00','280','retail','0','2023-06-08 14:26:39','','','','0','Cash',0.00,'280','','','3','','1','2023-06-08 11:27:01','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-135.00','-136','Inclusive','branch','Inventory','','','','',''),('416862284424222432',2470,'41686228441','1','1.00','280','retail','0','2023-06-08 15:47:21','','','','0','Cash',0.00,'280','','','4','','1','2023-06-08 12:47:27','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-135.00','-136','Inclusive','branch','Inventory','','','','',''),('416862340622222032',2471,'41686234061','16','1.00','200','retail','0','2023-06-08 17:21:01','','','','0','Cash',0.00,'200','','','4','','1','2023-06-08 14:21:05','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-20.00','-21','Inclusive','branch','Inventory','','','','',''),('316862372502765362',2472,'31686237249','3','1.00','200','retail','0','2023-06-08 18:14:09','','','','0','Cash',0.00,'200','','','3','','1','2023-06-08 15:14:15','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-78.00','-79','Inclusive','branch','Inventory','','','','',''),('316862373787822734',2473,'31686237377','38','1.00','350','retail','0','2023-06-08 18:16:17','','','','0','Cash',0.00,'350','','','3','','1','2023-06-08 15:16:19','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-279.00','-280','Inclusive','branch','Inventory','','','','',''),('316862387420202036',2474,'31686238741','11','1.00','280','retail','0','2023-06-08 18:39:01','','','','0','Cash',0.00,'280','','','3','','1','2023-06-08 15:39:23','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','44.00','43','Inclusive','branch','Inventory','','','','',''),('316862387602222032',2475,'31686238741','46','1.00','200','retail','0','2023-06-08 18:39:19','','','','0','Cash',0.00,'200','','','3','','1','2023-06-08 15:39:23','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Inventory','','','','',''),('316862388193022318',2476,'31686238818','5','1.00','300','retail','0','2023-06-08 18:40:18','','','','0','Cash',0.00,'300','','','3','','1','2023-06-08 15:40:33','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-61.00','-62','Inclusive','branch','Inventory','','','','',''),('316862388848822834',2477,'31686238883','53','1.00','200','retail','0','2023-06-08 18:41:24','','','','150','Cash',0.00,'200','','','3','','1','2023-06-08 15:41:54','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','46.00','45','Inclusive','branch','Inventory','1110','4000','5500','',''),('316862388883421300',2478,'31686238883','31','1.00','200','retail','0','2023-06-08 18:41:27','','','','0','Cash',0.00,'200','','','3','','1','2023-06-08 15:41:54','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-14.00','-15','Inclusive','branch','Inventory','','','','',''),('316862388913421300',2479,'31686238883','31','1.00','200','retail','0','2023-06-08 18:41:30','','','','0','Cash',0.00,'200','','','3','','1','2023-06-08 15:41:54','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-15.00','-16','Inclusive','branch','Inventory','','','','',''),('316862389913421300',2480,'31686238990','1','1.00','280','retail','0','2023-06-08 18:43:10','','','','0','Cash',0.00,'280','','','3','','1','2023-06-08 15:43:28','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-136.00','-137','Inclusive','branch','Inventory','','','','',''),('416862391129822944',2481,'41686239111','7','1.00','200','retail','0','2023-06-08 18:45:11','','','','0','Cash',0.00,'200','','','4','','1','2023-06-08 15:45:17','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-111.00','-112','Inclusive','branch','Inventory','','','','',''),('416862391259822944',2482,'41686239124','38','1.00','350','retail','0','2023-06-08 18:45:24','','','','0','Cash',0.00,'350','','','4','','1','2023-06-08 15:45:27','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-280.00','-281','Inclusive','branch','Inventory','','','','',''),('416862421662222032',2483,'41686242165','6','1.00','280','retail','0','2023-06-08 19:36:05','','','','0','Cash',0.00,'280','','','4','','1','2023-06-08 16:36:09','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-23.00','-24','Inclusive','branch','Inventory','','','','',''),('416862451923022391',2484,'41686245191','1','1.00','280','retail','0','2023-06-08 20:26:31','','','','0','Cash',0.00,'280','','','4','','1','2023-06-08 17:26:39','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-137.00','-138','Inclusive','branch','Inventory','','','','',''),('416862477533022357',2485,'41686247753','1','1.00','280','retail','0','2023-06-08 21:09:13','','','','0','Cash',0.00,'280','','','4','','1','2023-06-08 18:09:19','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-138.00','-139','Inclusive','branch','Inventory','','','','',''),('416862477699404386',2486,'41686247768','11','1.00','280','retail','0','2023-06-08 21:09:28','','','','0','Cash',0.00,'280','','','4','','1','2023-06-08 18:09:31','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','43.00','42','Inclusive','branch','Inventory','','','','',''),('316862477992222032',2487,'31686247798','59','1.00','150','retail','0','2023-06-08 21:09:58','','','','100','Cash',0.00,'150','','','3','','1','2023-06-08 18:10:05','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Service','1110','4000','5500','',''),('316862478028220832',2488,'31686247798','59','1.00','150','retail','0','2023-06-08 21:10:01','','','','100','Cash',0.00,'150','','','3','','1','2023-06-08 18:10:05','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Service','1110','4000','5500','',''),('416862510318210832',2489,'41686251030','5','1.00','300','retail','0','2023-06-08 22:03:50','','','','0','Cash',0.00,'300','','','4','','1','2023-06-08 19:03:54','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-62.00','-63','Inclusive','branch','Inventory','','','','',''),('416862511448240832',2490,'41686251143','1','1.00','280','retail','0','2023-06-08 22:05:43','','','','0','Cash',0.00,'280','','','4','','1','2023-06-08 19:05:47','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-139.00','-140','Inclusive','branch','Inventory','','','','',''),('416862942703022372',2491,'41686294269','1','1.00','280','retail','0','2023-06-09 10:04:29','','','','0','Cash',0.00,'280','','','4','','1','2023-06-09 07:04:33','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-140.00','-141','Inclusive','branch','Inventory','','','','',''),('416863252413022342',2492,'41686325240','38','1.00','350','retail','0','2023-06-09 18:40:40','','','','0','Cash',0.00,'350','','','4','','1','2023-06-09 15:40:44','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-281.00','-282','Inclusive','branch','Inventory','','','','',''),('416863253222562362',2493,'41686325321','3','1.00','200','retail','0','2023-06-09 18:42:01','','','','0','Cash',0.00,'200','','','4','','1','2023-06-09 15:42:04','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-79.00','-80','Inclusive','branch','Inventory','','','','',''),('316863307490823034',2495,'31686330748','59','1.00','150','retail','0','2023-06-09 20:12:28','','','','100','Cash',0.00,'150','','','3','','1','2023-06-09 17:12:40','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Service','1110','4000','5500','',''),('316863307560202036',2496,'31686330748','59','1.00','150','retail','0','2023-06-09 20:12:35','','','','100','Cash',0.00,'150','','','3','','1','2023-06-09 17:12:40','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Service','1110','4000','5500','',''),('316863308003421300',2497,'31686330799','59','1.00','150','retail','0','2023-06-09 20:13:19','','','','100','Cash',0.00,'150','','','3','','1','2023-06-09 17:13:22','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Service','1110','4000','5500','',''),('316863253703022373',2498,'31686325369','38','1.00','350','retail','0','2023-06-09 18:42:49','','','','0','Cash',0.00,'350','','','3','','1','2023-06-09 17:52:22','','7','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-282.00','-283','Inclusive','branch','Inventory','','','','',''),('316863331304232432',2499,'31686325369','38','1.00','350','retail','0','2023-06-09 20:52:09','','','','0','Cash',0.00,'350','','','3','','1','2023-06-09 17:52:22','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-283.00','-284','Inclusive','branch','Inventory','','','','',''),('316863352153022312',2501,'31686335214','38','1.00','350','retail','0','2023-06-09 21:26:54','','','','0','Cash',0.00,'350','','','3','','1','2023-06-09 18:31:00','','7','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-284.00','-285','Inclusive','branch','Inventory','','','','',''),('316863354118210832',2502,'31686335214','38','1.00','350','retail','0','2023-06-09 21:30:10','','','','0','Cash',0.00,'350','','','3','','1','2023-06-09 18:31:00','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-285.00','-286','Inclusive','branch','Inventory','','','','',''),('316863380918823834',2503,'31686338090','38','1.00','350','retail','0','2023-06-09 22:14:50','','','','0','Cash',0.00,'350','','','3','','1','2023-06-09 19:14:54','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-286.00','-287','Inclusive','branch','Inventory','','','','',''),('416864118863022388',2504,'41686411885','23','1.00','250','retail','0','2023-06-10 18:44:45','','','','0','Cash',0.00,'250','','','4','','1','2023-06-10 15:44:59','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-85.00','-86','Inclusive','branch','Inventory','','','','',''),('416864201943421300',2505,'41686420193','21','1.00','200','retail','0','2023-06-10 21:03:13','','','','0','Cash',0.00,'200','','','4','','1','2023-06-10 18:03:23','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-252.00','-253','Inclusive','branch','Inventory','','','','',''),('416864201983022391',2506,'41686420193','21','1.00','200','retail','0','2023-06-10 21:03:18','','','','0','Cash',0.00,'200','','','4','','1','2023-06-10 18:03:23','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-253.00','-254','Inclusive','branch','Inventory','','','','',''),('416864203382063362',2507,'41686420337','38','1.00','350','retail','0','2023-06-10 21:05:37','','','','0','Cash',0.00,'350','','','4','','1','2023-06-10 18:05:42','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-287.00','-288','Inclusive','branch','Inventory','','','','',''),('316864203772067362',2508,'31686420376','59','1.00','150','retail','0','2023-06-10 21:06:16','','','','100','Cash',0.00,'150','','','3','','1','2023-06-10 18:07:00','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Service','1110','4000','5500','',''),('316864203808200832',2509,'31686420376','59','1.00','150','retail','0','2023-06-10 21:06:19','','','','100','Cash',0.00,'150','','','3','','1','2023-06-10 18:07:00','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Service','1110','4000','5500','',''),('316864204172061362',2510,'31686420376','4','1.00','150','retail','0','2023-06-10 21:06:56','','','','0','Cash',0.00,'150','','','3','','1','2023-06-10 18:07:00','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-31.00','-32','Inclusive','branch','Inventory','','','','',''),('316864210122161362',2511,'31686421011','2','1.00','250','retail','0','2023-06-10 21:16:51','','','','0','Cash',0.00,'250','','','3','','1','2023-06-10 18:17:00','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-58.00','-59','Inclusive','branch','Inventory','','','','',''),('316864210163421300',2512,'31686421011','1','1.00','280','retail','0','2023-06-10 21:16:55','','','','0','Cash',0.00,'280','','','3','','1','2023-06-10 18:17:00','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-141.00','-142','Inclusive','branch','Inventory','','','','',''),('316864210604222432',2513,'31686421059','2','1.00','250','retail','0','2023-06-10 21:17:39','','','','0','Cash',0.00,'250','','','3','','1','2023-06-10 18:17:43','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-59.00','-60','Inclusive','branch','Inventory','','','','',''),('316864210988280832',2514,'31686421097','59','1.00','150','retail','0','2023-06-10 21:18:17','','','','100','Cash',0.00,'150','','','3','','1','2023-06-10 18:18:22','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Service','1110','4000','5500','',''),('316864211311824134',2515,'31686421130','59','1.00','150','retail','0','2023-06-10 21:18:50','','','','100','Cash',0.00,'150','','','3','','1','2023-06-10 18:18:54','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Service','1110','4000','5500','',''),('316864219991824134',2516,'31686421998','3','1.00','200','retail','0','2023-06-10 21:33:18','','','','0','Cash',0.00,'200','','','3','','1','2023-06-10 18:33:22','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-80.00','-81','Inclusive','branch','Inventory','','','','',''),('316864255252222032',2517,'31686425524','38','1.00','350','retail','0','2023-06-10 22:32:04','','','','0','Cash',0.00,'350','','','3','','1','2023-06-10 19:32:09','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-288.00','-289','Inclusive','branch','Inventory','','','','',''),('316864278017824734',2518,'31686427800','11','1.00','280','retail','0','2023-06-10 23:10:00','','','','0','Cash',0.00,'280','','','3','','1','2023-06-10 20:10:12','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','42.00','41','Inclusive','branch','Inventory','','','','',''),('316864278264222432',2519,'31686427825','11','1.00','280','retail','0','2023-06-10 23:10:25','','','','0','Cash',0.00,'280','','','3','','1','2023-06-10 20:10:45','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','41.00','40','Inclusive','branch','Inventory','','','','',''),('316864278354222432',2520,'31686427825','1','1.00','280','retail','0','2023-06-10 23:10:34','','','','0','Cash',0.00,'280','','','3','','1','2023-06-10 20:10:45','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-142.00','-143','Inclusive','branch','Inventory','','','','',''),('316864279307824734',2521,'31686427929','1','1.00','280','retail','0','2023-06-10 23:12:09','','','','0','Cash',0.00,'280','','','3','','1','2023-06-10 20:12:17','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-143.00','-144','Inclusive','branch','Inventory','','','','',''),('316864279484222432',2522,'31686427947','21','1.00','200','retail','0','2023-06-10 23:12:27','','','','0','Cash',0.00,'200','','','3','','1','2023-06-10 20:12:46','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-254.00','-255','Inclusive','branch','Inventory','','','','',''),('316864735363022335',2523,'31686473535','7','1.00','200','retail','0','2023-06-11 11:52:16','','','','0','Cash',0.00,'200','','','3','','1','2023-06-11 08:52:18','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-112.00','-113','Inclusive','branch','Inventory','','','','',''),('316864743572222032',2524,'31686474356','59','1.00','150','retail','0','2023-06-11 12:05:56','','','','100','Cash',0.00,'150','','','3','','1','2023-06-11 09:06:05','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Service','1110','4000','5500','',''),('316864743743022373',2525,'31686474373','21','1.00','200','retail','0','2023-06-11 12:06:13','','','','0','Cash',0.00,'200','','','3','','1','2023-06-11 09:06:26','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-255.00','-256','Inclusive','branch','Inventory','','','','',''),('316864744603421300',2526,'31686474459','3','1.00','200','retail','0','2023-06-11 12:07:39','','','','0','Cash',0.00,'200','','','3','','1','2023-06-11 09:07:45','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-81.00','-82','Inclusive','branch','Inventory','','','','',''),('316864745234272432',2527,'31686474522','59','1.00','150','retail','0','2023-06-11 12:08:42','','','','100','Cash',0.00,'150','','','3','','1','2023-06-11 09:08:46','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Service','1110','4000','5500','',''),('316864797074272432',2528,'31686479706','59','1.00','150','retail','0','2023-06-11 13:35:06','','','','100','Cash',0.00,'150','','','3','','1','2023-06-11 10:35:11','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Service','1110','4000','5500','',''),('316864820072333302',2529,'31686482006','34','1.00','300','retail','0','2023-06-11 14:13:26','','','','0','Cash',0.00,'300','','','3','','1','2023-06-11 11:13:34','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-58.00','-59','Inclusive','branch','Inventory','','','','',''),('316864820114282432',2530,'31686482006','34','1.00','300','retail','0','2023-06-11 14:13:30','','','','0','Cash',0.00,'300','','','3','','1','2023-06-11 11:13:34','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-59.00','-60','Inclusive','branch','Inventory','','','','',''),('316864820548240832',2531,'31686482053','59','1.00','150','retail','0','2023-06-11 14:14:13','','','','100','Cash',0.00,'150','','','3','','1','2023-06-11 11:14:18','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Service','1110','4000','5500','',''),('416864895362963362',2532,'41686489535','60','1.00','100','retail','0','2023-06-11 16:18:55','','','','70','Cash',0.00,'100','','','4','','1','2023-06-11 13:18:59','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','21.00','20','Inclusive','branch','Inventory','1110','4000','5500','',''),('316864929133421300',2533,'31686492912','1','1.00','280','retail','0','2023-06-11 17:15:12','','','','0','Cash',0.00,'280','','','3','','1','2023-06-11 14:15:30','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-144.00','-145','Inclusive','branch','Inventory','','','','',''),('416864933483022343',2534,'41686493347','1','1.00','280','retail','0','2023-06-11 17:22:27','','','','0','Cash',0.00,'280','','','4','','1','2023-06-11 14:22:31','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-145.00','-146','Inclusive','branch','Inventory','','','','',''),('416864933863824344',2535,'41686493385','1','1.00','280','retail','0','2023-06-11 17:23:05','','','','0','Cash',0.00,'280','','','4','','1','2023-06-11 14:23:09','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-146.00','-147','Inclusive','branch','Inventory','','','','',''),('316864954523022354',2536,'31686495451','23','1.00','250','retail','0','2023-06-11 17:57:31','','','','0','Cash',0.00,'250','','','3','','1','2023-06-11 14:57:55','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-86.00','-87','Inclusive','branch','Inventory','','','','',''),('316864954583022354',2537,'31686495451','23','1.00','250','retail','0','2023-06-11 17:57:37','','','','0','Cash',0.00,'250','','','3','','1','2023-06-11 14:57:55','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-87.00','-88','Inclusive','branch','Inventory','','','','',''),('316864971438230832',2538,'31686497142','21','1.00','200','retail','0','2023-06-11 18:25:42','','','','0','Cash',0.00,'200','','','3','','1','2023-06-11 15:25:50','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-256.00','-257','Inclusive','branch','Inventory','','','','',''),('316864971462764362',2539,'31686497142','21','1.00','200','retail','0','2023-06-11 18:25:45','','','','0','Cash',0.00,'200','','','3','','1','2023-06-11 15:25:50','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-257.00','-258','Inclusive','branch','Inventory','','','','',''),('416864995008200832',2540,'41686499499','23','1.00','250','retail','0','2023-06-11 19:04:59','','','','0','Cash',0.00,'250','','','4','','1','2023-06-11 16:05:05','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-88.00','-89','Inclusive','branch','Inventory','','','','',''),('416865011983421300',2541,'41686501198','33','1.00','300','retail','0','2023-06-11 19:33:18','','','','0','Cash',0.00,'300','','','4','','1','2023-06-11 16:33:28','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Inventory','','','','',''),('416865013162161362',2542,'41686501312','5','1.00','300','retail','0','2023-06-11 19:35:15','','','','0','Cash',0.00,'300','','','4','','1','2023-06-11 16:35:40','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-64.00','-65','Inclusive','branch','Inventory','','','','',''),('416865013170202036',2543,'41686501312','5','1.00','300','retail','0','2023-06-11 19:35:17','','','','0','Cash',0.00,'300','','','4','','1','2023-06-11 16:35:40','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-65.00','-66','Inclusive','branch','Inventory','','','','',''),('416865076102761362',2544,'41686507609','4','1.00','150','retail','0','2023-06-11 21:20:09','','','','0','Cash',0.00,'150','','','4','','1','2023-06-11 18:20:13','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-32.00','-33','Inclusive','branch','Inventory','','','','',''),('416865111264212432',2545,'41686511125','4','1.00','150','retail','0','2023-06-11 22:18:45','','','','0','Cash',0.00,'150','','','4','','1','2023-06-11 19:18:48','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-33.00','-34','Inclusive','branch','Inventory','','','','',''),('416865126728220832',2546,'41686512671','1','1.00','280','retail','0','2023-06-11 22:44:31','','','','0','Cash',0.00,'280','','','4','','1','2023-06-11 19:44:34','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-147.00','-148','Inclusive','branch','Inventory','','','','',''),('416865548122420302',2547,'41686554811','1','1.00','280','retail','0','2023-06-12 10:26:51','','','','0','Cash',0.00,'280','','','4','','1','2023-06-12 07:26:55','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-148.00','-149','Inclusive','branch','Inventory','','','','',''),('416865551792567362',2548,'41686555178','21','1.00','200','retail','0','2023-06-12 10:32:58','','','','0','Cash',0.00,'200','','','4','','1','2023-06-12 07:33:02','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-258.00','-259','Inclusive','branch','Inventory','','','','',''),('416865557703022377',2549,'41686555769','11','1.00','280','retail','0','2023-06-12 10:42:49','','','','0','Cash',0.00,'280','','','4','','1','2023-06-12 07:43:03','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','40.00','39','Inclusive','branch','Inventory','','','','',''),('416865557798290832',2550,'41686555769','46','1.00','200','retail','0','2023-06-12 10:42:58','','','','0','Cash',0.00,'200','','','4','','1','2023-06-12 07:43:03','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Inventory','','','','',''),('416865577200202036',2551,'41686557719','61','1.00','150','retail','0','2023-06-12 11:15:19','','','','100','Cash',0.00,'150','','','4','','1','2023-06-12 08:15:32','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Service','1110','4000','5500','',''),('416865577280202036',2552,'41686557719','1','1.00','280','retail','0','2023-06-12 11:15:27','','','','0','Cash',0.00,'280','','','4','','1','2023-06-12 08:15:32','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-149.00','-150','Inclusive','branch','Inventory','','','','',''),('416865609420202036',2553,'41686560941','7','1.00','200','retail','0','2023-06-12 12:09:01','','','','0','Cash',0.00,'200','','','4','','1','2023-06-12 09:09:20','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-113.00','-114','Inclusive','branch','Inventory','','','','',''),('416865609452064362',2554,'41686560941','7','1.00','200','retail','0','2023-06-12 12:09:05','','','','0','Cash',0.00,'200','','','4','','1','2023-06-12 09:09:20','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-114.00','-115','Inclusive','branch','Inventory','','','','',''),('416865609493421300',2555,'41686560941','7','1.00','200','retail','0','2023-06-12 12:09:08','','','','0','Cash',0.00,'200','','','4','','1','2023-06-12 09:09:20','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-115.00','-116','Inclusive','branch','Inventory','','','','',''),('416865609573421300',2556,'41686560941','4','1.00','150','retail','0','2023-06-12 12:09:17','','','','0','Cash',0.00,'150','','','4','','1','2023-06-12 09:09:20','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-34.00','-35','Inclusive','branch','Inventory','','','','',''),('416865681998825844',2557,'41686568198','29','1.00','300','retail','0','2023-06-12 14:09:58','','','','0','Cash',0.00,'300','','','4','','1','2023-06-12 11:10:03','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-19.00','-20','Inclusive','branch','Inventory','','','','',''),('416865689083421300',2558,'41686568907','59','1.00','150','retail','0','2023-06-12 14:21:47','','','','100','Cash',0.00,'150','','','4','','1','2023-06-12 11:21:51','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Service','1110','4000','5500','',''),('416865694613421300',2559,'41686569461','8','1.00','150','retail','0','2023-06-12 14:31:01','','','','0','Cash',0.00,'150','','','4','','1','2023-06-12 11:31:05','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-65.00','-66','Inclusive','branch','Inventory','','','','',''),('416865742004272432',2560,'41686574199','17','1.00','200','retail','0','2023-06-12 15:49:59','','','','0','Cash',0.00,'200','','','4','','1','2023-06-12 12:50:05','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-38.00','-39','Inclusive','branch','Inventory','','','','',''),('416865757950253973',2561,'41686575794','1','1.00','280','retail','0','2023-06-12 16:16:34','','','','0','Cash',0.00,'280','','','4','','1','2023-06-12 13:16:40','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-150.00','-151','Inclusive','branch','Inventory','','','','',''),('416865793212962362',2562,'41686579320','59','1.00','150','retail','0','2023-06-12 17:15:20','','','','100','Cash',0.00,'150','','','4','','1','2023-06-12 14:15:27','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Service','1110','4000','5500','',''),('416865843060202036',2563,'41686584305','40','1.00','600','retail','0','2023-06-12 18:38:25','','','','0','Cash',0.00,'600','','','4','','1','2023-06-12 15:38:36','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-28.00','-29','Inclusive','branch','Inventory','','','','',''),('416865843133022313',2564,'41686584305','7','1.00','200','retail','0','2023-06-12 18:38:32','','','','0','Cash',0.00,'200','','','4','','1','2023-06-12 15:38:36','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-116.00','-117','Inclusive','branch','Inventory','','','','',''),('416865843292462362',2565,'41686584328','23','1.00','250','retail','0','2023-06-12 18:38:48','','','','0','Cash',0.00,'250','','','4','','1','2023-06-12 15:38:53','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-89.00','-90','Inclusive','branch','Inventory','','','','',''),('416865843764282432',2566,'41686584375','5','1.00','300','retail','0','2023-06-12 18:39:35','','','','0','Cash',0.00,'300','','','4','','1','2023-06-12 15:39:39','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-65.00','-66','Inclusive','branch','Inventory','','','','',''),('416865865130202036',2567,'41686586512','5','1.00','300','retail','0','2023-06-12 19:15:12','','','','0','Cash',0.00,'300','','','4','','1','2023-06-12 16:15:16','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-66.00','-67','Inclusive','branch','Inventory','','','','',''),('416865897679825944',2568,'41686589766','6','1.00','280','retail','0','2023-06-12 20:09:26','','','','0','Cash',0.00,'280','','','4','','1','2023-06-12 17:09:29','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-24.00','-25','Inclusive','branch','Inventory','','','','',''),('416865932473421300',2569,'41686593246','20','1.00','200','retail','0','2023-06-12 21:07:26','','','','0','Cash',0.00,'200','','','4','','1','2023-06-12 18:07:30','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-84.00','-85','Inclusive','branch','Inventory','','','','',''),('416866447840202036',2570,'41686644783','54','1.00','350','retail','0','2023-06-13 11:26:23','','','','200','Cash',0.00,'350','','','4','','1','2023-06-13 08:26:29','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Service','1110','4000','5500','',''),('416866452120202036',2571,'41686645211','11','1.00','280','retail','0','2023-06-13 11:33:31','','','','0','Cash',0.00,'280','','','4','','1','2023-06-13 08:33:35','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','39.00','38','Inclusive','branch','Inventory','','','','',''),('416866463678270832',2572,'41686646366','11','1.00','280','retail','0','2023-06-13 11:52:46','','','','0','Cash',0.00,'280','','','4','','1','2023-06-13 08:52:49','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','38.00','37','Inclusive','branch','Inventory','','','','',''),('416866463793421300',2573,'41686646378','17','1.00','200','retail','0','2023-06-13 11:52:58','','','','0','Cash',0.00,'200','','','4','','1','2023-06-13 08:53:02','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-39.00','-40','Inclusive','branch','Inventory','','','','',''),('416866496922969362',2574,'41686649691','21','1.00','200','retail','0','2023-06-13 12:48:11','','','','0','Cash',0.00,'200','','','4','','1','2023-06-13 09:48:14','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-259.00','-260','Inclusive','branch','Inventory','','','','',''),('416866521488280832',2575,'41686652147','21','1.00','200','retail','0','2023-06-13 13:29:07','','','','0','Cash',0.00,'200','','','4','','1','2023-06-13 10:29:25','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-260.00','-261','Inclusive','branch','Inventory','','','','',''),('416866557632222032',2576,'41686655762','11','1.00','280','retail','0','2023-06-13 14:29:22','','','','0','Cash',0.00,'280','','','4','','1','2023-06-13 11:29:26','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Inventory','','','','',''),('416866598364252432',2577,'41686659835','21','1.00','200','retail','0','2023-06-13 15:37:15','','','','0','Cash',0.00,'200','','','4','','1','2023-06-13 12:37:19','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-261.00','-262','Inclusive','branch','Inventory','','','','',''),('416866611991826144',2578,'41686661198','23','1.00','250','retail','0','2023-06-13 15:59:58','','','','0','Cash',0.00,'250','','','4','','1','2023-06-13 13:00:02','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-90.00','-91','Inclusive','branch','Inventory','','','','',''),('416866661966826644',2579,'41686666195','54','1.00','350','retail','0','2023-06-13 17:23:15','','','','200','Cash',0.00,'350','','','4','','1','2023-06-13 14:23:20','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Service','1110','4000','5500','',''),('316866663870202036',2581,'31686666386','5','1.00','300','retail','0','2023-06-13 17:26:26','','','','0','Cash',0.00,'300','','','3','','1','2023-06-13 14:27:38','','1','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-67.00','-68','Inclusive','branch','Inventory','','','','',''),('316866664534262432',2582,'31686666386','52','1.00','150','retail','0','2023-06-13 17:27:32','','','','200','Cash',0.00,'150','','','3','','1','2023-06-13 14:27:38','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416866690482222032',2583,'41686669047','12','1.00','250','retail','0','2023-06-13 18:10:47','','','','0','Cash',0.00,'250','','','4','','1','2023-06-13 15:10:53','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-63.00','-64','Inclusive','branch','Inventory','','','','',''),('316866696052960362',2584,'31686669604','8','1.00','150','retail','0','2023-06-13 18:20:04','','','','0','Cash',0.00,'150','','','3','','1','2023-06-13 15:20:45','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-66.00','-67','Inclusive','branch','Inventory','','','','',''),('316866700574272432',2585,'31686670057','1','1.00','280','retail','0','2023-06-13 18:27:37','','','','0','Cash',0.00,'280','','','3','','1','2023-06-13 15:27:43','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-151.00','-152','Inclusive','branch','Inventory','','','','',''),('316866715511826134',2587,'31686671550','23','1.00','250','retail','0','2023-06-13 18:52:30','','','','0','Cash',0.00,'250','','','3','','1','2023-06-13 15:53:47','','2','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-91.00','-92','Inclusive','branch','Inventory','','','','',''),('416866716142222032',2588,'31686671550','7','1.00','200','retail','0','2023-06-13 18:53:33','','','','0','Cash',0.00,'200','','','3','','1','2023-06-13 15:53:47','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-117.00','-118','Inclusive','branch','Inventory','','','','',''),('416866716244272432',2589,'31686671550','1','1.00','280','retail','0','2023-06-13 18:53:43','','','','0','Cash',0.00,'280','','','3','','1','2023-06-13 15:53:47','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-152.00','-153','Inclusive','branch','Inventory','','','','',''),('416866717702222032',2590,'41686671769','1','1.00','280','retail','0','2023-06-13 18:56:09','','','','0','Cash',0.00,'280','','','4','','1','2023-06-13 15:56:13','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-153.00','-154','Inclusive','branch','Inventory','','','','',''),('416866717878233723',2591,'41686671786','1','1.00','280','retail','0','2023-06-13 18:56:26','','','','0','Cash',0.00,'280','','','4','','1','2023-06-13 15:56:30','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-154.00','-155','Inclusive','branch','Inventory','','','','',''),('316866853794282432',2592,'31686685378','23','1.00','250','retail','0','2023-06-13 22:42:58','','','','0','Cash',0.00,'250','','','3','','1','2023-06-13 19:43:07','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-92.00','-93','Inclusive','branch','Inventory','','','','',''),('316866853838230832',2593,'31686685378','23','1.00','250','retail','0','2023-06-13 22:43:02','','','','0','Cash',0.00,'250','','','3','','1','2023-06-13 19:43:07','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-93.00','-94','Inclusive','branch','Inventory','','','','',''),('316867303723022373',2594,'31686730371','17','1.00','200','retail','0','2023-06-14 11:12:51','','','','0','Cash',0.00,'200','','','3','','1','2023-06-14 08:12:57','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-40.00','-41','Inclusive','branch','Inventory','','','','',''),('316867303864232432',2595,'31686730385','17','1.00','200','retail','0','2023-06-14 11:13:05','','','','0','Cash',0.00,'200','','','3','','1','2023-06-14 08:13:08','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-41.00','-42','Inclusive','branch','Inventory','','','','',''),('316867304042222032',2596,'31686730403','59','1.00','150','retail','0','2023-06-14 11:13:23','','','','100','Cash',0.00,'150','','','3','','1','2023-06-14 08:13:26','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Service','1110','4000','5500','',''),('316867304192061362',2597,'31686730418','21','1.00','200','retail','0','2023-06-14 11:13:39','','','','0','Cash',0.00,'200','','','3','','1','2023-06-14 08:13:48','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-262.00','-263','Inclusive','branch','Inventory','','','','',''),('316867304378270832',2598,'31686730436','21','1.00','200','retail','0','2023-06-14 11:13:56','','','','0','Cash',0.00,'200','','','3','','1','2023-06-14 08:14:10','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-263.00','-264','Inclusive','branch','Inventory','','','','',''),('316867351282222032',2599,'31686735127','11','1.00','280','retail','0','2023-06-14 12:32:07','','','','0','Cash',0.00,'280','','','3','','1','2023-06-14 09:32:41','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','36.00','35','Inclusive','branch','Inventory','','','','',''),('316867359913421300',2600,'31686735987','59','1.00','150','retail','0','2023-06-14 12:46:30','','','','100','Cash',0.00,'150','','','3','','1','2023-06-14 09:46:37','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Service','1110','4000','5500','',''),('316867407773022377',2601,'31686740776','59','1.00','150','retail','0','2023-06-14 14:06:16','','','','100','Cash',0.00,'150','','','3','','1','2023-06-14 11:06:26','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','38.00','37','Inclusive','branch','Service','1110','4000','5500','',''),('316867408153835102',2602,'31686740814','59','1.00','150','retail','0','2023-06-14 14:06:54','','','','100','Cash',0.00,'150','','','3','','1','2023-06-14 11:06:58','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','38.00','37','Inclusive','branch','Service','1110','4000','5500','',''),('316867493093022303',2603,'31686749308','59','1.00','150','retail','0','2023-06-14 16:28:28','','','','100','Cash',0.00,'150','','','3','','1','2023-06-14 13:28:31','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','38.00','37','Inclusive','branch','Service','1110','4000','5500','',''),('316867495272222032',2604,'31686749526','11','1.00','280','retail','0','2023-06-14 16:32:06','','','','0','Cash',0.00,'280','','','3','','1','2023-06-14 13:32:09','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','35.00','34','Inclusive','branch','Inventory','','','','',''),('316867521440202036',2606,'31686752143','21','1.00','200','retail','0','2023-06-14 17:15:44','','','','0','Cash',0.00,'200','','','3','','1','2023-06-14 14:26:11','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-264.00','-265','Inclusive','branch','Inventory','','','','',''),('316867521233421300',2607,'31686752122','1','1.00','280','retail','0','2023-06-14 17:15:22','','','','0','Cash',0.00,'280','','','3','','1','2023-06-14 14:26:54','','1','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-155.00','-156','Inclusive','branch','Inventory','','','','',''),('316867528092222032',2608,'31686752122','1','1.00','280','retail','0','2023-06-14 17:26:48','','','','0','Cash',0.00,'280','','','3','','1','2023-06-14 14:26:54','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-156.00','-157','Inclusive','branch','Inventory','','','','',''),('316867540018210832',2609,'31686754001','11','1.00','280','retail','0','2023-06-14 17:46:41','','','','0','Cash',0.00,'280','','','3','','1','2023-06-14 14:47:10','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','34.00','33','Inclusive','branch','Inventory','','','','',''),('316867540058250832',2610,'31686754001','11','1.00','280','retail','0','2023-06-14 17:46:44','','','','0','Cash',0.00,'280','','','3','','1','2023-06-14 14:47:10','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','33.00','32','Inclusive','branch','Inventory','','','','',''),('316867540124827434',2611,'31686754001','20','1.00','200','retail','0','2023-06-14 17:46:51','','','','0','Cash',0.00,'200','','','3','','1','2023-06-14 14:47:10','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-85.00','-86','Inclusive','branch','Inventory','','','','',''),('316867561772667362',2612,'31686756176','7','1.00','200','retail','0','2023-06-14 18:22:56','','','','0','Cash',0.00,'200','','','3','','1','2023-06-14 15:22:59','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-118.00','-119','Inclusive','branch','Inventory','','','','',''),('316867565450202036',2613,'31686756544','59','1.00','150','retail','0','2023-06-14 18:29:04','','','','100','Cash',0.00,'150','','','3','','1','2023-06-14 15:29:19','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','38.00','37','Inclusive','branch','Service','1110','4000','5500','',''),('316867598060202036',2614,'31686759805','38','1.00','350','retail','0','2023-06-14 19:23:25','','','','0','Cash',0.00,'350','','','3','','1','2023-06-14 16:23:28','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-289.00','-290','Inclusive','branch','Inventory','','','','',''),('316867627803022387',2615,'31686762779','3','1.00','200','retail','0','2023-06-14 20:12:59','','','','0','Cash',0.00,'200','','','3','','1','2023-06-14 17:13:07','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-82.00','-83','Inclusive','branch','Inventory','','','','',''),('316867665776827634',2616,'31686766576','7','1.00','200','retail','0','2023-06-14 21:16:16','','','','0','Cash',0.00,'200','','','3','','1','2023-06-14 18:16:42','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-119.00','-120','Inclusive','branch','Inventory','','','','',''),('316867665938230832',2617,'31686766576','21','1.00','200','retail','0','2023-06-14 21:16:32','','','','0','Cash',0.00,'200','','','3','','1','2023-06-14 18:16:42','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-265.00','-266','Inclusive','branch','Inventory','','','','',''),('316867667300202036',2618,'31686766729','59','1.00','150','retail','0','2023-06-14 21:18:49','','','','100','Cash',0.00,'150','','','3','','1','2023-06-14 18:18:57','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','38.00','37','Inclusive','branch','Service','1110','4000','5500','',''),('316867673997827734',2619,'31686767398','40','1.00','600','retail','0','2023-06-14 21:29:58','','','','0','Cash',0.00,'600','','','3','','1','2023-06-14 18:30:17','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-29.00','-30','Inclusive','branch','Inventory','','','','',''),('316867674117827734',2620,'31686767398','21','1.00','200','retail','0','2023-06-14 21:30:10','','','','0','Cash',0.00,'200','','','3','','1','2023-06-14 18:30:17','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-266.00','-267','Inclusive','branch','Inventory','','','','',''),('316867696002960362',2621,'31686769599','5','1.00','300','retail','0','2023-06-14 22:06:39','','','','0','Cash',0.00,'300','','','3','','1','2023-06-14 19:06:49','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-68.00','-69','Inclusive','branch','Inventory','','','','',''),('316867696399827934',2622,'31686769638','11','1.00','280','retail','0','2023-06-14 22:07:18','','','','0','Cash',0.00,'280','','','3','','1','2023-06-14 19:07:31','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','32.00','31','Inclusive','branch','Inventory','','','','',''),('316868295224222432',2623,'31686829521','59','1.00','150','retail','0','2023-06-15 14:45:21','','','','100','Cash',0.00,'150','','','3','','1','2023-06-15 11:45:24','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','38.00','37','Inclusive','branch','Service','1110','4000','5500','',''),('316868295469828934',2624,'31686829545','59','1.00','150','retail','0','2023-06-15 14:45:45','','','','100','Cash',0.00,'150','','','3','','1','2023-06-15 11:45:48','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','38.00','37','Inclusive','branch','Service','1110','4000','5500','',''),('316868295570202036',2625,'31686829556','59','1.00','150','retail','0','2023-06-15 14:45:56','','','','100','Cash',0.00,'150','','','3','','1','2023-06-15 11:46:00','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','38.00','37','Inclusive','branch','Service','1110','4000','5500','',''),('316868296564222432',2626,'31686829655','28','1.00','300','retail','0','2023-06-15 14:47:35','','','','0','Cash',0.00,'300','','','3','','1','2023-06-15 11:47:38','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-2.00','-3','Inclusive','branch','Inventory','','','','',''),('316868297403421300',2627,'31686829739','21','1.00','200','retail','0','2023-06-15 14:48:59','','','','0','Cash',0.00,'200','','','3','','1','2023-06-15 11:49:03','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-267.00','-268','Inclusive','branch','Inventory','','','','',''),('316868297514222432',2628,'31686829750','21','1.00','200','retail','0','2023-06-15 14:49:10','','','','0','Cash',0.00,'200','','','3','','1','2023-06-15 11:49:17','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-268.00','-269','Inclusive','branch','Inventory','','','','',''),('316868297549828934',2629,'31686829750','21','1.00','200','retail','0','2023-06-15 14:49:13','','','','0','Cash',0.00,'200','','','3','','1','2023-06-15 11:49:17','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-269.00','-270','Inclusive','branch','Inventory','','','','',''),('316868297680376242',2630,'31686829767','21','1.00','200','retail','0','2023-06-15 14:49:27','','','','0','Cash',0.00,'200','','','3','','1','2023-06-15 11:49:38','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-270.00','-271','Inclusive','branch','Inventory','','','','',''),('316868299739828934',2631,'31686829972','17','1.00','200','retail','0','2023-06-15 14:52:52','','','','0','Cash',0.00,'200','','','3','','1','2023-06-15 11:52:55','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-42.00','-43','Inclusive','branch','Inventory','','','','',''),('416868312104232432',2632,'41686831210','38','1.00','350','retail','0','2023-06-15 15:13:30','','','','0','Cash',0.00,'350','','','4','','1','2023-06-15 12:13:38','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-290.00','-291','Inclusive','branch','Inventory','','','','',''),('416868312153421300',2633,'41686831210','38','1.00','350','retail','0','2023-06-15 15:13:34','','','','0','Cash',0.00,'350','','','4','','1','2023-06-15 12:13:38','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-291.00','-292','Inclusive','branch','Inventory','','','','',''),('416868321882268362',2634,'41686832187','7','1.00','200','retail','0','2023-06-15 15:29:48','','','','0','Cash',0.00,'200','','','4','','1','2023-06-15 12:29:51','','1','printed','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-120.00','-121','Inclusive','branch','Inventory','','','','',''),('416868322002828244',2636,'41686832199','7','1.00','200','retail','0','2023-06-15 15:29:59','','','','0','Cash',0.00,'200','','','4','','1','2023-06-15 12:30:04','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-121.00','-122','Inclusive','branch','Inventory','','','','',''),('416868376813022386',2637,'41686837680','21','1.00','200','retail','0','2023-06-15 17:01:20','','','','0','Cash',0.00,'200','','','4','','1','2023-06-15 14:01:33','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-271.00','-272','Inclusive','branch','Inventory','','','','',''),('416868376882222032',2638,'41686837680','7','1.00','200','retail','0','2023-06-15 17:01:27','','','','0','Cash',0.00,'200','','','4','','1','2023-06-15 14:01:33','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-122.00','-123','Inclusive','branch','Inventory','','','','',''),('316868379928220832',2639,'31686837991','1','1.00','280','retail','0','2023-06-15 17:06:31','','','','0','Cash',0.00,'280','','','3','','1','2023-06-15 14:06:36','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-157.00','-158','Inclusive','branch','Inventory','','','','',''),('416868394482222032',2641,'41686839447','16','1.00','200','retail','0','2023-06-15 17:30:47','','','','0','Cash',0.00,'200','','','4','','1','2023-06-15 14:30:57','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-21.00','-22','Inclusive','branch','Inventory','','','','',''),('316868400542222032',2642,'31686840053','21','1.00','200','retail','0','2023-06-15 17:40:53','','','','0','Cash',0.00,'200','','','3','','1','2023-06-15 14:40:56','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-272.00','-273','Inclusive','branch','Inventory','','','','',''),('316868401673421300',2643,'31686840166','5','1.00','300','retail','0','2023-06-15 17:42:46','','','','0','Cash',0.00,'300','','','3','','1','2023-06-15 14:42:56','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-69.00','-70','Inclusive','branch','Inventory','','','','',''),('316868401902222032',2644,'31686840189','1','1.00','280','retail','0','2023-06-15 17:43:09','','','','0','Cash',0.00,'280','','','3','','1','2023-06-15 14:43:26','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-158.00','-159','Inclusive','branch','Inventory','','','','',''),('316868402228220832',2645,'31686840221','21','1.00','200','retail','0','2023-06-15 17:43:41','','','','0','Cash',0.00,'200','','','3','','1','2023-06-15 14:43:56','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-273.00','-274','Inclusive','branch','Inventory','','','','',''),('316868402702222032',2646,'31686840269','11','1.00','280','retail','0','2023-06-15 17:44:30','','','','0','Cash',0.00,'280','','','3','','1','2023-06-15 14:44:35','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Inventory','','','','',''),('416868454913022394',2647,'41686845491','21','1.00','200','retail','0','2023-06-15 19:11:31','','','','0','Cash',0.00,'200','','','4','','1','2023-06-15 16:11:35','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-274.00','-275','Inclusive','branch','Inventory','','','','',''),('416868394178270832',2648,'41686839416','38','1.00','350','retail','0','2023-06-15 17:30:16','','','','0','Cash',0.00,'350','','','4','','1','2023-06-15 16:28:54','','7','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-292.00','-293','Inclusive','branch','Inventory','','','','',''),('416868465323421300',2649,'41686839416','38','1.00','350','retail','0','2023-06-15 19:28:51','','','','0','Cash',0.00,'350','','','4','','1','2023-06-15 16:28:54','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-293.00','-294','Inclusive','branch','Inventory','','','','',''),('416868470342222032',2650,'41686847033','19','1.00','200','retail','0','2023-06-15 19:37:13','','','','0','Cash',0.00,'200','','','4','','1','2023-06-15 16:37:17','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-6.00','-7','Inclusive','branch','Inventory','','','','',''),('416868525498290832',2651,'41686852548','21','1.00','200','retail','0','2023-06-15 21:09:08','','','','0','Cash',0.00,'200','','','4','','1','2023-06-15 18:09:12','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-275.00','-276','Inclusive','branch','Inventory','','','','',''),('416868526213421300',2652,'41686852620','59','1.00','150','retail','0','2023-06-15 21:10:20','','','','100','Cash',0.00,'150','','','4','','1','2023-06-15 18:10:24','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','38.00','37','Inclusive','branch','Service','1110','4000','5500','',''),('416868561433421300',2653,'41686856142','38','1.00','350','retail','0','2023-06-15 22:09:02','','','','0','Cash',0.00,'350','','','4','','1','2023-06-15 19:09:05','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-294.00','-295','Inclusive','branch','Inventory','','','','',''),('416868561644252432',2654,'41686856164','61','1.00','150','retail','0','2023-06-15 22:09:24','','','','100','Cash',0.00,'150','','','4','','1','2023-06-15 19:11:31','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Service','1110','4000','5500','',''),('416868561692666362',2655,'41686856164','61','1.00','150','retail','0','2023-06-15 22:09:28','','','','100','Cash',0.00,'150','','','4','','1','2023-06-15 19:11:31','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Service','1110','4000','5500','',''),('416869051212562362',2656,'41686905120','1','1.00','280','retail','0','2023-06-16 11:45:20','','','','0','Cash',0.00,'280','','','4','','1','2023-06-16 08:46:17','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-159.00','-160','Inclusive','branch','Inventory','','','','',''),('416869051323421300',2657,'41686905120','1','1.00','280','retail','0','2023-06-16 11:45:31','','','','0','Cash',0.00,'280','','','4','','1','2023-06-16 08:46:17','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-160.00','-161','Inclusive','branch','Inventory','','','','',''),('416869052883421300',2658,'41686905287','21','1.00','200','retail','0','2023-06-16 11:48:07','','','','0','Cash',0.00,'200','','','4','','1','2023-06-16 08:48:11','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-276.00','-277','Inclusive','branch','Inventory','','','','',''),('416869060728220832',2659,'41686906071','59','1.00','150','retail','0','2023-06-16 12:01:11','','','','100','Cash',0.00,'150','','','4','','1','2023-06-16 09:01:15','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','38.00','37','Inclusive','branch','Service','1110','4000','5500','',''),('416869073720202036',2660,'41686907371','11','1.00','280','retail','0','2023-06-16 12:22:51','','','','0','Cash',0.00,'280','','','4','','1','2023-06-16 09:22:58','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Inventory','','','','',''),('416869096412222032',2661,'41686909641','12','1.00','250','retail','0','2023-06-16 13:00:41','','','','0','Cash',0.00,'250','','','4','','1','2023-06-16 10:00:52','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-64.00','-65','Inclusive','branch','Inventory','','','','',''),('416869096462222032',2662,'41686909641','8','1.00','150','retail','0','2023-06-16 13:00:45','','','','0','Cash',0.00,'150','','','4','','1','2023-06-16 10:00:52','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-67.00','-68','Inclusive','branch','Inventory','','','','',''),('416869096733421300',2663,'41686909672','38','1.00','350','retail','0','2023-06-16 13:01:12','','','','0','Cash',0.00,'350','','','4','','1','2023-06-16 10:01:15','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-295.00','-296','Inclusive','branch','Inventory','','','','',''),('416869119608200832',2664,'41686911958','21','1.00','200','retail','0','2023-06-16 13:39:18','','','','0','Cash',0.00,'200','','','4','','1','2023-06-16 10:39:23','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-277.00','-278','Inclusive','branch','Inventory','','','','',''),('416869198210202036',2665,'41686919820','29','1.00','300','retail','0','2023-06-16 15:50:20','','','','0','Cash',0.00,'300','','','4','','1','2023-06-16 12:50:24','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-20.00','-21','Inclusive','branch','Inventory','','','','',''),('316869245504829434',2666,'31686924549','20','1.00','200','retail','0','2023-06-16 17:09:09','','','','0','Cash',0.00,'200','','','3','','1','2023-06-16 14:09:44','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-86.00','-87','Inclusive','branch','Inventory','','','','',''),('316869250915829534',2667,'31686925090','38','1.00','350','retail','0','2023-06-16 17:18:10','','','','0','Cash',0.00,'350','','','3','','1','2023-06-16 14:18:14','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-296.00','-297','Inclusive','branch','Inventory','','','','',''),('416869251922569362',2668,'41686925192','4','1.00','150','retail','0','2023-06-16 17:19:52','','','','0','Cash',0.00,'150','','','4','','1','2023-06-16 14:19:57','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-35.00','-36','Inclusive','branch','Inventory','','','','',''),('316869274640202036',2669,'31686927463','38','1.00','350','retail','0','2023-06-16 17:57:43','','','','0','Cash',0.00,'350','','','3','','1','2023-06-16 14:58:02','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-297.00','-298','Inclusive','branch','Inventory','','','','',''),('316869302642222032',2670,'31686930264','59','1.00','150','retail','0','2023-06-16 18:44:24','','','','100','Cash',0.00,'150','','','3','','1','2023-06-16 15:44:32','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','38.00','37','Inclusive','branch','Service','1110','4000','5500','',''),('316869302684232432',2671,'31686930264','59','1.00','150','retail','0','2023-06-16 18:44:27','','','','100','Cash',0.00,'150','','','3','','1','2023-06-16 15:44:32','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','38.00','37','Inclusive','branch','Service','1110','4000','5500','',''),('316869319908200832',2672,'31686931989','3','1.00','200','retail','0','2023-06-16 19:13:09','','','','0','Cash',0.00,'200','','','3','','1','2023-06-16 16:13:13','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-83.00','-84','Inclusive','branch','Inventory','','','','',''),('316869353592222032',2673,'31686935358','38','1.00','350','retail','0','2023-06-16 20:09:18','','','','0','Cash',0.00,'350','','','3','','1','2023-06-16 17:09:23','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-298.00','-299','Inclusive','branch','Inventory','','','','',''),('316869365586829634',2674,'31686936556','21','1.00','200','retail','0','2023-06-16 20:29:16','','','','0','Cash',0.00,'200','','','3','','1','2023-06-16 17:29:19','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-278.00','-279','Inclusive','branch','Inventory','','','','',''),('316869393302963362',2675,'31686939329','59','1.00','150','retail','0','2023-06-16 21:15:29','','','','100','Cash',0.00,'150','','','3','','1','2023-06-16 18:15:39','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','38.00','37','Inclusive','branch','Service','1110','4000','5500','',''),('316869393340202036',2676,'31686939329','59','1.00','150','retail','0','2023-06-16 21:15:33','','','','100','Cash',0.00,'150','','','3','','1','2023-06-16 18:15:39','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','38.00','37','Inclusive','branch','Service','1110','4000','5500','',''),('316869394112961362',2677,'31686939410','23','1.00','250','retail','0','2023-06-16 21:16:50','','','','0','Cash',0.00,'250','','','3','','1','2023-06-16 18:16:56','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-94.00','-95','Inclusive','branch','Inventory','','','','',''),('316869404936446332',2678,'31686940492','59','1.00','150','retail','0','2023-06-16 21:34:52','','','','100','Cash',0.00,'150','','','3','','1','2023-06-16 18:34:57','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','38.00','37','Inclusive','branch','Service','1110','4000','5500','',''),('316869459225829534',2679,'31686945921','21','1.00','200','retail','0','2023-06-16 23:05:21','','','','0','Cash',0.00,'200','','','3','','1','2023-06-16 20:05:27','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-279.00','-280','Inclusive','branch','Inventory','','','','',''),('416869927833022387',2680,'41686992782','20','1.00','200','retail','0','2023-06-17 12:06:22','','','','0','Cash',0.00,'200','','','4','','1','2023-06-17 09:06:26','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-87.00','-88','Inclusive','branch','Inventory','','','','',''),('416869932002222032',2681,'41686993199','4','1.00','150','retail','0','2023-06-17 12:13:19','','','','0','Cash',0.00,'150','','','4','','1','2023-06-17 09:13:22','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-36.00','-37','Inclusive','branch','Inventory','','','','',''),('416869950565829544',2682,'41686995055','5','1.00','300','retail','0','2023-06-17 12:44:15','','','','0','Cash',0.00,'300','','','4','','1','2023-06-17 09:44:22','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-70.00','-71','Inclusive','branch','Inventory','','','','',''),('416869996514292432',2683,'41686999650','7','1.00','200','retail','0','2023-06-17 14:00:50','','','','0','Cash',0.00,'200','','','4','','1','2023-06-17 11:00:54','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-123.00','-124','Inclusive','branch','Inventory','','','','',''),('416869996712222032',2684,'41686999670','23','1.00','250','retail','0','2023-06-17 14:01:10','','','','0','Cash',0.00,'250','','','4','','1','2023-06-17 11:01:14','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-95.00','-96','Inclusive','branch','Inventory','','','','',''),('416870026752820244',2685,'41687002674','38','1.00','350','retail','0','2023-06-17 14:51:14','','','','0','Cash',0.00,'350','','','4','','1','2023-06-17 11:51:25','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-299.00','-300','Inclusive','branch','Inventory','','','','',''),('416870026782222032',2686,'41687002674','38','1.00','350','retail','0','2023-06-17 14:51:17','','','','0','Cash',0.00,'350','','','4','','1','2023-06-17 11:51:25','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-300.00','-301','Inclusive','branch','Inventory','','','','',''),('416870026812222032',2687,'41687002674','38','1.00','350','retail','0','2023-06-17 14:51:20','','','','0','Cash',0.00,'350','','','4','','1','2023-06-17 11:51:25','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-301.00','-302','Inclusive','branch','Inventory','','','','',''),('316870046402222032',2688,'31687004639','11','1.00','280','retail','0','2023-06-17 15:23:59','','','','0','Cash',0.00,'280','','','3','','1','2023-06-17 12:24:14','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','29.00','28','Inclusive','branch','Inventory','','','','',''),('416870121618210832',2690,'41687012160','38','1.00','350','retail','0','2023-06-17 17:29:20','','','','0','Cash',0.00,'350','','','4','','1','2023-06-17 14:29:23','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-302.00','-303','Inclusive','branch','Inventory','','','','',''),('416870125762820244',2691,'41687012575','7','1.00','200','retail','0','2023-06-17 17:36:15','','','','0','Cash',0.00,'200','','','4','','1','2023-06-17 14:36:20','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-124.00','-125','Inclusive','branch','Inventory','','','','',''),('416870125784212432',2692,'41687012575','7','1.00','200','retail','0','2023-06-17 17:36:17','','','','0','Cash',0.00,'200','','','4','','1','2023-06-17 14:36:20','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-125.00','-126','Inclusive','branch','Inventory','','','','',''),('416870126548240832',2693,'41687012653','7','1.00','200','retail','0','2023-06-17 17:37:33','','','','0','Cash',0.00,'200','','','4','','1','2023-06-17 14:37:41','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-126.00','-127','Inclusive','branch','Inventory','','','','',''),('316870121260202037',2694,'31687012125','1','1.00','280','retail','0','2023-06-17 17:28:45','','','','0','Cash',0.00,'280','','','3','','1','2023-06-17 14:40:45','','1','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-161.00','-162','Inclusive','branch','Inventory','','','','',''),('316870128412222032',2695,'31687012125','1','1.00','280','retail','0','2023-06-17 17:40:40','','','','0','Cash',0.00,'280','','','3','','1','2023-06-17 14:40:45','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-162.00','-163','Inclusive','branch','Inventory','','','','',''),('316870143324212432',2696,'31687014331','20','1.00','200','retail','0','2023-06-17 18:05:31','','','','0','Cash',0.00,'200','','','3','','1','2023-06-17 15:05:41','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-88.00','-89','Inclusive','branch','Inventory','','','','',''),('316870143384820434',2697,'31687014331','20','1.00','200','retail','0','2023-06-17 18:05:37','','','','0','Cash',0.00,'200','','','3','','1','2023-06-17 15:05:41','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-89.00','-90','Inclusive','branch','Inventory','','','','',''),('416870166613022366',2698,'41687016660','21','1.00','200','retail','0','2023-06-17 18:44:20','','','','0','Cash',0.00,'200','','','4','','1','2023-06-17 15:44:24','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-280.00','-281','Inclusive','branch','Inventory','','','','',''),('416870166740202037',2699,'41687016673','62','1.00','200','retail','0','2023-06-17 18:44:33','','','','200','Cash',0.00,'200','','','4','','1','2023-06-17 15:44:38','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','26.00','25','Inclusive','branch','Inventory','1110','4000','5500','',''),('416870166882668372',2700,'41687016687','5','1.00','300','retail','0','2023-06-17 18:44:47','','','','0','Cash',0.00,'300','','','4','','1','2023-06-17 15:44:50','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-71.00','-72','Inclusive','branch','Inventory','','','','',''),('416870169948240832',2701,'41687016993','20','1.00','200','retail','0','2023-06-17 18:49:54','','','','0','Cash',0.00,'200','','','4','','1','2023-06-17 15:49:57','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-90.00','-91','Inclusive','branch','Inventory','','','','',''),('316870171293421300',2702,'31687017128','38','1.00','350','retail','0','2023-06-17 18:52:08','','','','0','Cash',0.00,'350','','','3','','1','2023-06-17 15:52:21','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-303.00','-304','Inclusive','branch','Inventory','','','','',''),('316870205032222032',2703,'31687020502','38','1.00','350','retail','0','2023-06-17 19:48:22','','','','0','Cash',0.00,'350','','','3','','1','2023-06-17 16:48:30','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-304.00','-305','Inclusive','branch','Inventory','','','','',''),('316870205074222432',2704,'31687020502','38','1.00','350','retail','0','2023-06-17 19:48:26','','','','0','Cash',0.00,'350','','','3','','1','2023-06-17 16:48:30','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-305.00','-306','Inclusive','branch','Inventory','','','','',''),('316870245784222432',2705,'31687024577','20','1.00','200','retail','0','2023-06-17 20:56:17','','','','0','Cash',0.00,'200','','','3','','1','2023-06-17 17:56:24','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-91.00','-92','Inclusive','branch','Inventory','','','','',''),('316870245813421300',2706,'31687024577','20','1.00','200','retail','0','2023-06-17 20:56:20','','','','0','Cash',0.00,'200','','','3','','1','2023-06-17 17:56:24','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-92.00','-93','Inclusive','branch','Inventory','','','','',''),('316870250313421300',2707,'31687025030','38','1.00','350','retail','0','2023-06-17 21:03:50','','','','0','Cash',0.00,'350','','','3','','1','2023-06-17 18:03:53','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-306.00','-307','Inclusive','branch','Inventory','','','','',''),('316870305512065372',2708,'31687030550','20','1.00','200','retail','0','2023-06-17 22:35:50','','','','0','Cash',0.00,'200','','','3','','1','2023-06-17 19:36:09','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-93.00','-94','Inclusive','branch','Inventory','','','','',''),('316870306692066372',2709,'31687030667','1','1.00','280','retail','0','2023-06-17 22:37:47','','','','0','Cash',0.00,'280','','','3','','1','2023-06-17 19:37:58','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-163.00','-164','Inclusive','branch','Inventory','','','','',''),('316870306933022396',2710,'31687030692','21','1.00','200','retail','0','2023-06-17 22:38:12','','','','0','Cash',0.00,'200','','','3','','1','2023-06-17 19:38:31','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-281.00','-282','Inclusive','branch','Inventory','','','','',''),('316870307518210832',2711,'31687030750','21','1.00','200','retail','0','2023-06-17 22:39:10','','','','0','Cash',0.00,'200','','','3','','1','2023-06-17 19:39:21','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-282.00','-283','Inclusive','branch','Inventory','','','','',''),('316870767218210832',2712,'31687076720','54','1.00','350','retail','0','2023-06-18 11:25:21','','','','200','Cash',0.00,'350','','','3','','1','2023-06-18 08:25:25','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Service','1110','4000','5500','',''),('316870842410202037',2713,'31687084240','38','1.00','350','retail','0','2023-06-18 13:30:40','','','','0','Cash',0.00,'350','','','3','','1','2023-06-18 10:30:54','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-307.00','-308','Inclusive','branch','Inventory','','','','',''),('316870865613421300',2714,'31687086560','38','1.00','350','retail','0','2023-06-18 14:09:20','','','','0','Cash',0.00,'350','','','3','','1','2023-06-18 11:09:24','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-308.00','-309','Inclusive','branch','Inventory','','','','',''),('316870872232762372',2715,'31687087222','21','1.00','200','retail','0','2023-06-18 14:20:22','','','','0','Cash',0.00,'200','','','3','','1','2023-06-18 11:20:30','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-283.00','-284','Inclusive','branch','Inventory','','','','',''),('316870872270202037',2716,'31687087222','21','1.00','200','retail','0','2023-06-18 14:20:26','','','','0','Cash',0.00,'200','','','3','','1','2023-06-18 11:20:30','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-284.00','-285','Inclusive','branch','Inventory','','','','',''),('316870872763022372',2717,'31687087275','20','1.00','200','retail','0','2023-06-18 14:21:15','','','','0','Cash',0.00,'200','','','3','','1','2023-06-18 11:21:31','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-94.00','-95','Inclusive','branch','Inventory','','','','',''),('316870872882768372',2718,'31687087275','7','1.00','200','retail','0','2023-06-18 14:21:27','','','','0','Cash',0.00,'200','','','3','','1','2023-06-18 11:21:31','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-127.00','-128','Inclusive','branch','Inventory','','','','',''),('316870877723421300',2719,'31687087771','38','1.00','350','retail','0','2023-06-18 14:29:31','','','','0','Cash',0.00,'350','','','3','','1','2023-06-18 11:29:36','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-309.00','-310','Inclusive','branch','Inventory','','','','',''),('316870878913022398',2720,'31687087890','2','1.00','250','retail','0','2023-06-18 14:31:30','','','','0','Cash',0.00,'250','','','3','','1','2023-06-18 11:31:38','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-60.00','-61','Inclusive','branch','Inventory','','','','',''),('316870878950202037',2721,'31687087890','2','1.00','250','retail','0','2023-06-18 14:31:34','','','','0','Cash',0.00,'250','','','3','','1','2023-06-18 11:31:38','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-61.00','-62','Inclusive','branch','Inventory','','','','',''),('316870894354282432',2722,'31687089434','38','1.00','350','retail','0','2023-06-18 14:57:14','','','','0','Cash',0.00,'350','','','3','','1','2023-06-18 11:57:23','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-310.00','-311','Inclusive','branch','Inventory','','','','',''),('316870894404282432',2723,'31687089434','38','1.00','350','retail','0','2023-06-18 14:57:19','','','','0','Cash',0.00,'350','','','3','','1','2023-06-18 11:57:23','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-311.00','-312','Inclusive','branch','Inventory','','','','',''),('316870930893421300',2724,'31687093088','12','1.00','250','retail','0','2023-06-18 15:58:08','','','','0','Cash',0.00,'250','','','3','','1','2023-06-18 12:58:12','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-65.00','-66','Inclusive','branch','Inventory','','','','',''),('416870961942669372',2725,'41687096193','7','1.00','200','retail','0','2023-06-18 16:49:53','','','','0','Cash',0.00,'200','','','4','','1','2023-06-18 13:50:28','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-128.00','-129','Inclusive','branch','Inventory','','','','',''),('416870962232662372',2726,'41687096193','23','1.00','250','retail','0','2023-06-18 16:50:22','','','','0','Cash',0.00,'250','','','4','','1','2023-06-18 13:50:28','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-96.00','-97','Inclusive','branch','Inventory','','','','',''),('416870987153421300',2727,'41687098714','1','1.00','280','retail','0','2023-06-18 17:31:54','','','','0','Cash',0.00,'280','','','4','','1','2023-06-18 14:32:34','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-164.00','-165','Inclusive','branch','Inventory','','','','',''),('416870987228220832',2728,'41687098714','38','1.00','350','retail','0','2023-06-18 17:32:02','','','','0','Cash',0.00,'350','','','4','','1','2023-06-18 14:32:34','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-312.00','-313','Inclusive','branch','Inventory','','','','',''),('416870987763421300',2729,'41687098775','1','1.00','280','retail','0','2023-06-18 17:32:55','','','','0','Cash',0.00,'280','','','4','','1','2023-06-18 14:33:03','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-165.00','-166','Inclusive','branch','Inventory','','','','',''),('416870987792867372',2730,'41687098775','1','1.00','280','retail','0','2023-06-18 17:32:59','','','','0','Cash',0.00,'280','','','4','','1','2023-06-18 14:33:03','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-166.00','-167','Inclusive','branch','Inventory','','','','',''),('416871003634202432',2731,'41687100362','20','1.00','200','retail','0','2023-06-18 17:59:22','','','','0','Cash',0.00,'200','','','4','','1','2023-06-18 14:59:26','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-95.00','-96','Inclusive','branch','Inventory','','','','',''),('416871027533022357',2732,'41687102752','23','1.00','250','retail','0','2023-06-18 18:39:12','','','','0','Cash',0.00,'250','','','4','','1','2023-06-18 15:39:55','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-97.00','-98','Inclusive','branch','Inventory','','','','',''),('416871027922821244',2733,'41687102752','23','1.00','250','retail','0','2023-06-18 18:39:51','','','','0','Cash',0.00,'250','','','4','','1','2023-06-18 15:39:55','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-98.00','-99','Inclusive','branch','Inventory','','','','',''),('416871031158250832',2734,'41687103114','1','1.00','280','retail','0','2023-06-18 18:45:14','','','','0','Cash',0.00,'280','','','4','','1','2023-06-18 15:45:23','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-167.00','-168','Inclusive','branch','Inventory','','','','',''),('416871031324202432',2735,'41687103131','21','1.00','200','retail','0','2023-06-18 18:45:31','','','','0','Cash',0.00,'200','','','4','','1','2023-06-18 15:45:35','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-285.00','-286','Inclusive','branch','Inventory','','','','',''),('416871053903022393',2736,'41687105389','23','1.00','250','retail','0','2023-06-18 19:23:09','','','','0','Cash',0.00,'250','','','4','','1','2023-06-18 16:23:22','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-99.00','-100','Inclusive','branch','Inventory','','','','',''),('416871053933421300',2737,'41687105389','23','1.00','250','retail','0','2023-06-18 19:23:12','','','','0','Cash',0.00,'250','','','4','','1','2023-06-18 16:23:22','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-100.00','-101','Inclusive','branch','Inventory','','','','',''),('416871053963022393',2738,'41687105389','23','1.00','250','retail','0','2023-06-18 19:23:15','','','','0','Cash',0.00,'250','','','4','','1','2023-06-18 16:23:22','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-101.00','-102','Inclusive','branch','Inventory','','','','',''),('416871053982222032',2739,'41687105389','23','1.00','250','retail','0','2023-06-18 19:23:17','','','','0','Cash',0.00,'250','','','4','','1','2023-06-18 16:23:22','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-102.00','-103','Inclusive','branch','Inventory','','','','',''),('416871085858250832',2740,'41687108584','23','1.00','250','retail','0','2023-06-18 20:16:24','','','','0','Cash',0.00,'250','','','4','','1','2023-06-18 17:16:43','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-103.00','-104','Inclusive','branch','Inventory','','','','',''),('416871085918210832',2741,'41687108584','23','1.00','250','retail','0','2023-06-18 20:16:30','','','','0','Cash',0.00,'250','','','4','','1','2023-06-18 17:16:43','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-104.00','-105','Inclusive','branch','Inventory','','','','',''),('416871085940202037',2742,'41687108584','23','1.00','250','retail','0','2023-06-18 20:16:33','','','','0','Cash',0.00,'250','','','4','','1','2023-06-18 17:16:43','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-105.00','-106','Inclusive','branch','Inventory','','','','',''),('416871085982869372',2743,'41687108584','23','1.00','250','retail','0','2023-06-18 20:16:37','','','','0','Cash',0.00,'250','','','4','','1','2023-06-18 17:16:43','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-106.00','-107','Inclusive','branch','Inventory','','','','',''),('416871098029821944',2744,'41687109801','23','1.00','250','retail','0','2023-06-18 20:36:41','','','','0','Cash',0.00,'250','','','4','','1','2023-06-18 17:36:44','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-107.00','-108','Inclusive','branch','Inventory','','','','',''),('416871121843022381',2745,'41687112183','8','1.00','150','retail','0','2023-06-18 21:16:23','','','','0','Cash',0.00,'150','','','4','','1','2023-06-18 18:16:28','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-68.00','-69','Inclusive','branch','Inventory','','','','',''),('416871122102222032',2746,'41687112209','38','1.00','350','retail','0','2023-06-18 21:16:49','','','','0','Cash',0.00,'350','','','4','','1','2023-06-18 18:16:54','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-313.00','-314','Inclusive','branch','Inventory','','','','',''),('416871709018210832',2747,'41687170900','38','1.00','350','retail','0','2023-06-19 13:35:00','','','','0','Cash',0.00,'350','','','4','','1','2023-06-19 10:35:05','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-314.00','-315','Inclusive','branch','Inventory','','','','',''),('416871868984282432',2748,'41687186897','34','1.00','300','retail','0','2023-06-19 18:01:37','','','','0','Cash',0.00,'300','','','4','','1','2023-06-19 15:01:40','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-60.00','-61','Inclusive','branch','Inventory','','','','',''),('416871876964223060',2749,'41687187695','1','1.00','280','retail','0','2023-06-19 18:14:55','','','','0','Cash',0.00,'280','','','4','','1','2023-06-19 15:15:06','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-168.00','-169','Inclusive','branch','Inventory','','','','',''),('416871877033022307',2750,'41687187695','20','1.00','200','retail','0','2023-06-19 18:15:02','','','','0','Cash',0.00,'200','','','4','','1','2023-06-19 15:15:06','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-96.00','-97','Inclusive','branch','Inventory','','','','',''),('416871877184282432',2751,'41687187717','55','1.00','200','retail','0','2023-06-19 18:15:17','','','','150','Cash',0.00,'200','','','4','','1','2023-06-19 15:15:35','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','296.00','295','Inclusive','branch','Inventory','1110','4000','5500','',''),('416871877318210832',2752,'41687187717','60','1.00','100','retail','0','2023-06-19 18:15:30','','','','70','Cash',0.00,'100','','','4','','1','2023-06-19 15:15:35','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','20.00','19','Inclusive','branch','Inventory','1110','4000','5500','',''),('416871913238230832',2753,'41687191322','38','1.00','350','retail','0','2023-06-19 19:15:22','','','','0','Cash',0.00,'350','','','4','','1','2023-06-19 16:15:27','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-315.00','-316','Inclusive','branch','Inventory','','','','',''),('416871915432222032',2754,'41687191542','21','1.00','200','retail','0','2023-06-19 19:19:02','','','','0','Cash',0.00,'200','','','4','','1','2023-06-19 16:19:10','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-286.00','-287','Inclusive','branch','Inventory','','','','',''),('416871915472164372',2755,'41687191542','52','1.00','150','retail','0','2023-06-19 19:19:07','','','','200','Cash',0.00,'150','','','4','','1','2023-06-19 16:19:10','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416871935193421300',2756,'41687193518','23','1.00','250','retail','0','2023-06-19 19:51:58','','','','0','Cash',0.00,'250','','','4','','1','2023-06-19 16:52:06','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-108.00','-109','Inclusive','branch','Inventory','','','','',''),('416871935232362372',2757,'41687193518','23','1.00','250','retail','0','2023-06-19 19:52:02','','','','0','Cash',0.00,'250','','','4','','1','2023-06-19 16:52:06','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-109.00','-110','Inclusive','branch','Inventory','','','','',''),('416871949624821444',2758,'41687194961','52','1.00','150','retail','0','2023-06-19 20:16:01','','','','200','Cash',0.00,'150','','','4','','1','2023-06-19 17:16:05','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416872466532704336',2759,'41687246652','2','1.00','250','retail','0','2023-06-20 10:37:32','','','','0','Cash',0.00,'250','','','4','','1','2023-06-20 07:38:09','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-62.00','-63','Inclusive','branch','Inventory','','','','',''),('416872466598290832',2760,'41687246652','2','1.00','250','retail','0','2023-06-20 10:37:38','','','','0','Cash',0.00,'250','','','4','','1','2023-06-20 07:38:09','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-63.00','-64','Inclusive','branch','Inventory','','','','',''),('416872466692310423',2761,'41687246652','46','1.00','200','retail','0','2023-06-20 10:37:48','','','','0','Cash',0.00,'200','','','4','','1','2023-06-20 07:38:09','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','29.00','28','Inclusive','branch','Inventory','','','','',''),('416872466723022376',2762,'41687246652','46','1.00','200','retail','0','2023-06-20 10:37:51','','','','0','Cash',0.00,'200','','','4','','1','2023-06-20 07:38:09','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','28.00','27','Inclusive','branch','Inventory','','','','',''),('416872511050202037',2763,'41687251105','29','1.00','300','retail','0','2023-06-20 11:51:45','','','','0','Cash',0.00,'300','','','4','','1','2023-06-20 08:52:02','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-21.00','-22','Inclusive','branch','Inventory','','','','',''),('416872511190202037',2764,'41687251105','20','1.00','200','retail','0','2023-06-20 11:51:58','','','','0','Cash',0.00,'200','','','4','','1','2023-06-20 08:52:02','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-97.00','-98','Inclusive','branch','Inventory','','','','',''),('416872534130202037',2765,'41687253412','23','1.00','250','retail','0','2023-06-20 12:30:12','','','','0','Cash',0.00,'250','','','4','','1','2023-06-20 09:30:20','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-110.00','-111','Inclusive','branch','Inventory','','','','',''),('416872534153822344',2766,'41687253412','23','1.00','250','retail','0','2023-06-20 12:30:14','','','','0','Cash',0.00,'250','','','4','','1','2023-06-20 09:30:20','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-111.00','-112','Inclusive','branch','Inventory','','','','',''),('416872534172222032',2767,'41687253412','23','1.00','250','retail','0','2023-06-20 12:30:16','','','','0','Cash',0.00,'250','','','4','','1','2023-06-20 09:30:20','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-112.00','-113','Inclusive','branch','Inventory','','','','',''),('416872534183421300',2768,'41687253412','23','1.00','250','retail','0','2023-06-20 12:30:18','','','','0','Cash',0.00,'250','','','4','','1','2023-06-20 09:30:20','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-113.00','-114','Inclusive','branch','Inventory','','','','',''),('416872534433822344',2769,'41687253442','24','1.00','100','retail','0','2023-06-20 12:30:42','','','','0','Cash',0.00,'100','','','4','','1','2023-06-20 09:30:47','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-17.00','-18','Inclusive','branch','Inventory','','','','',''),('416872544230202037',2770,'41687254422','20','1.00','200','retail','0','2023-06-20 12:47:02','','','','0','Cash',0.00,'200','','','4','','1','2023-06-20 09:47:06','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-98.00','-99','Inclusive','branch','Inventory','','','','',''),('416872554020202037',2771,'41687255401','38','1.00','350','retail','0','2023-06-20 13:03:21','','','','0','Cash',0.00,'350','','','4','','1','2023-06-20 10:03:24','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-316.00','-317','Inclusive','branch','Inventory','','','','',''),('416872565952669372',2772,'41687256594','21','1.00','200','retail','0','2023-06-20 13:23:14','','','','0','Cash',0.00,'200','','','4','','1','2023-06-20 10:23:25','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-287.00','-288','Inclusive','branch','Inventory','','','','',''),('416872565993421300',2773,'41687256594','21','1.00','200','retail','0','2023-06-20 13:23:18','','','','0','Cash',0.00,'200','','','4','','1','2023-06-20 10:23:25','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-288.00','-289','Inclusive','branch','Inventory','','','','',''),('416872571814252432',2774,'41687257180','5','1.00','300','retail','0','2023-06-20 13:33:00','','','','0','Cash',0.00,'300','','','4','','1','2023-06-20 10:33:12','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-72.00','-73','Inclusive','branch','Inventory','','','','',''),('416872571882222032',2775,'41687257180','46','1.00','200','retail','0','2023-06-20 13:33:07','','','','0','Cash',0.00,'200','','','4','','1','2023-06-20 10:33:12','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','27.00','26','Inclusive','branch','Inventory','','','','',''),('416872596774252432',2776,'41687259676','21','1.00','200','retail','0','2023-06-20 14:14:36','','','','0','Cash',0.00,'200','','','4','','1','2023-06-20 11:14:44','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-289.00','-290','Inclusive','branch','Inventory','','','','',''),('416872596812968372',2777,'41687259676','21','1.00','200','retail','0','2023-06-20 14:14:40','','','','0','Cash',0.00,'200','','','4','','1','2023-06-20 11:14:44','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-290.00','-291','Inclusive','branch','Inventory','','','','',''),('416872605782222032',2778,'41687260577','23','1.00','250','retail','0','2023-06-20 14:29:37','','','','0','Cash',0.00,'250','','','4','','1','2023-06-20 11:29:42','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-114.00','-115','Inclusive','branch','Inventory','','','','',''),('316872638524262432',2779,'31687263851','7','1.00','200','retail','0','2023-06-20 15:24:11','','','','0','Cash',0.00,'200','','','3','','1','2023-06-20 12:24:29','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-129.00','-130','Inclusive','branch','Inventory','','','','',''),('316872638913022398',2780,'31687263890','12','1.00','250','retail','0','2023-06-20 15:24:50','','','','0','Cash',0.00,'250','','','3','','1','2023-06-20 12:24:55','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-66.00','-67','Inclusive','branch','Inventory','','','','',''),('316872649838230832',2781,'31687264982','21','1.00','200','retail','0','2023-06-20 15:43:02','','','','0','Cash',0.00,'200','','','3','','1','2023-06-20 12:44:11','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-291.00','-292','Inclusive','branch','Inventory','','','','',''),('316872650213022320',2782,'31687264982','7','1.00','200','retail','0','2023-06-20 15:43:41','','','','0','Cash',0.00,'200','','','3','','1','2023-06-20 12:44:11','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-130.00','-131','Inclusive','branch','Inventory','','','','',''),('316872678470202037',2783,'31687267846','20','1.00','200','retail','0','2023-06-20 16:30:46','','','','0','Cash',0.00,'200','','','3','','1','2023-06-20 13:30:51','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-99.00','-100','Inclusive','branch','Inventory','','','','',''),('416872678763421300',2784,'41687267875','21','1.00','200','retail','0','2023-06-20 16:31:15','','','','0','Cash',0.00,'200','','','4','','1','2023-06-20 13:31:21','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-292.00','-293','Inclusive','branch','Inventory','','','','',''),('316872706703421300',2785,'31687270669','38','1.00','350','retail','0','2023-06-20 17:17:49','','','','0','Cash',0.00,'350','','','3','','1','2023-06-20 14:18:29','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-317.00','-318','Inclusive','branch','Inventory','','','','',''),('316872706744272432',2786,'31687270669','38','1.00','350','retail','0','2023-06-20 17:17:53','','','','0','Cash',0.00,'350','','','3','','1','2023-06-20 14:18:29','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-318.00','-319','Inclusive','branch','Inventory','','','','',''),('316872794909822934',2787,'31687279489','38','1.00','350','retail','0','2023-06-20 19:44:49','','','','0','Cash',0.00,'350','','','3','','1','2023-06-20 16:45:07','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-319.00','-320','Inclusive','branch','Inventory','','','','',''),('316872828513421300',2788,'31687282850','38','1.00','350','retail','0','2023-06-20 20:40:50','','','','0','Cash',0.00,'350','','','3','','1','2023-06-20 17:40:57','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-320.00','-321','Inclusive','branch','Inventory','','','','',''),('316872828553421300',2789,'31687282850','38','1.00','350','retail','0','2023-06-20 20:40:54','','','','0','Cash',0.00,'350','','','3','','1','2023-06-20 17:40:57','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-321.00','-322','Inclusive','branch','Inventory','','','','',''),('316872884133421300',2790,'31687288412','38','1.00','350','retail','0','2023-06-20 22:13:32','','','','0','Cash',0.00,'350','','','3','','1','2023-06-20 19:13:43','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-322.00','-323','Inclusive','branch','Inventory','','','','',''),('316872884192861372',2791,'31687288412','38','1.00','350','retail','0','2023-06-20 22:13:38','','','','0','Cash',0.00,'350','','','3','','1','2023-06-20 19:13:43','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-323.00','-324','Inclusive','branch','Inventory','','','','',''),('316872901522222032',2792,'31687290151','21','1.00','200','retail','0','2023-06-20 22:42:31','','','','0','Cash',0.00,'200','','','3','','1','2023-06-20 19:42:58','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-293.00','-294','Inclusive','branch','Inventory','','','','',''),('316872901670822034',2793,'31687290151','8','1.00','150','retail','0','2023-06-20 22:42:46','','','','0','Cash',0.00,'150','','','3','','1','2023-06-20 19:42:58','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-69.00','-70','Inclusive','branch','Inventory','','','','',''),('316872901940202037',2794,'31687290193','21','1.00','200','retail','0','2023-06-20 22:43:13','','','','0','Cash',0.00,'200','','','3','','1','2023-06-20 19:43:23','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-294.00','-295','Inclusive','branch','Inventory','','','','',''),('316872902193022312',2795,'31687290218','12','1.00','250','retail','0','2023-06-20 22:43:38','','','','0','Cash',0.00,'250','','','3','','1','2023-06-20 19:43:50','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-67.00','-68','Inclusive','branch','Inventory','','','','',''),('316873425073421300',2796,'31687342506','21','1.00','200','retail','0','2023-06-21 13:15:06','','','','0','Cash',0.00,'200','','','3','','1','2023-06-21 10:15:10','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-295.00','-296','Inclusive','branch','Inventory','','','','',''),('316873486778270832',2797,'31687348676','38','1.00','350','retail','0','2023-06-21 14:57:56','','','','0','Cash',0.00,'350','','','3','','1','2023-06-21 11:58:07','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-324.00','-325','Inclusive','branch','Inventory','','','','',''),('316873486808823834',2798,'31687348676','38','1.00','350','retail','0','2023-06-21 14:57:59','','','','0','Cash',0.00,'350','','','3','','1','2023-06-21 11:58:07','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-325.00','-326','Inclusive','branch','Inventory','','','','',''),('316873537220202037',2799,'31687353721','12','1.00','250','retail','0','2023-06-21 16:22:01','','','','0','Cash',0.00,'250','','','3','','1','2023-06-21 13:22:04','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-68.00','-69','Inclusive','branch','Inventory','','','','',''),('316873589698823834',2800,'31687358968','1','1.00','280','retail','0','2023-06-21 17:49:28','','','','0','Cash',0.00,'280','','','3','','1','2023-06-21 14:49:31','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-169.00','-170','Inclusive','branch','Inventory','','','','',''),('316873667524262432',2802,'31687366751','20','1.00','200','retail','0','2023-06-21 19:59:11','','','','0','Cash',0.00,'200','','','3','','1','2023-06-21 16:59:18','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-100.00','-101','Inclusive','branch','Inventory','','','','',''),('316873631782367372',2803,'31687363177','4','1.00','150','retail','0','2023-06-21 18:59:37','','','','0','Cash',0.00,'150','','','3','','1','2023-06-21 17:01:29','','1','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-37.00','-38','Inclusive','branch','Inventory','','','','',''),('316873668853421300',2804,'31687363177','4','1.00','150','retail','0','2023-06-21 20:01:24','','','','0','Cash',0.00,'150','','','3','','1','2023-06-21 17:01:29','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-38.00','-39','Inclusive','branch','Inventory','','','','',''),('316873727373421300',2805,'31687372736','1','1.00','280','retail','0','2023-06-21 21:38:56','','','','0','Cash',0.00,'280','','','3','','1','2023-06-21 18:39:11','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-170.00','-171','Inclusive','branch','Inventory','','','','',''),('316873727463421300',2806,'31687372736','5','1.00','300','retail','0','2023-06-21 21:39:05','','','','0','Cash',0.00,'300','','','3','','1','2023-06-21 18:39:11','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-73.00','-74','Inclusive','branch','Inventory','','','','',''),('316874310183022310',2807,'31687431017','23','1.00','250','retail','0','2023-06-22 13:50:17','','','','0','Cash',0.00,'250','','','3','','1','2023-06-22 10:51:45','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-115.00','-116','Inclusive','branch','Inventory','','','','',''),('316874310342163372',2808,'31687431017','45','1.00','350','retail','0','2023-06-22 13:50:33','','','','0','Cash',0.00,'350','','','3','','1','2023-06-22 10:51:45','','9','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','25.00','24','Inclusive','branch','Inventory','','','','',''),('316874310463022340',2809,'31687431017','44','1.00','500','retail','0','2023-06-22 13:50:45','','','','0','Cash',0.00,'500','','','3','','1','2023-06-22 10:51:45','','9','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','22.00','21','Inclusive','branch','Inventory','','','','',''),('316874310722332777',2810,'31687431017','34','1.00','300','retail','0','2023-06-22 13:51:11','','','','0','Cash',0.00,'300','','','3','','1','2023-06-22 10:51:45','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-61.00','-62','Inclusive','branch','Inventory','','','','',''),('316874310998290832',2811,'31687431017','47','1.00','200','retail','0','2023-06-22 13:51:38','','','','0','Cash',0.00,'200','','','3','','1','2023-06-22 10:51:45','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','36.00','35','Inclusive','branch','Inventory','','','','',''),('316874311660202037',2812,'31687431165','7','1.00','200','retail','0','2023-06-22 13:52:45','','','','0','Cash',0.00,'200','','','3','','1','2023-06-22 10:52:49','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-131.00','-132','Inclusive','branch','Inventory','','','','',''),('416874421250202037',2813,'41687442123','21','1.00','200','retail','0','2023-06-22 16:55:24','','','','0','Cash',0.00,'200','','','4','','1','2023-06-22 13:55:45','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-296.00','-297','Inclusive','branch','Inventory','','','','',''),('416874421333421300',2814,'41687442123','21','1.00','200','retail','0','2023-06-22 16:55:32','','','','0','Cash',0.00,'200','','','4','','1','2023-06-22 13:55:45','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-297.00','-298','Inclusive','branch','Inventory','','','','',''),('416874421363022331',2815,'41687442123','21','1.00','200','retail','0','2023-06-22 16:55:35','','','','0','Cash',0.00,'200','','','4','','1','2023-06-22 13:55:45','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-298.00','-299','Inclusive','branch','Inventory','','','','',''),('316874431443421300',2816,'31687443143','21','1.00','200','retail','0','2023-06-22 17:12:23','','','','0','Cash',0.00,'200','','','3','','1','2023-06-22 14:12:37','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-299.00','-300','Inclusive','branch','Inventory','','','','',''),('316874431673421300',2817,'31687443166','21','1.00','200','retail','0','2023-06-22 17:12:46','','','','0','Cash',0.00,'200','','','3','','1','2023-06-22 14:12:55','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-300.00','-301','Inclusive','branch','Inventory','','','','',''),('316874431893421300',2818,'31687443188','21','1.00','200','retail','0','2023-06-22 17:13:08','','','','0','Cash',0.00,'200','','','3','','1','2023-06-22 14:13:23','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-301.00','-302','Inclusive','branch','Inventory','','','','',''),('416874434463421300',2819,'41687443444','11','1.00','280','retail','0','2023-06-22 17:17:24','','','','0','Cash',0.00,'280','','','4','','1','2023-06-22 14:17:31','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','28.00','27','Inclusive','branch','Inventory','','','','',''),('416874438493022348',2820,'41687443848','21','1.00','200','retail','0','2023-06-22 17:24:08','','','','0','Cash',0.00,'200','','','4','','1','2023-06-22 14:24:13','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-302.00','-303','Inclusive','branch','Inventory','','','','',''),('416874447642466372',2823,'41687444763','21','1.00','200','retail','0','2023-06-22 17:39:23','','','','0','Cash',0.00,'200','','','4','','1','2023-06-22 14:39:27','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-303.00','-304','Inclusive','branch','Inventory','','','','',''),('416874441018210832',2824,'41687444100','20','1.00','200','retail','0','2023-06-22 17:28:21','','','','0','Cash',0.00,'200','','','4','','1','2023-06-22 14:52:58','','2','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-101.00','-102','Inclusive','branch','Inventory','','','','',''),('416874455688280832',2825,'41687444100','7','1.00','200','retail','0','2023-06-22 17:52:48','','','','0','Cash',0.00,'200','','','4','','1','2023-06-22 14:52:58','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-132.00','-133','Inclusive','branch','Inventory','','','','',''),('416874455722222032',2826,'41687444100','7','1.00','200','retail','0','2023-06-22 17:52:51','','','','0','Cash',0.00,'200','','','4','','1','2023-06-22 14:52:58','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-133.00','-134','Inclusive','branch','Inventory','','','','',''),('416874543424252432',2827,'41687454341','12','1.00','250','retail','0','2023-06-22 20:19:01','','','','0','Cash',0.00,'250','','','4','','1','2023-06-22 17:19:06','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-69.00','-70','Inclusive','branch','Inventory','','','','',''),('416874559885824544',2828,'41687455987','38','1.00','350','retail','0','2023-06-22 20:46:27','','','','0','Cash',0.00,'350','','','4','','1','2023-06-22 17:46:37','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-326.00','-327','Inclusive','branch','Inventory','','','','',''),('416874559923421300',2829,'41687455987','38','1.00','350','retail','0','2023-06-22 20:46:32','','','','0','Cash',0.00,'350','','','4','','1','2023-06-22 17:46:37','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-327.00','-328','Inclusive','branch','Inventory','','','','',''),('416874587563022357',2830,'41687458755','11','1.00','280','retail','0','2023-06-22 21:32:35','','','','0','Cash',0.00,'280','','','4','','1','2023-06-22 18:32:48','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','27.00','26','Inclusive','branch','Inventory','','','','',''),('416874587642866372',2831,'41687458755','24','1.00','100','retail','0','2023-06-22 21:32:43','','','','0','Cash',0.00,'100','','','4','','1','2023-06-22 18:32:48','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-18.00','-19','Inclusive','branch','Inventory','','','','',''),('416874594932969372',2832,'41687459492','38','1.00','350','retail','0','2023-06-22 21:44:52','','','','0','Cash',0.00,'350','','','4','','1','2023-06-22 18:44:57','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-328.00','-329','Inclusive','branch','Inventory','','','','',''),('416875070712767372',2833,'41687507070','1','1.00','280','retail','0','2023-06-23 10:57:50','','','','0','Cash',0.00,'280','','','4','','1','2023-06-23 07:57:54','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-171.00','-172','Inclusive','branch','Inventory','','','','',''),('416875098123421300',2834,'41687509811','11','1.00','280','retail','0','2023-06-23 11:43:31','','','','0','Cash',0.00,'280','','','4','','1','2023-06-23 08:43:39','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','26.00','25','Inclusive','branch','Inventory','','','','',''),('416875098158250832',2835,'41687509811','3','1.00','200','retail','0','2023-06-23 11:43:34','','','','0','Cash',0.00,'200','','','4','','1','2023-06-23 08:43:39','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-84.00','-85','Inclusive','branch','Inventory','','','','',''),('416875099993421300',2836,'41687509998','1','1.00','280','retail','0','2023-06-23 11:46:38','','','','0','Cash',0.00,'280','','','4','','1','2023-06-23 08:46:42','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-172.00','-173','Inclusive','branch','Inventory','','','','',''),('416875100173022310',2837,'41687510016','23','1.00','250','retail','0','2023-06-23 11:46:56','','','','0','Cash',0.00,'250','','','4','','1','2023-06-23 08:47:00','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-116.00','-117','Inclusive','branch','Inventory','','','','',''),('416875100292222032',2838,'41687510028','11','1.00','280','retail','0','2023-06-23 11:47:08','','','','0','Cash',0.00,'280','','','4','','1','2023-06-23 08:47:22','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','25.00','24','Inclusive','branch','Inventory','','','','',''),('416875100370825044',2839,'41687510028','26','1.00','100','retail','0','2023-06-23 11:47:16','','','','0','Cash',0.00,'100','','','4','','1','2023-06-23 08:47:22','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-21.00','-22','Inclusive','branch','Inventory','','','','',''),('416875111982704336',2840,'41687511197','20','1.00','200','retail','0','2023-06-23 12:06:37','','','','0','Cash',0.00,'200','','','4','','1','2023-06-23 09:06:41','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-102.00','-103','Inclusive','branch','Inventory','','','','',''),('416875117718210832',2841,'41687511770','17','1.00','200','retail','0','2023-06-23 12:16:10','','','','0','Cash',0.00,'200','','','4','','1','2023-06-23 09:16:14','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-43.00','-44','Inclusive','branch','Inventory','','','','',''),('416875147982469372',2842,'41687514797','1','1.00','280','retail','0','2023-06-23 13:06:37','','','','0','Cash',0.00,'280','','','4','','1','2023-06-23 10:06:59','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-173.00','-174','Inclusive','branch','Inventory','','','','',''),('416875148003473300',2843,'41687514797','5','1.00','300','retail','0','2023-06-23 13:06:39','','','','0','Cash',0.00,'300','','','4','','1','2023-06-23 10:06:59','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-74.00','-75','Inclusive','branch','Inventory','','','','',''),('416875152352222032',2844,'41687515234','52','1.00','150','retail','0','2023-06-23 13:13:54','','','','200','Cash',0.00,'150','','','4','','1','2023-06-23 10:13:58','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416875171883421300',2845,'41687517187','5','1.00','300','retail','0','2023-06-23 13:46:27','','','','0','Cash',0.00,'300','','','4','','1','2023-06-23 10:46:33','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-75.00','-76','Inclusive','branch','Inventory','','','','',''),('416875191782222032',2846,'41687519177','21','1.00','200','retail','0','2023-06-23 14:19:37','','','','0','Cash',0.00,'200','','','4','','1','2023-06-23 11:19:49','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-304.00','-305','Inclusive','branch','Inventory','','','','',''),('416875194868260832',2847,'41687519485','38','1.00','350','retail','0','2023-06-23 14:24:45','','','','0','Cash',0.00,'350','','','4','','1','2023-06-23 11:24:49','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-329.00','-330','Inclusive','branch','Inventory','','','','',''),('316875260822668372',2848,'31687526081','23','1.00','250','retail','0','2023-06-23 16:14:41','','','','0','Cash',0.00,'250','','','3','','1','2023-06-23 13:14:55','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-117.00','-118','Inclusive','branch','Inventory','','','','',''),('316875260924222432',2849,'31687526081','22','1.00','250','retail','0','2023-06-23 16:14:51','','','','0','Cash',0.00,'250','','','3','','1','2023-06-23 13:14:55','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-30.00','-31','Inclusive','branch','Inventory','','','','',''),('316875297192961372',2850,'31687529718','23','1.00','250','retail','0','2023-06-23 17:15:18','','','','0','Cash',0.00,'250','','','3','','1','2023-06-23 14:15:33','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-118.00','-119','Inclusive','branch','Inventory','','','','',''),('316875297733421300',2851,'31687529772','1','1.00','280','retail','0','2023-06-23 17:16:12','','','','0','Cash',0.00,'280','','','3','','1','2023-06-23 14:16:17','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-174.00','-175','Inclusive','branch','Inventory','','','','',''),('316875328053022308',2852,'31687532804','22','1.00','250','retail','0','2023-06-23 18:06:44','','','','0','Cash',0.00,'250','','','3','','1','2023-06-23 15:06:57','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-31.00','-32','Inclusive','branch','Inventory','','','','',''),('316875328143421300',2853,'31687532804','11','1.00','280','retail','0','2023-06-23 18:06:53','','','','0','Cash',0.00,'280','','','3','','1','2023-06-23 15:06:57','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','24.00','23','Inclusive','branch','Inventory','','','','',''),('316875331493825334',2854,'31687533148','21','1.00','200','retail','0','2023-06-23 18:12:28','','','','0','Cash',0.00,'200','','','3','','1','2023-06-23 15:12:32','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-305.00','-306','Inclusive','branch','Inventory','','','','',''),('316875363772222032',2855,'31687536376','11','1.00','280','retail','0','2023-06-23 19:06:16','','','','0','Cash',0.00,'280','','','3','','1','2023-06-23 16:06:32','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','23.00','22','Inclusive','branch','Inventory','','','','',''),('316875395683421300',2856,'31687539568','38','1.00','350','retail','0','2023-06-23 19:59:28','','','','0','Cash',0.00,'350','','','3','','1','2023-06-23 16:59:33','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-330.00','-331','Inclusive','branch','Inventory','','','','',''),('316875400883022380',2857,'31687540087','11','1.00','280','retail','0','2023-06-23 20:08:07','','','','0','Cash',0.00,'280','','','3','','1','2023-06-23 17:08:10','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','22.00','21','Inclusive','branch','Inventory','','','','',''),('316875401582065372',2858,'31687540157','21','1.00','200','retail','0','2023-06-23 20:09:17','','','','0','Cash',0.00,'200','','','3','','1','2023-06-23 17:09:22','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-306.00','-307','Inclusive','branch','Inventory','','','','',''),('316875505302063372',2859,'31687550529','21','1.00','200','retail','0','2023-06-23 23:02:09','','','','0','Cash',0.00,'200','','','3','','1','2023-06-23 20:02:25','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-307.00','-308','Inclusive','branch','Inventory','','','','',''),('316875505644252432',2860,'31687550563','1','1.00','280','retail','0','2023-06-23 23:02:43','','','','0','Cash',0.00,'280','','','3','','1','2023-06-23 20:02:51','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-175.00','-176','Inclusive','branch','Inventory','','','','',''),('316875505804252432',2861,'31687550578','5','1.00','300','retail','0','2023-06-23 23:02:58','','','','0','Cash',0.00,'300','','','3','','1','2023-06-23 20:03:11','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-76.00','-77','Inclusive','branch','Inventory','','','','',''),('316875506002060372',2862,'31687550599','21','1.00','200','retail','0','2023-06-23 23:03:19','','','','0','Cash',0.00,'200','','','3','','1','2023-06-23 20:03:35','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-308.00','-309','Inclusive','branch','Inventory','','','','',''),('316875929570202037',2863,'31687592956','5','1.00','300','retail','0','2023-06-24 10:49:16','','','','0','Cash',0.00,'300','','','3','','1','2023-06-24 07:49:24','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-77.00','-78','Inclusive','branch','Inventory','','','','',''),('316876041208200832',2864,'31687604119','38','1.00','350','retail','0','2023-06-24 13:55:19','','','','0','Cash',0.00,'350','','','3','','1','2023-06-24 10:55:28','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-331.00','-332','Inclusive','branch','Inventory','','','','',''),('316876041263022321',2865,'31687604119','22','1.00','250','retail','0','2023-06-24 13:55:25','','','','0','Cash',0.00,'250','','','3','','1','2023-06-24 10:55:28','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-32.00','-33','Inclusive','branch','Inventory','','','','',''),('316876073477826734',2866,'31687607346','2','1.00','250','retail','0','2023-06-24 14:49:06','','','','0','Cash',0.00,'250','','','3','','1','2023-06-24 11:49:11','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-64.00','-65','Inclusive','branch','Inventory','','','','',''),('416876169083022309',2867,'41687616907','21','1.00','200','retail','0','2023-06-24 17:28:27','','','','0','Cash',0.00,'200','','','4','','1','2023-06-24 14:28:32','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-309.00','-310','Inclusive','branch','Inventory','','','','',''),('416876259165826544',2868,'41687625915','20','1.00','200','retail','0','2023-06-24 19:58:35','','','','0','Cash',0.00,'200','','','4','','1','2023-06-24 16:58:39','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-103.00','-104','Inclusive','branch','Inventory','','','','',''),('416876306478270832',2869,'41687630646','4','1.00','150','retail','0','2023-06-24 21:17:26','','','','0','Cash',0.00,'150','','','4','','1','2023-06-24 18:17:30','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-39.00','-40','Inclusive','branch','Inventory','','','','',''),('416876324142261372',2870,'41687632413','11','1.00','280','retail','0','2023-06-24 21:46:53','','','','0','Cash',0.00,'280','','','4','','1','2023-06-24 18:47:03','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','21.00','20','Inclusive','branch','Inventory','','','','',''),('416876341564232432',2871,'41687634155','5','1.00','300','retail','0','2023-06-24 22:15:55','','','','0','Cash',0.00,'300','','','4','','1','2023-06-24 19:15:59','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-78.00','-79','Inclusive','branch','Inventory','','','','',''),('416876341832222032',2872,'41687634182','18','1.00','200','retail','0','2023-06-24 22:16:22','','','','0','Cash',0.00,'200','','','4','','1','2023-06-24 19:16:29','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-20.00','-21','Inclusive','branch','Inventory','','','','',''),('416876342710202037',2873,'41687634270','11','1.00','280','retail','0','2023-06-24 22:17:50','','','','0','Cash',0.00,'280','','','4','','1','2023-06-24 19:17:53','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','20.00','19','Inclusive','branch','Inventory','','','','',''),('316876826013421300',2874,'31687682600','20','1.00','200','retail','0','2023-06-25 11:43:20','','','','0','Cash',0.00,'200','','','3','','1','2023-06-25 08:43:24','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-104.00','-105','Inclusive','branch','Inventory','','','','',''),('416877019441827144',2875,'41687701943','34','1.00','300','retail','0','2023-06-25 17:05:43','','','','0','Cash',0.00,'300','','','4','','1','2023-06-25 14:05:55','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-62.00','-63','Inclusive','branch','Inventory','','','','',''),('416877019480202037',2876,'41687701943','34','1.00','300','retail','0','2023-06-25 17:05:47','','','','0','Cash',0.00,'300','','','4','','1','2023-06-25 14:05:55','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-63.00','-64','Inclusive','branch','Inventory','','','','',''),('416877041262462372',2877,'41687704125','2','1.00','250','retail','0','2023-06-25 17:42:05','','','','0','Cash',0.00,'250','','','4','','1','2023-06-25 14:42:09','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-65.00','-66','Inclusive','branch','Inventory','','','','',''),('316877043954202432',2879,'31687704394','38','1.00','350','retail','0','2023-06-25 17:46:34','','','','0','Cash',0.00,'350','','','3','','1','2023-06-25 14:47:12','','7','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-332.00','-333','Inclusive','branch','Inventory','','','','',''),('316877044304202432',2880,'31687704394','38','1.00','350','retail','0','2023-06-25 17:47:09','','','','0','Cash',0.00,'350','','','3','','1','2023-06-25 14:47:12','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-333.00','-334','Inclusive','branch','Inventory','','','','',''),('316877051352563372',2881,'31687705134','11','1.00','280','retail','0','2023-06-25 17:58:54','','','','0','Cash',0.00,'280','','','3','','1','2023-06-25 14:58:57','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','19.00','18','Inclusive','branch','Inventory','','','','',''),('416877071042760372',2882,'41687707103','38','1.00','350','retail','0','2023-06-25 18:31:43','','','','0','Cash',0.00,'350','','','4','','1','2023-06-25 15:31:46','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-334.00','-335','Inclusive','branch','Inventory','','','','',''),('416877114593022354',2883,'41687711458','23','1.00','250','retail','0','2023-06-25 19:44:18','','','','0','Cash',0.00,'250','','','4','','1','2023-06-25 16:44:27','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-119.00','-120','Inclusive','branch','Inventory','','','','',''),('416877114630202037',2884,'41687711458','23','1.00','250','retail','0','2023-06-25 19:44:22','','','','0','Cash',0.00,'250','','','4','','1','2023-06-25 16:44:27','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-120.00','-121','Inclusive','branch','Inventory','','','','',''),('416877163463421300',2885,'41687716345','38','1.00','350','retail','0','2023-06-25 21:05:45','','','','0','Cash',0.00,'350','','','4','','1','2023-06-25 18:05:49','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-335.00','-336','Inclusive','branch','Inventory','','','','',''),('416877175504212432',2886,'41687717549','20','1.00','200','retail','0','2023-06-25 21:25:49','','','','0','Cash',0.00,'200','','','4','','1','2023-06-25 18:25:57','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-105.00','-106','Inclusive','branch','Inventory','','','','',''),('416877189353022339',2887,'41687718934','1','1.00','280','retail','0','2023-06-25 21:48:54','','','','0','Cash',0.00,'280','','','4','','1','2023-06-25 18:49:06','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-176.00','-177','Inclusive','branch','Inventory','','','','',''),('416877189423421300',2888,'41687718934','20','1.00','200','retail','0','2023-06-25 21:49:01','','','','0','Cash',0.00,'200','','','4','','1','2023-06-25 18:49:06','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-106.00','-107','Inclusive','branch','Inventory','','','','',''),('416877190024212432',2889,'41687719001','5','1.00','300','retail','0','2023-06-25 21:50:01','','','','0','Cash',0.00,'300','','','4','','1','2023-06-25 18:50:05','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-79.00','-80','Inclusive','branch','Inventory','','','','',''),('416877668878270832',2890,'41687766886','11','1.00','280','retail','0','2023-06-26 11:08:06','','','','0','Cash',0.00,'280','','','4','','1','2023-06-26 08:08:32','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','18.00','17','Inclusive','branch','Inventory','','','','',''),('416877682813421300',2891,'41687768280','7','1.00','200','retail','0','2023-06-26 11:31:20','','','','0','Cash',0.00,'200','','','4','','1','2023-06-26 08:31:25','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-134.00','-135','Inclusive','branch','Inventory','','','','',''),('416877748064827444',2892,'41687774805','17','1.00','200','retail','0','2023-06-26 13:20:05','','','','0','Cash',0.00,'200','','','4','','1','2023-06-26 10:20:10','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-44.00','-45','Inclusive','branch','Inventory','','','','',''),('416877811102222032',2893,'41687781109','21','1.00','200','retail','0','2023-06-26 15:05:09','','','','0','Cash',0.00,'200','','','4','','1','2023-06-26 12:05:13','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-310.00','-311','Inclusive','branch','Inventory','','','','',''),('416877893623022363',2894,'41687789360','20','1.00','200','retail','0','2023-06-26 17:22:41','','','','0','Cash',0.00,'200','','','4','','1','2023-06-26 14:22:49','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-107.00','-108','Inclusive','branch','Inventory','','','','',''),('416877893668260832',2895,'41687789360','20','1.00','200','retail','0','2023-06-26 17:22:45','','','','0','Cash',0.00,'200','','','4','','1','2023-06-26 14:22:49','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-108.00','-109','Inclusive','branch','Inventory','','','','',''),('416877901160827044',2896,'41687790115','20','1.00','200','retail','0','2023-06-26 17:35:16','','','','0','Cash',0.00,'200','','','4','','1','2023-06-26 14:35:19','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-109.00','-110','Inclusive','branch','Inventory','','','','',''),('416877924272222032',2897,'41687792426','2','1.00','250','retail','0','2023-06-26 18:13:46','','','','0','Cash',0.00,'250','','','4','','1','2023-06-26 15:13:52','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-66.00','-67','Inclusive','branch','Inventory','','','','',''),('416877958224292432',2898,'41687795821','21','1.00','200','retail','0','2023-06-26 19:10:21','','','','0','Cash',0.00,'200','','','4','','1','2023-06-26 16:10:28','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-311.00','-312','Inclusive','branch','Inventory','','','','',''),('416877973517827744',2899,'41687797350','21','1.00','200','retail','0','2023-06-26 19:35:50','','','','0','Cash',0.00,'200','','','4','','1','2023-06-26 16:35:55','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-312.00','-313','Inclusive','branch','Inventory','','','','',''),('416878007934202432',2900,'41687800792','21','1.00','200','retail','0','2023-06-26 20:33:12','','','','0','Cash',0.00,'200','','','4','','1','2023-06-26 17:33:15','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-313.00','-314','Inclusive','branch','Inventory','','','','',''),('416878009424202432',2901,'41687800941','11','1.00','280','retail','0','2023-06-26 20:35:41','','','','0','Cash',0.00,'280','','','4','','1','2023-06-26 17:35:45','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','17.00','16','Inclusive','branch','Inventory','','','','',''),('416878057863022387',2902,'41687805785','11','1.00','280','retail','0','2023-06-26 21:56:25','','','','0','Cash',0.00,'280','','','4','','1','2023-06-26 18:56:28','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','16.00','15','Inclusive','branch','Inventory','','','','',''),('416878058020202037',2903,'41687805801','20','1.00','200','retail','0','2023-06-26 21:56:41','','','','0','Cash',0.00,'200','','','4','','1','2023-06-26 18:56:45','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-110.00','-111','Inclusive','branch','Inventory','','','','',''),('416878463613421300',2904,'41687846360','11','1.00','280','retail','0','2023-06-27 09:12:40','','','','0','Cash',0.00,'280','','','4','','1','2023-06-27 06:12:50','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','15.00','14','Inclusive','branch','Inventory','','','','',''),('416878463683022363',2905,'41687846360','24','1.00','100','retail','0','2023-06-27 09:12:47','','','','0','Cash',0.00,'100','','','4','','1','2023-06-27 06:12:50','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-19.00','-20','Inclusive','branch','Inventory','','','','',''),('416878484473421300',2906,'41687848446','11','1.00','280','retail','0','2023-06-27 09:47:26','','','','0','Cash',0.00,'280','','','4','','1','2023-06-27 06:47:46','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','14.00','13','Inclusive','branch','Inventory','','','','',''),('416878574340202037',2907,'41687857433','52','1.00','150','retail','0','2023-06-27 12:17:13','','','','200','Cash',0.00,'150','','','4','','1','2023-06-27 09:17:17','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416878630982369372',2908,'41687863097','21','1.00','200','retail','0','2023-06-27 13:51:38','','','','0','Cash',0.00,'200','','','4','','1','2023-06-27 10:51:41','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-314.00','-315','Inclusive','branch','Inventory','','','','',''),('416878677933421300',2909,'41687867792','21','1.00','200','retail','0','2023-06-27 15:09:52','','','','0','Cash',0.00,'200','','','4','','1','2023-06-27 12:09:57','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-315.00','-316','Inclusive','branch','Inventory','','','','',''),('416878689592222032',2910,'41687868958','26','1.00','100','retail','0','2023-06-27 15:29:18','','','','0','Cash',0.00,'100','','','4','','1','2023-06-27 12:29:22','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-22.00','-23','Inclusive','branch','Inventory','','','','',''),('416878748743421300',2911,'41687874873','21','1.00','200','retail','0','2023-06-27 17:07:53','','','','0','Cash',0.00,'200','','','4','','1','2023-06-27 14:08:00','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-316.00','-317','Inclusive','branch','Inventory','','','','',''),('316878800683022360',2912,'31687880067','22','1.00','250','retail','0','2023-06-27 18:34:27','','','','0','Cash',0.00,'250','','','3','','1','2023-06-27 15:34:31','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-33.00','-34','Inclusive','branch','Inventory','','','','',''),('316878832992222032',2915,'31687883298','38','1.00','350','retail','0','2023-06-27 19:28:18','','','','0','Cash',0.00,'350','','','3','','1','2023-06-27 16:28:22','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-338.00','-339','Inclusive','branch','Inventory','','','','',''),('316878814738230832',2916,'31687881472','38','1.00','350','retail','0','2023-06-27 18:57:52','','','','0','Cash',0.00,'350','','','3','','1','2023-06-27 17:09:27','','7','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-336.00','-337','Inclusive','branch','Inventory','','','','',''),('316878814770202037',2917,'31687881472','38','1.00','350','retail','0','2023-06-27 18:57:56','','','','0','Cash',0.00,'350','','','3','','1','2023-06-27 17:09:27','','7','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-337.00','-338','Inclusive','branch','Inventory','','','','',''),('316878857608200832',2918,'31687881472','38','1.00','350','retail','0','2023-06-27 20:09:19','','','','0','Cash',0.00,'350','','','3','','1','2023-06-27 17:09:27','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-339.00','-340','Inclusive','branch','Inventory','','','','',''),('316878857648310823',2919,'31687881472','38','1.00','350','retail','0','2023-06-27 20:09:23','','','','0','Cash',0.00,'350','','','3','','1','2023-06-27 17:09:27','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-340.00','-341','Inclusive','branch','Inventory','','','','',''),('316878880423330232',2920,'31687888041','20','1.00','200','retail','0','2023-06-27 20:47:21','','','','0','Cash',0.00,'200','','','3','','1','2023-06-27 17:47:24','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-111.00','-112','Inclusive','branch','Inventory','','','','',''),('316878880542865372',2921,'31687888053','38','1.00','350','retail','0','2023-06-27 20:47:33','','','','0','Cash',0.00,'350','','','3','','1','2023-06-27 17:47:37','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-341.00','-342','Inclusive','branch','Inventory','','','','',''),('316878923702828234',2924,'31687892369','12','1.00','250','retail','0','2023-06-27 21:59:29','','','','0','Cash',0.00,'250','','','3','','1','2023-06-27 18:59:44','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-70.00','-71','Inclusive','branch','Inventory','','','','',''),('316878923803022383',2925,'31687892369','20','1.00','200','retail','0','2023-06-27 21:59:39','','','','0','Cash',0.00,'200','','','3','','1','2023-06-27 18:59:44','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-112.00','-113','Inclusive','branch','Inventory','','','','',''),('316878923992269372',2926,'31687892398','20','1.00','200','retail','0','2023-06-27 21:59:58','','','','0','Cash',0.00,'200','','','3','','1','2023-06-27 19:00:01','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-113.00','-114','Inclusive','branch','Inventory','','','','',''),('316878896040202037',2927,'31687889603','11','1.00','280','retail','0','2023-06-27 21:13:23','','','','0','Cash',0.00,'280','','','3','','1','2023-06-27 19:01:56','','1','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','13.00','12','Inclusive','branch','Inventory','','','','',''),('316878896089828934',2928,'31687889603','11','1.00','280','retail','0','2023-06-27 21:13:27','','','','0','Cash',0.00,'280','','','3','','1','2023-06-27 19:01:56','','1','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','','','','',''),('316878925104292432',2929,'31687889603','11','1.00','280','retail','0','2023-06-27 22:01:49','','','','0','Cash',0.00,'280','','','3','','1','2023-06-27 19:01:56','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','','','','',''),('316879550958250832',2930,'31687955094','52','1.00','150','retail','0','2023-06-28 15:24:54','','','','200','Cash',0.00,'150','','','3','','1','2023-06-28 12:24:57','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('316879551162222032',2931,'31687955115','47','1.00','200','retail','0','2023-06-28 15:25:15','','','','0','Cash',0.00,'200','','','3','','1','2023-06-28 12:25:28','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','35.00','34','Inclusive','branch','Inventory','','','','',''),('316879551193421300',2932,'31687955115','46','1.00','200','retail','0','2023-06-28 15:25:18','','','','0','Cash',0.00,'200','','','3','','1','2023-06-28 12:25:28','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','26.00','25','Inclusive','branch','Inventory','','','','',''),('316879551452222032',2933,'31687955144','7','1.00','200','retail','0','2023-06-28 15:25:44','','','','0','Cash',0.00,'200','','','3','','1','2023-06-28 12:26:20','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-135.00','-136','Inclusive','branch','Inventory','','','','',''),('316879551775829534',2934,'31687955144','20','1.00','200','retail','0','2023-06-28 15:26:16','','','','0','Cash',0.00,'200','','','3','','1','2023-06-28 12:26:20','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-114.00','-115','Inclusive','branch','Inventory','','','','',''),('316879572642703336',2935,'31687957263','7','1.00','200','retail','0','2023-06-28 16:01:03','','','','0','Cash',0.00,'200','','','3','','1','2023-06-28 13:01:10','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-136.00','-137','Inclusive','branch','Inventory','','','','',''),('316879572680202037',2936,'31687957263','20','1.00','200','retail','0','2023-06-28 16:01:08','','','','0','Cash',0.00,'200','','','3','','1','2023-06-28 13:01:10','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-115.00','-116','Inclusive','branch','Inventory','','','','',''),('316879638194262432',2937,'31687963818','23','1.00','250','retail','0','2023-06-28 17:50:18','','','','0','Cash',0.00,'250','','','3','','1','2023-06-28 14:50:30','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-121.00','-122','Inclusive','branch','Inventory','','','','',''),('316879638232222032',2938,'31687963818','23','1.00','250','retail','0','2023-06-28 17:50:22','','','','0','Cash',0.00,'250','','','3','','1','2023-06-28 14:50:30','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-122.00','-123','Inclusive','branch','Inventory','','','','',''),('316879638268260832',2939,'31687963818','23','1.00','250','retail','0','2023-06-28 17:50:25','','','','0','Cash',0.00,'250','','','3','','1','2023-06-28 14:50:30','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-123.00','-124','Inclusive','branch','Inventory','','','','',''),('316879638523421300',2940,'31687963851','38','1.00','350','retail','0','2023-06-28 17:50:51','','','','0','Cash',0.00,'350','','','3','','1','2023-06-28 14:50:55','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-342.00','-343','Inclusive','branch','Inventory','','','','',''),('316879729322222032',2941,'31687972931','38','1.00','350','retail','0','2023-06-28 20:22:11','','','','0','Cash',0.00,'350','','','3','','1','2023-06-28 17:22:15','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-343.00','-344','Inclusive','branch','Inventory','','','','',''),('316879784460202037',2942,'31687978445','38','1.00','350','retail','0','2023-06-28 21:54:05','','','','0','Cash',0.00,'350','','','3','','1','2023-06-28 18:54:18','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-344.00','-345','Inclusive','branch','Inventory','','','','',''),('316879784768260832',2943,'31687978475','21','1.00','200','retail','0','2023-06-28 21:54:35','','','','0','Cash',0.00,'200','','','3','','1','2023-06-28 18:54:49','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-317.00','-318','Inclusive','branch','Inventory','','','','',''),('316879784993022394',2944,'31687978498','21','1.00','200','retail','0','2023-06-28 21:54:58','','','','0','Cash',0.00,'200','','','3','','1','2023-06-28 18:55:19','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-318.00','-319','Inclusive','branch','Inventory','','','','',''),('316879785284272432',2945,'31687978527','20','1.00','200','retail','0','2023-06-28 21:55:27','','','','0','Cash',0.00,'200','','','3','','1','2023-06-28 18:55:39','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-116.00','-117','Inclusive','branch','Inventory','','','','',''),('316879785523421300',2946,'31687978551','23','1.00','250','retail','0','2023-06-28 21:55:51','','','','0','Cash',0.00,'250','','','3','','1','2023-06-28 18:56:04','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-124.00','-125','Inclusive','branch','Inventory','','','','',''),('316880329828220832',2947,'31688032981','11','1.00','280','retail','0','2023-06-29 13:03:01','','','','0','Cash',0.00,'280','','','3','','1','2023-06-29 10:03:05','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','','','','',''),('316880362204232432',2948,'31688036219','38','1.00','350','retail','0','2023-06-29 13:56:59','','','','0','Cash',0.00,'350','','','3','','1','2023-06-29 10:57:08','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-345.00','-346','Inclusive','branch','Inventory','','','','',''),('316880362243022322',2949,'31688036219','38','1.00','350','retail','0','2023-06-29 13:57:03','','','','0','Cash',0.00,'350','','','3','','1','2023-06-29 10:57:08','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-346.00','-347','Inclusive','branch','Inventory','','','','',''),('316880362860202038',2950,'31688036285','21','1.00','200','retail','0','2023-06-29 13:58:05','','','','0','Cash',0.00,'200','','','3','','1','2023-06-29 10:58:20','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-319.00','-320','Inclusive','branch','Inventory','','','','',''),('316880392113421300',2951,'31688039210','21','1.00','200','retail','0','2023-06-29 14:46:50','','','','0','Cash',0.00,'200','','','3','','1','2023-06-29 11:47:02','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-320.00','-321','Inclusive','branch','Inventory','','','','',''),('316880392620202038',2952,'31688039261','5','1.00','300','retail','0','2023-06-29 14:47:41','','','','0','Cash',0.00,'300','','','3','','1','2023-06-29 11:47:46','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-80.00','-81','Inclusive','branch','Inventory','','','','',''),('416880432842368382',2953,'41688043283','1','1.00','280','retail','0','2023-06-29 15:54:43','','','','0','Cash',0.00,'280','','','4','','1','2023-06-29 12:55:24','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-177.00','-178','Inclusive','branch','Inventory','','','','',''),('416880466042660382',2954,'41688046603','52','1.00','150','retail','0','2023-06-29 16:50:03','','','','200','Cash',0.00,'150','','','4','','1','2023-06-29 13:50:07','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416880478540202038',2955,'41688047853','1','1.00','280','retail','0','2023-06-29 17:10:53','','','','0','Cash',0.00,'280','','','4','','1','2023-06-29 14:10:57','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-178.00','-179','Inclusive','branch','Inventory','','','','',''),('416880533098290832',2956,'41688053308','7','1.00','200','retail','0','2023-06-29 18:41:48','','','','0','Cash',0.00,'200','','','4','','1','2023-06-29 15:41:53','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-137.00','-138','Inclusive','branch','Inventory','','','','',''),('416880567443421300',2957,'41688056743','21','1.00','200','retail','0','2023-06-29 19:39:03','','','','0','Cash',0.00,'200','','','4','','1','2023-06-29 16:39:10','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-321.00','-322','Inclusive','branch','Inventory','','','','',''),('416880567472222032',2958,'41688056743','52','1.00','150','retail','0','2023-06-29 19:39:06','','','','200','Cash',0.00,'150','','','4','','1','2023-06-29 16:39:10','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416880572340202038',2959,'41688057233','12','1.00','250','retail','0','2023-06-29 19:47:13','','','','0','Cash',0.00,'250','','','4','','1','2023-06-29 16:47:16','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-71.00','-72','Inclusive','branch','Inventory','','','','',''),('416880576318210832',2960,'41688057630','52','1.00','150','retail','0','2023-06-29 19:53:50','','','','200','Cash',0.00,'150','','','4','','1','2023-06-29 16:53:55','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416880615950202038',2961,'41688061594','38','1.00','350','retail','0','2023-06-29 20:59:54','','','','0','Cash',0.00,'350','','','4','','1','2023-06-29 18:00:11','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-347.00','-348','Inclusive','branch','Inventory','','','','',''),('416880616084262432',2962,'41688061594','38','1.00','350','retail','0','2023-06-29 21:00:07','','','','0','Cash',0.00,'350','','','4','','1','2023-06-29 18:00:11','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-348.00','-349','Inclusive','branch','Inventory','','','','',''),('416880616473022346',2963,'41688061646','12','1.00','250','retail','0','2023-06-29 21:00:46','','','','0','Cash',0.00,'250','','','4','','1','2023-06-29 18:00:50','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-72.00','-73','Inclusive','branch','Inventory','','','','',''),('416880634740202038',2964,'41688063473','38','1.00','350','retail','0','2023-06-29 21:31:13','','','','0','Cash',0.00,'350','','','4','','1','2023-06-29 18:31:17','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-349.00','-350','Inclusive','branch','Inventory','','','','',''),('416881166618210832',2965,'41688116660','38','1.00','350','retail','0','2023-06-30 12:17:40','','','','0','Cash',0.00,'350','','','4','','1','2023-06-30 09:17:44','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-350.00','-351','Inclusive','branch','Inventory','','','','',''),('416881166968260832',2966,'41688116695','20','1.00','200','retail','0','2023-06-30 12:18:15','','','','0','Cash',0.00,'200','','','4','','1','2023-06-30 09:18:46','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-117.00','-118','Inclusive','branch','Inventory','','','','',''),('416881188013022308',2967,'41688118800','11','1.00','280','retail','0','2023-06-30 12:53:20','','','','0','Cash',0.00,'280','','','4','','1','2023-06-30 09:53:23','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','','','','',''),('416881201872222032',2968,'41688120186','38','1.00','350','retail','0','2023-06-30 13:16:26','','','','0','Cash',0.00,'350','','','4','','1','2023-06-30 10:16:30','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-351.00','-352','Inclusive','branch','Inventory','','','','',''),('416881248762222032',2969,'41688124875','21','1.00','200','retail','0','2023-06-30 14:34:35','','','','0','Cash',0.00,'200','','','4','','1','2023-06-30 11:34:40','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-322.00','-323','Inclusive','branch','Inventory','','','','',''),('416881259493022349',2970,'41688125948','20','1.00','200','retail','0','2023-06-30 14:52:28','','','','0','Cash',0.00,'200','','','4','','1','2023-06-30 11:52:34','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-118.00','-119','Inclusive','branch','Inventory','','','','',''),('416881259730202038',2971,'41688125972','21','1.00','200','retail','0','2023-06-30 14:52:52','','','','0','Cash',0.00,'200','','','4','','1','2023-06-30 11:52:55','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-323.00','-324','Inclusive','branch','Inventory','','','','',''),('416881279393421300',2972,'41688127938','11','1.00','280','retail','0','2023-06-30 15:25:38','','','','0','Cash',0.00,'280','','','4','','1','2023-06-30 12:25:41','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','','','','',''),('416881301422403384',2973,'41688130141','21','1.00','200','retail','0','2023-06-30 16:02:21','','','','0','Cash',0.00,'200','','','4','','1','2023-06-30 13:03:03','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-324.00','-325','Inclusive','branch','Inventory','','','','',''),('416881301622066382',2974,'41688130141','17','1.00','200','retail','0','2023-06-30 16:02:41','','','','0','Cash',0.00,'200','','','4','','1','2023-06-30 13:03:03','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-45.00','-46','Inclusive','branch','Inventory','','','','',''),('416881301953022391',2975,'41688130194','21','1.00','200','retail','0','2023-06-30 16:03:14','','','','0','Cash',0.00,'200','','','4','','1','2023-06-30 13:04:20','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-325.00','-326','Inclusive','branch','Inventory','','','','',''),('416881304663421300',2976,'41688130465','5','1.00','300','retail','0','2023-06-30 16:07:45','','','','0','Cash',0.00,'300','','','4','','1','2023-06-30 13:07:49','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-81.00','-82','Inclusive','branch','Inventory','','','','',''),('316881352062560382',2977,'31688135205','38','1.00','350','retail','0','2023-06-30 17:26:45','','','','0','Cash',0.00,'350','','','3','','1','2023-06-30 14:26:48','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-352.00','-353','Inclusive','branch','Inventory','','','','',''),('316881369258250832',2978,'31688136924','11','1.00','280','retail','0','2023-06-30 17:55:24','','','','0','Cash',0.00,'280','','','3','','1','2023-06-30 14:55:35','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','','','','',''),('316881369338230832',2979,'31688136924','24','1.00','100','retail','0','2023-06-30 17:55:32','','','','0','Cash',0.00,'100','','','3','','1','2023-06-30 14:55:35','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-20.00','-21','Inclusive','branch','Inventory','','','','',''),('316881402102222032',2980,'31688140209','11','1.00','280','retail','0','2023-06-30 18:50:09','','','','0','Cash',0.00,'280','','','3','','1','2023-06-30 15:50:23','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','','','','',''),('316881402213032222',2981,'31688140209','24','1.00','100','retail','0','2023-06-30 18:50:20','','','','0','Cash',0.00,'100','','','3','','1','2023-06-30 15:50:23','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-21.00','-22','Inclusive','branch','Inventory','','','','',''),('316881440072233043',2982,'31688144006','38','1.00','350','retail','0','2023-06-30 19:53:26','','','','0','Cash',0.00,'350','','','3','','1','2023-06-30 16:53:30','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-353.00','-354','Inclusive','branch','Inventory','','','','',''),('316881440560202038',2983,'31688144055','19','1.00','200','retail','0','2023-06-30 19:54:15','','','','0','Cash',0.00,'200','','','3','','1','2023-06-30 16:54:19','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-7.00','-8','Inclusive','branch','Inventory','','','','',''),('316881483644242432',2985,'31688148363','11','1.00','280','retail','0','2023-06-30 21:06:03','','','','0','Cash',0.00,'280','','','3','','1','2023-06-30 18:07:00','','1','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','','','','',''),('316881484170202038',2986,'31688148363','24','1.00','100','retail','0','2023-06-30 21:06:56','','','','0','Cash',0.00,'100','','','3','','1','2023-06-30 18:07:00','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-22.00','-23','Inclusive','branch','Inventory','','','','',''),('316881496714242432',2987,'31688149670','7','1.00','200','retail','0','2023-06-30 21:27:50','','','','0','Cash',0.00,'200','','','3','','1','2023-06-30 18:27:56','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-138.00','-139','Inclusive','branch','Inventory','','','','',''),('316881526704252432',2988,'31688152669','20','1.00','200','retail','0','2023-06-30 22:17:49','','','','0','Cash',0.00,'200','','','3','','1','2023-06-30 19:18:14','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-119.00','-120','Inclusive','branch','Inventory','','','','',''),('316881567210202038',2989,'31688156720','5','1.00','300','retail','0','2023-06-30 23:25:20','','','','0','Cash',0.00,'300','','','3','','1','2023-06-30 20:25:29','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-82.00','-83','Inclusive','branch','Inventory','','','','',''),('316881567256821634',2990,'31688156720','1','1.00','280','retail','0','2023-06-30 23:25:24','','','','0','Cash',0.00,'280','','','3','','1','2023-06-30 20:25:29','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-179.00','-180','Inclusive','branch','Inventory','','','','',''),('416881947052460382',2991,'41688194704','38','1.00','350','retail','0','2023-07-01 09:58:24','','','','0','Cash',0.00,'350','','','4','','1','2023-07-01 06:58:28','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-354.00','-355','Inclusive','branch','Inventory','','','','',''),('416881951383421300',2992,'41688195137','6','1.00','280','retail','0','2023-07-01 10:05:37','','','','0','Cash',0.00,'280','','','4','','1','2023-07-01 07:05:42','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-25.00','-26','Inclusive','branch','Inventory','','','','',''),('416882023478270832',2993,'41688202347','21','1.00','200','retail','0','2023-07-01 12:05:47','','','','0','Cash',0.00,'200','','','4','','1','2023-07-01 09:05:50','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-326.00','-327','Inclusive','branch','Inventory','','','','',''),('416882080618822844',2994,'41688208061','38','1.00','350','retail','0','2023-07-01 13:41:01','','','','0','Cash',0.00,'350','','','4','','1','2023-07-01 10:41:05','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-355.00','-356','Inclusive','branch','Inventory','','','','',''),('416882090630223306',2995,'41688209062','2','1.00','250','retail','0','2023-07-01 13:57:42','','','','0','Cash',0.00,'250','','','4','','1','2023-07-01 10:57:47','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-67.00','-68','Inclusive','branch','Inventory','','','','',''),('416882091864302480',2996,'41688209184','8','1.00','150','retail','0','2023-07-01 13:59:44','','','','0','Cash',0.00,'150','','','4','','1','2023-07-01 10:59:50','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-70.00','-71','Inclusive','branch','Inventory','','','','',''),('416882131772367382',2997,'41688213176','38','1.00','350','retail','0','2023-07-01 15:06:16','','','','0','Cash',0.00,'350','','','4','','1','2023-07-01 12:06:20','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-356.00','-357','Inclusive','branch','Inventory','','','','',''),('416882147812468382',2998,'41688214780','11','1.00','280','retail','0','2023-07-01 15:33:00','','','','0','Cash',0.00,'280','','','4','','1','2023-07-01 12:33:09','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','','','','',''),('416882147853421300',2999,'41688214780','3','1.00','200','retail','0','2023-07-01 15:33:04','','','','0','Cash',0.00,'200','','','4','','1','2023-07-01 12:33:09','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-85.00','-86','Inclusive','branch','Inventory','','','','',''),('316882178068260832',3000,'31688217805','38','1.00','350','retail','0','2023-07-01 16:23:25','','','','0','Cash',0.00,'350','','','3','','1','2023-07-01 13:23:31','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-357.00','-358','Inclusive','branch','Inventory','','','','',''),('316882211131822134',3001,'31688221112','7','1.00','200','retail','0','2023-07-01 17:18:32','','','','0','Cash',0.00,'200','','','3','','1','2023-07-01 14:19:19','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-139.00','-140','Inclusive','branch','Inventory','','','','',''),('316882227502822234',3002,'31688222749','5','1.00','300','retail','0','2023-07-01 17:45:49','','','','0','Cash',0.00,'300','','','3','','1','2023-07-01 14:45:53','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-83.00','-84','Inclusive','branch','Inventory','','','','',''),('316882232562222032',3004,'31688223255','5','1.00','300','retail','0','2023-07-01 17:54:15','','','','0','Cash',0.00,'300','','','3','','1','2023-07-01 15:22:40','','1','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-84.00','-85','Inclusive','branch','Inventory','','','','',''),('316882249534222432',3005,'31688223255','12','1.00','250','retail','0','2023-07-01 18:22:32','','','','0','Cash',0.00,'250','','','3','','1','2023-07-01 15:22:40','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-73.00','-74','Inclusive','branch','Inventory','','','','',''),('316882264923421300',3006,'31688226491','4','1.00','150','retail','0','2023-07-01 18:48:12','','','','0','Cash',0.00,'150','','','3','','1','2023-07-01 15:48:14','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-40.00','-41','Inclusive','branch','Inventory','','','','',''),('316882283408200832',3007,'31688228339','21','1.00','200','retail','0','2023-07-01 19:18:59','','','','0','Cash',0.00,'200','','','3','','1','2023-07-01 16:19:02','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-327.00','-328','Inclusive','branch','Inventory','','','','',''),('316882292580202038',3008,'31688229256','21','1.00','200','retail','0','2023-07-01 19:34:17','','','','0','Cash',0.00,'200','','','3','','1','2023-07-01 16:34:20','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-328.00','-329','Inclusive','branch','Inventory','','','','',''),('316882340882222032',3010,'31688234087','38','1.00','350','retail','0','2023-07-01 20:54:47','','','','0','Cash',0.00,'350','','','3','','1','2023-07-01 18:32:49','','7','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-358.00','-359','Inclusive','branch','Inventory','','','','',''),('316882363673421300',3011,'31688234087','38','1.00','350','retail','0','2023-07-01 21:32:46','','','','0','Cash',0.00,'350','','','3','','1','2023-07-01 18:32:49','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-359.00','-360','Inclusive','branch','Inventory','','','','',''),('316882374670202038',3012,'31688237466','23','1.00','250','retail','0','2023-07-01 21:51:06','','','','0','Cash',0.00,'250','','','3','','1','2023-07-01 18:51:09','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-125.00','-126','Inclusive','branch','Inventory','','','','',''),('316882380068260832',3013,'31688238005','7','1.00','200','retail','0','2023-07-01 22:00:05','','','','0','Cash',0.00,'200','','','3','','1','2023-07-01 19:00:10','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-140.00','-141','Inclusive','branch','Inventory','','','','',''),('316882417998290832',3014,'31688241798','1','1.00','280','retail','0','2023-07-01 23:03:18','','','','0','Cash',0.00,'280','','','3','','1','2023-07-01 20:03:42','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-180.00','-181','Inclusive','branch','Inventory','','','','',''),('316882418103421300',3015,'31688241798','21','1.00','200','retail','0','2023-07-01 23:03:29','','','','0','Cash',0.00,'200','','','3','','1','2023-07-01 20:03:42','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-329.00','-330','Inclusive','branch','Inventory','','','','',''),('316882418373022338',3016,'31688241836','21','1.00','200','retail','0','2023-07-01 23:03:56','','','','0','Cash',0.00,'200','','','3','','1','2023-07-01 20:04:10','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-330.00','-331','Inclusive','branch','Inventory','','','','',''),('316882418792167382',3017,'31688241878','1','1.00','280','retail','0','2023-07-01 23:04:38','','','','0','Cash',0.00,'280','','','3','','1','2023-07-01 20:05:13','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-181.00','-182','Inclusive','branch','Inventory','','','','',''),('316882418828220832',3018,'31688241878','11','1.00','280','retail','0','2023-07-01 23:04:41','','','','0','Cash',0.00,'280','','','3','','1','2023-07-01 20:05:13','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','','','','',''),('316882419404242432',3019,'31688241939','11','1.00','280','retail','0','2023-07-01 23:05:39','','','','0','Cash',0.00,'280','','','3','','1','2023-07-01 20:05:49','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','','','','',''),('316882419962222032',3020,'31688241995','21','1.00','200','retail','0','2023-07-01 23:06:35','','','','0','Cash',0.00,'200','','','3','','1','2023-07-01 20:06:46','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-331.00','-332','Inclusive','branch','Inventory','','','','',''),('316882943804292432',3021,'31688294379','20','1.00','200','retail','0','2023-07-02 13:39:39','','','','0','Cash',0.00,'200','','','3','','1','2023-07-02 10:39:44','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-120.00','-121','Inclusive','branch','Inventory','','','','',''),('316882944000202038',3022,'31688294399','20','1.00','200','retail','0','2023-07-02 13:39:59','','','','0','Cash',0.00,'200','','','3','','1','2023-07-02 10:40:03','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-121.00','-122','Inclusive','branch','Inventory','','','','',''),('316882944123022314',3023,'31688294411','21','1.00','200','retail','0','2023-07-02 13:40:11','','','','0','Cash',0.00,'200','','','3','','1','2023-07-02 10:40:14','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-332.00','-333','Inclusive','branch','Inventory','','','','',''),('316882966984292432',3024,'31688296697','7','1.00','200','retail','0','2023-07-02 14:18:17','','','','0','Cash',0.00,'200','','','3','','1','2023-07-02 11:18:30','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-141.00','-142','Inclusive','branch','Inventory','','','','',''),('416883006493421300',3025,'41688300648','21','1.00','200','retail','0','2023-07-02 15:24:08','','','','0','Cash',0.00,'200','','','4','','1','2023-07-02 12:24:12','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-333.00','-334','Inclusive','branch','Inventory','','','','',''),('416883079888280832',3026,'41688307987','38','1.00','350','retail','0','2023-07-02 17:26:27','','','','0','Cash',0.00,'350','','','4','','1','2023-07-02 14:26:35','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-360.00','-361','Inclusive','branch','Inventory','','','','',''),('416883079910202038',3027,'41688307987','38','1.00','350','retail','0','2023-07-02 17:26:30','','','','0','Cash',0.00,'350','','','4','','1','2023-07-02 14:26:35','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-361.00','-362','Inclusive','branch','Inventory','','','','',''),('416883111110202038',3029,'41688311110','38','1.00','350','retail','0','2023-07-02 18:18:30','','','','0','Cash',0.00,'350','','','4','','1','2023-07-02 15:19:57','','7','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-362.00','-363','Inclusive','branch','Inventory','','','','',''),('416883111948240832',3030,'41688311110','2','1.00','250','retail','0','2023-07-02 18:19:53','','','','0','Cash',0.00,'250','','','4','','1','2023-07-02 15:19:57','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-68.00','-69','Inclusive','branch','Inventory','','','','',''),('416883121040202038',3031,'41688312103','20','1.00','200','retail','0','2023-07-02 18:35:03','','','','0','Cash',0.00,'200','','','4','','1','2023-07-02 15:35:26','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-122.00','-123','Inclusive','branch','Inventory','','','','',''),('416883128662266382',3032,'41688312865','17','1.00','200','retail','0','2023-07-02 18:47:45','','','','0','Cash',0.00,'200','','','4','','1','2023-07-02 15:47:48','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-46.00','-47','Inclusive','branch','Inventory','','','','',''),('416883154382563382',3033,'41688315437','21','1.00','200','retail','0','2023-07-02 19:30:37','','','','0','Cash',0.00,'200','','','4','','1','2023-07-02 16:30:41','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-334.00','-335','Inclusive','branch','Inventory','','','','',''),('416883154600202038',3034,'41688315459','2','1.00','250','retail','0','2023-07-02 19:30:59','','','','0','Cash',0.00,'250','','','4','','1','2023-07-02 16:31:04','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-69.00','-70','Inclusive','branch','Inventory','','','','',''),('416883223843421300',3035,'41688322383','21','1.00','200','retail','0','2023-07-02 21:26:23','','','','0','Cash',0.00,'200','','','4','','1','2023-07-02 18:26:26','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-335.00','-336','Inclusive','branch','Inventory','','','','',''),('416883668432222032',3036,'41688366841','7','1.00','200','retail','0','2023-07-03 09:47:22','','','','0','Cash',0.00,'200','','','4','','1','2023-07-03 06:47:41','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-142.00','-143','Inclusive','branch','Inventory','','','','',''),('416883668520202038',3037,'41688366841','7','1.00','200','retail','0','2023-07-03 09:47:31','','','','0','Cash',0.00,'200','','','4','','1','2023-07-03 06:47:41','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-143.00','-144','Inclusive','branch','Inventory','','','','',''),('416883668564262432',3038,'41688366841','7','1.00','200','retail','0','2023-07-03 09:47:35','','','','0','Cash',0.00,'200','','','4','','1','2023-07-03 06:47:41','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-144.00','-145','Inclusive','branch','Inventory','','','','',''),('416883725038230832',3039,'41688372502','18','1.00','200','retail','0','2023-07-03 11:21:42','','','','0','Cash',0.00,'200','','','4','','1','2023-07-03 08:21:51','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-21.00','-22','Inclusive','branch','Inventory','','','','',''),('416883798442964382',3040,'41688379843','20','1.00','200','retail','0','2023-07-03 13:24:03','','','','0','Cash',0.00,'200','','','4','','1','2023-07-03 10:24:08','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-123.00','-124','Inclusive','branch','Inventory','','','','',''),('416883827052222032',3041,'41688382704','1','1.00','280','retail','0','2023-07-03 14:11:44','','','','0','Cash',0.00,'280','','','4','','1','2023-07-03 11:11:47','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-182.00','-183','Inclusive','branch','Inventory','','','','',''),('416883851152561382',3042,'41688385114','5','1.00','300','retail','0','2023-07-03 14:51:54','','','','0','Cash',0.00,'300','','','4','','1','2023-07-03 11:52:01','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-85.00','-86','Inclusive','branch','Inventory','','','','',''),('416883851185823544',3043,'41688385114','5','1.00','300','retail','0','2023-07-03 14:51:57','','','','0','Cash',0.00,'300','','','4','','1','2023-07-03 11:52:01','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-86.00','-87','Inclusive','branch','Inventory','','','','',''),('416883854983022394',3044,'41688385497','5','1.00','300','retail','0','2023-07-03 14:58:17','','','','0','Cash',0.00,'300','','','4','','1','2023-07-03 11:58:21','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-87.00','-88','Inclusive','branch','Inventory','','','','',''),('416883863553520834',3045,'41688386354','1','1.00','280','retail','0','2023-07-03 15:12:34','','','','0','Cash',0.00,'280','','','4','','1','2023-07-03 12:12:37','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-183.00','-184','Inclusive','branch','Inventory','','','','',''),('416883872208033233',3046,'41688387219','21','1.00','200','retail','0','2023-07-03 15:26:59','','','','0','Cash',0.00,'200','','','4','','1','2023-07-03 12:27:03','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-336.00','-337','Inclusive','branch','Inventory','','','','',''),('416883964266823644',3047,'41688396425','21','1.00','200','retail','0','2023-07-03 18:00:25','','','','0','Cash',0.00,'200','','','4','','1','2023-07-03 15:00:33','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-337.00','-338','Inclusive','branch','Inventory','','','','',''),('416883995428220832',3048,'41688399541','21','1.00','200','retail','0','2023-07-03 18:52:21','','','','0','Cash',0.00,'200','','','4','','1','2023-07-03 15:52:29','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-338.00','-339','Inclusive','branch','Inventory','','','','',''),('416884007603022367',3049,'41688400759','38','1.00','350','retail','0','2023-07-03 19:12:39','','','','0','Cash',0.00,'350','','','4','','1','2023-07-03 16:12:49','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-363.00','-364','Inclusive','branch','Inventory','','','','',''),('416884007654202432',3050,'41688400759','38','1.00','350','retail','0','2023-07-03 19:12:44','','','','0','Cash',0.00,'350','','','4','','1','2023-07-03 16:12:49','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-364.00','-365','Inclusive','branch','Inventory','','','','',''),('416884007872222032',3051,'41688400786','7','1.00','200','retail','0','2023-07-03 19:13:06','','','','0','Cash',0.00,'200','','','4','','1','2023-07-03 16:13:10','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-145.00','-146','Inclusive','branch','Inventory','','','','',''),('416884085013421300',3052,'41688408500','38','1.00','350','retail','0','2023-07-03 21:21:40','','','','0','Cash',0.00,'350','','','4','','1','2023-07-03 18:21:48','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-365.00','-366','Inclusive','branch','Inventory','','','','',''),('416884095084202432',3053,'41688409507','38','1.00','350','retail','0','2023-07-03 21:38:27','','','','0','Cash',0.00,'350','','','4','','1','2023-07-03 18:40:34','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-366.00','-367','Inclusive','branch','Inventory','','','','',''),('416884096319824944',3054,'41688409507','1','1.00','280','retail','0','2023-07-03 21:40:30','','','','0','Cash',0.00,'280','','','4','','1','2023-07-03 18:40:34','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-184.00','-185','Inclusive','branch','Inventory','','','','',''),('416884627904262432',3055,'41688462789','5','1.00','300','retail','0','2023-07-04 12:26:29','','','','0','Cash',0.00,'300','','','4','','1','2023-07-04 09:26:40','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-88.00','-89','Inclusive','branch','Inventory','','','','',''),('416884627962269382',3056,'41688462789','21','1.00','200','retail','0','2023-07-04 12:26:35','','','','0','Cash',0.00,'200','','','4','','1','2023-07-04 09:26:40','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-339.00','-340','Inclusive','branch','Inventory','','','','',''),('416884686593022356',3057,'41688468658','11','1.00','280','retail','0','2023-07-04 14:04:18','','','','0','Cash',0.00,'280','','','4','','1','2023-07-04 11:04:22','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','','','','',''),('416884764043022304',3058,'41688476403','11','1.00','280','retail','0','2023-07-04 16:13:23','','','','0','Cash',0.00,'280','','','4','','1','2023-07-04 13:13:27','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','0.00','-1','Inclusive','branch','Inventory','','','','',''),('316884786600202038',3059,'31688478659','11','1.00','280','retail','0','2023-07-04 16:50:59','','','','0','Cash',0.00,'280','','','3','','1','2023-07-04 13:51:03','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-1.00','-2','Inclusive','branch','Inventory','','','','',''),('416884823042222032',3060,'41688482303','2','1.00','250','retail','0','2023-07-04 17:51:43','','','','0','Cash',0.00,'250','','','4','','1','2023-07-04 14:51:51','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-70.00','-71','Inclusive','branch','Inventory','','','','',''),('416884823308200832',3061,'41688482329','11','1.00','280','retail','0','2023-07-04 17:52:09','','','','0','Cash',0.00,'280','','','4','','1','2023-07-04 14:52:12','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-2.00','-3','Inclusive','branch','Inventory','','','','',''),('316884838993421300',3062,'31688483898','38','1.00','350','retail','0','2023-07-04 18:18:18','','','','0','Cash',0.00,'350','','','3','','1','2023-07-04 15:18:21','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-367.00','-368','Inclusive','branch','Inventory','','','','',''),('316884937380202038',3063,'31688493737','38','1.00','350','retail','0','2023-07-04 21:02:17','','','','0','Cash',0.00,'350','','','3','','1','2023-07-04 18:02:21','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-368.00','-369','Inclusive','branch','Inventory','','','','',''),('316884938133421300',3064,'31688493812','23','1.00','250','retail','0','2023-07-04 21:03:32','','','','0','Cash',0.00,'250','','','3','','1','2023-07-04 18:03:35','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-126.00','-127','Inclusive','branch','Inventory','','','','',''),('316885015758250832',3065,'31688501574','21','1.00','200','retail','0','2023-07-04 23:12:54','','','','0','Cash',0.00,'200','','','3','','1','2023-07-04 20:12:57','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-340.00','-341','Inclusive','branch','Inventory','','','','',''),('316885533012360382',3066,'31688553300','38','1.00','350','retail','0','2023-07-05 13:35:00','','','','0','Cash',0.00,'350','','','3','','1','2023-07-05 10:35:03','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-369.00','-370','Inclusive','branch','Inventory','','','','',''),('316885533188280832',3067,'31688553316','20','1.00','200','retail','0','2023-07-05 13:35:16','','','','0','Cash',0.00,'200','','','3','','1','2023-07-05 10:35:20','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-124.00','-125','Inclusive','branch','Inventory','','','','',''),('316885541688280832',3068,'31688554167','21','1.00','200','retail','0','2023-07-05 13:49:27','','','','0','Cash',0.00,'200','','','3','','1','2023-07-05 10:49:42','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-341.00','-342','Inclusive','branch','Inventory','','','','',''),('316885568402222032',3069,'31688556839','21','1.00','200','retail','0','2023-07-05 14:33:59','','','','0','Cash',0.00,'200','','','3','','1','2023-07-05 11:34:02','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-342.00','-343','Inclusive','branch','Inventory','','','','',''),('316885578397825734',3070,'31688557838','2','1.00','250','retail','0','2023-07-05 14:50:38','','','','0','Cash',0.00,'250','','','3','','1','2023-07-05 11:50:45','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-71.00','-72','Inclusive','branch','Inventory','','','','',''),('316885605760202038',3071,'31688560575','1','1.00','280','retail','0','2023-07-05 15:36:15','','','','0','Cash',0.00,'280','','','3','','1','2023-07-05 12:36:46','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-185.00','-186','Inclusive','branch','Inventory','','','','',''),('316885635002222032',3072,'31688563500','23','1.00','250','retail','0','2023-07-05 16:25:00','','','','0','Cash',0.00,'250','','','3','','1','2023-07-05 13:25:03','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-127.00','-128','Inclusive','branch','Inventory','','','','',''),('316885642013022302',3073,'31688564200','38','1.00','350','retail','0','2023-07-05 16:36:40','','','','0','Cash',0.00,'350','','','3','','1','2023-07-05 13:37:16','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-370.00','-371','Inclusive','branch','Inventory','','','','',''),('316885643563022353',3074,'31688564354','21','1.00','200','retail','0','2023-07-05 16:39:14','','','','0','Cash',0.00,'200','','','3','','1','2023-07-05 13:39:18','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-343.00','-344','Inclusive','branch','Inventory','','','','',''),('316885681070202038',3075,'31688568106','1','1.00','280','retail','0','2023-07-05 17:41:46','','','','0','Cash',0.00,'280','','','3','','1','2023-07-05 14:41:50','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-186.00','-187','Inclusive','branch','Inventory','','','','',''),('316885681214262432',3076,'31688568120','1','1.00','280','retail','0','2023-07-05 17:42:00','','','','0','Cash',0.00,'280','','','3','','1','2023-07-05 14:42:04','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-187.00','-188','Inclusive','branch','Inventory','','','','',''),('316885681368825834',3077,'31688568135','7','1.00','200','retail','0','2023-07-05 17:42:15','','','','0','Cash',0.00,'200','','','3','','1','2023-07-05 14:42:19','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-146.00','-147','Inclusive','branch','Inventory','','','','',''),('316885692540202038',3079,'31688569253','1','1.00','280','retail','0','2023-07-05 18:00:53','','','','0','Cash',0.00,'280','','','3','','1','2023-07-05 15:01:04','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-188.00','-189','Inclusive','branch','Inventory','','','','',''),('316885688224262432',3080,'31688568821','21','1.00','200','retail','0','2023-07-05 17:53:41','','','','0','Cash',0.00,'200','','','3','','1','2023-07-05 15:36:14','','2','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-344.00','-345','Inclusive','branch','Inventory','','','','',''),('316885713571825134',3081,'31688568821','21','1.00','200','retail','0','2023-07-05 18:35:56','','','','0','Cash',0.00,'200','','','3','','1','2023-07-05 15:36:14','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-345.00','-346','Inclusive','branch','Inventory','','','','',''),('316885714508200832',3082,'31688571449','11','1.00','280','retail','0','2023-07-05 18:37:29','','','','0','Cash',0.00,'280','','','3','','1','2023-07-05 15:37:40','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-3.00','-4','Inclusive','branch','Inventory','','','','',''),('316885714784272432',3083,'31688571477','21','1.00','200','retail','0','2023-07-05 18:37:57','','','','0','Cash',0.00,'200','','','3','','1','2023-07-05 15:38:18','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-346.00','-347','Inclusive','branch','Inventory','','','','',''),('316885715352222032',3084,'31688571534','3','1.00','200','retail','0','2023-07-05 18:38:54','','','','0','Cash',0.00,'200','','','3','','1','2023-07-05 15:39:09','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-86.00','-87','Inclusive','branch','Inventory','','','','',''),('316885716403421300',3085,'31688571639','21','1.00','200','retail','0','2023-07-05 18:40:39','','','','0','Cash',0.00,'200','','','3','','1','2023-07-05 15:40:51','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-347.00','-348','Inclusive','branch','Inventory','','','','',''),('316885716652222032',3086,'31688571664','21','1.00','200','retail','0','2023-07-05 18:41:04','','','','0','Cash',0.00,'200','','','3','','1','2023-07-05 15:41:11','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-348.00','-349','Inclusive','branch','Inventory','','','','',''),('316885716680202038',3087,'31688571664','21','1.00','200','retail','0','2023-07-05 18:41:07','','','','0','Cash',0.00,'200','','','3','','1','2023-07-05 15:41:11','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-349.00','-350','Inclusive','branch','Inventory','','','','',''),('316885717334272432',3088,'31688571732','38','1.00','350','retail','0','2023-07-05 18:42:12','','','','0','Cash',0.00,'350','','','3','','1','2023-07-05 15:42:25','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-371.00','-372','Inclusive','branch','Inventory','','','','',''),('316885734950202038',3089,'31688573494','38','1.00','350','retail','0','2023-07-05 19:11:35','','','','0','Cash',0.00,'350','','','3','','1','2023-07-05 16:11:42','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-372.00','-373','Inclusive','branch','Inventory','','','','',''),('316885735132222032',3090,'31688573512','38','1.00','350','retail','0','2023-07-05 19:11:52','','','','0','Cash',0.00,'350','','','3','','1','2023-07-05 16:11:56','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-373.00','-374','Inclusive','branch','Inventory','','','','',''),('316885735283825334',3091,'31688573527','38','1.00','350','retail','0','2023-07-05 19:12:07','','','','0','Cash',0.00,'350','','','3','','1','2023-07-05 16:12:11','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-374.00','-375','Inclusive','branch','Inventory','','','','',''),('316885735420202038',3092,'31688573541','15','1.00','200','retail','0','2023-07-05 19:12:21','','','','0','Cash',0.00,'200','','','3','','1','2023-07-05 16:12:26','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-13.00','-14','Inclusive','branch','Inventory','','','','',''),('316885789582865382',3093,'31688578957','23','1.00','250','retail','0','2023-07-05 20:42:37','','','','0','Cash',0.00,'250','','','3','','1','2023-07-05 17:42:40','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-128.00','-129','Inclusive','branch','Inventory','','','','',''),('316885791423421300',3094,'31688579141','40','1.00','600','retail','0','2023-07-05 20:45:41','','','','0','Cash',0.00,'600','','','3','','1','2023-07-05 17:45:45','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-30.00','-31','Inclusive','branch','Inventory','','','','',''),('316885802100326242',3095,'31688580209','1','1.00','280','retail','0','2023-07-05 21:03:29','','','','0','Cash',0.00,'280','','','3','','1','2023-07-05 18:03:55','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-189.00','-190','Inclusive','branch','Inventory','','','','',''),('316885802148240832',3096,'31688580209','1','1.00','280','retail','0','2023-07-05 21:03:33','','','','0','Cash',0.00,'280','','','3','','1','2023-07-05 18:03:55','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-190.00','-191','Inclusive','branch','Inventory','','','','',''),('316885802334282432',3097,'31688580209','26','1.00','100','retail','0','2023-07-05 21:03:52','','','','0','Cash',0.00,'100','','','3','','1','2023-07-05 18:03:55','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-23.00','-24','Inclusive','branch','Inventory','','','','',''),('316885805110202038',3098,'31688580510','3','1.00','200','retail','0','2023-07-05 21:08:30','','','','0','Cash',0.00,'200','','','3','','1','2023-07-05 18:08:43','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-87.00','-88','Inclusive','branch','Inventory','','','','',''),('316885805722067382',3099,'31688580571','2','1.00','250','retail','0','2023-07-05 21:09:31','','','','0','Cash',0.00,'250','','','3','','1','2023-07-05 18:09:50','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-72.00','-73','Inclusive','branch','Inventory','','','','',''),('316886356115826534',3100,'31688635610','1','1.00','280','retail','0','2023-07-06 12:26:50','','','','0','Cash',0.00,'280','','','3','','1','2023-07-06 09:27:11','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-191.00','-192','Inclusive','branch','Inventory','','','','',''),('316886356142222032',3101,'31688635610','1','1.00','280','retail','0','2023-07-06 12:26:53','','','','0','Cash',0.00,'280','','','3','','1','2023-07-06 09:27:11','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-192.00','-193','Inclusive','branch','Inventory','','','','',''),('316886356170202038',3102,'31688635610','1','1.00','280','retail','0','2023-07-06 12:26:57','','','','0','Cash',0.00,'280','','','3','','1','2023-07-06 09:27:11','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-193.00','-194','Inclusive','branch','Inventory','','','','',''),('316886356530202038',3103,'31688635652','21','1.00','200','retail','0','2023-07-06 12:27:32','','','','0','Cash',0.00,'200','','','3','','1','2023-07-06 09:27:48','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-350.00','-351','Inclusive','branch','Inventory','','','','',''),('316886356793022376',3104,'31688635678','38','1.00','350','retail','0','2023-07-06 12:27:58','','','','0','Cash',0.00,'350','','','3','','1','2023-07-06 09:28:02','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-375.00','-376','Inclusive','branch','Inventory','','','','',''),('316886356942569382',3105,'31688635693','11','1.00','280','retail','0','2023-07-06 12:28:13','','','','0','Cash',0.00,'280','','','3','','1','2023-07-06 09:28:17','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-4.00','-5','Inclusive','branch','Inventory','','','','',''),('316886357205826534',3106,'31688635719','38','1.00','350','retail','0','2023-07-06 12:28:39','','','','0','Cash',0.00,'350','','','3','','1','2023-07-06 09:28:42','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-376.00','-377','Inclusive','branch','Inventory','','','','',''),('316886365060202038',3107,'31688636505','21','1.00','200','retail','0','2023-07-06 12:41:45','','','','0','Cash',0.00,'200','','','3','','1','2023-07-06 09:41:48','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-351.00','-352','Inclusive','branch','Inventory','','','','',''),('316886365414232432',3108,'31688636540','61','1.00','150','retail','0','2023-07-06 12:42:20','','','','100','Cash',0.00,'150','','','3','','1','2023-07-06 09:42:26','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Service','1110','4000','5500','',''),('416886461822404388',3109,'41688646181','38','1.00','350','retail','0','2023-07-06 15:23:01','','','','0','Cash',0.00,'350','','','4','','1','2023-07-06 12:23:08','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-377.00','-378','Inclusive','branch','Inventory','','','','',''),('416886513870661220',3110,'41688651386','21','1.00','200','retail','0','2023-07-06 16:49:46','','','','0','Cash',0.00,'200','','','4','','1','2023-07-06 13:49:50','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-352.00','-353','Inclusive','branch','Inventory','','','','',''),('416886528680202038',3111,'41688652867','60','1.00','100','retail','0','2023-07-06 17:14:27','','','','70','Cash',0.00,'100','','','4','','1','2023-07-06 14:14:30','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','19.00','18','Inclusive','branch','Inventory','1110','4000','5500','',''),('416886558003421300',3112,'41688655799','1','1.00','280','retail','0','2023-07-06 18:03:19','','','','0','Cash',0.00,'280','','','4','','1','2023-07-06 15:03:24','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-194.00','-195','Inclusive','branch','Inventory','','','','',''),('416886584902869382',3113,'41688658489','38','1.00','350','retail','0','2023-07-06 18:48:09','','','','0','Cash',0.00,'350','','','4','','1','2023-07-06 15:48:13','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-378.00','-379','Inclusive','branch','Inventory','','','','',''),('416886641892468382',3114,'41688664188','2','1.00','250','retail','0','2023-07-06 20:23:08','','','','0','Cash',0.00,'250','','','4','','1','2023-07-06 17:23:19','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-73.00','-74','Inclusive','branch','Inventory','','','','',''),('416886641963022391',3115,'41688664188','34','1.00','300','retail','0','2023-07-06 20:23:15','','','','0','Cash',0.00,'300','','','4','','1','2023-07-06 17:23:19','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-64.00','-65','Inclusive','branch','Inventory','','','','',''),('416886652244262432',3116,'41688665223','6','1.00','280','retail','0','2023-07-06 20:40:23','','','','0','Cash',0.00,'280','','','4','','1','2023-07-06 17:40:26','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-26.00','-27','Inclusive','branch','Inventory','','','','',''),('416886660588280832',3117,'41688666057','4','1.00','150','retail','0','2023-07-06 20:54:17','','','','0','Cash',0.00,'150','','','4','','1','2023-07-06 17:54:25','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-41.00','-42','Inclusive','branch','Inventory','','','','',''),('416886660620202038',3118,'41688666057','4','1.00','150','retail','0','2023-07-06 20:54:21','','','','0','Cash',0.00,'150','','','4','','1','2023-07-06 17:54:25','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-42.00','-43','Inclusive','branch','Inventory','','','','',''),('416886661202222032',3119,'41688666119','1','1.00','280','retail','0','2023-07-06 20:55:19','','','','0','Cash',0.00,'280','','','4','','1','2023-07-06 17:55:54','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-195.00','-196','Inclusive','branch','Inventory','','','','',''),('416886661413421300',3120,'41688666119','46','1.00','200','retail','0','2023-07-06 20:55:40','','','','0','Cash',0.00,'200','','','4','','1','2023-07-06 17:55:54','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','25.00','24','Inclusive','branch','Inventory','','','','',''),('416886678612766382',3121,'41688667860','38','1.00','350','retail','0','2023-07-06 21:24:20','','','','0','Cash',0.00,'350','','','4','','1','2023-07-06 18:24:25','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-379.00','-380','Inclusive','branch','Inventory','','','','',''),('416886691972222032',3122,'41688669196','1','1.00','280','retail','0','2023-07-06 21:46:36','','','','0','Cash',0.00,'280','','','4','','1','2023-07-06 18:46:40','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-196.00','-197','Inclusive','branch','Inventory','','','','',''),('416887165758250832',3123,'41688716573','20','1.00','200','retail','0','2023-07-07 10:56:14','','','','0','Cash',0.00,'200','','','4','','1','2023-07-07 07:56:21','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-125.00','-126','Inclusive','branch','Inventory','','','','',''),('416887165783022375',3124,'41688716573','20','1.00','200','retail','0','2023-07-07 10:56:17','','','','0','Cash',0.00,'200','','','4','','1','2023-07-07 07:56:21','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-126.00','-127','Inclusive','branch','Inventory','','','','',''),('416887178913421300',3125,'41688717890','17','1.00','200','retail','0','2023-07-07 11:18:10','','','','0','Cash',0.00,'200','','','4','','1','2023-07-07 08:18:15','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-47.00','-48','Inclusive','branch','Inventory','','','','',''),('416887248452464382',3126,'41688724844','38','1.00','350','retail','0','2023-07-07 13:14:04','','','','0','Cash',0.00,'350','','','4','','1','2023-07-07 10:14:09','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-380.00','-381','Inclusive','branch','Inventory','','','','',''),('416887250835827544',3127,'41688725082','21','1.00','200','retail','0','2023-07-07 13:18:02','','','','0','Cash',0.00,'200','','','4','','1','2023-07-07 10:18:08','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-353.00','-354','Inclusive','branch','Inventory','','','','',''),('416887251172561382',3128,'41688725116','60','1.00','100','retail','0','2023-07-07 13:18:36','','','','70','Cash',0.00,'100','','','4','','1','2023-07-07 10:18:41','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','18.00','17','Inclusive','branch','Inventory','1110','4000','5500','',''),('416887322054232432',3129,'41688732204','11','1.00','280','retail','0','2023-07-07 15:16:44','','','','0','Cash',0.00,'280','','','4','','1','2023-07-07 12:16:50','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-5.00','-6','Inclusive','branch','Inventory','','','','',''),('416887385392863382',3130,'41688738538','21','1.00','200','retail','0','2023-07-07 17:02:18','','','','0','Cash',0.00,'200','','','4','','1','2023-07-07 14:02:22','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-354.00','-355','Inclusive','branch','Inventory','','','','',''),('416887435244242432',3131,'41688743523','23','1.00','250','retail','0','2023-07-07 18:25:23','','','','0','Cash',0.00,'250','','','4','','1','2023-07-07 15:26:41','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-129.00','-130','Inclusive','branch','Inventory','','','','',''),('416887435613421300',3132,'41688743523','11','1.00','280','retail','0','2023-07-07 18:26:00','','','','0','Cash',0.00,'280','','','4','','1','2023-07-07 15:26:41','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-6.00','-7','Inclusive','branch','Inventory','','','','',''),('416887435654242432',3133,'41688743523','11','1.00','280','retail','0','2023-07-07 18:26:04','','','','0','Cash',0.00,'280','','','4','','1','2023-07-07 15:26:41','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-7.00','-8','Inclusive','branch','Inventory','','','','',''),('416887435873421300',3134,'41688743523','26','1.00','100','retail','0','2023-07-07 18:26:26','','','','0','Cash',0.00,'100','','','4','','1','2023-07-07 15:26:41','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-24.00','-25','Inclusive','branch','Inventory','','','','',''),('416887435923421300',3135,'41688743523','24','1.00','100','retail','0','2023-07-07 18:26:31','','','','0','Cash',0.00,'100','','','4','','1','2023-07-07 15:26:41','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-23.00','-24','Inclusive','branch','Inventory','','','','',''),('416887459758250832',3136,'41688745974','1','1.00','280','retail','0','2023-07-07 19:06:14','','','','0','Cash',0.00,'280','','','4','','1','2023-07-07 16:06:26','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-197.00','-198','Inclusive','branch','Inventory','','','','',''),('416887459804242432',3137,'41688745974','11','1.00','280','retail','0','2023-07-07 19:06:19','','','','0','Cash',0.00,'280','','','4','','1','2023-07-07 16:06:26','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-8.00','-9','Inclusive','branch','Inventory','','','','',''),('416887479684242432',3138,'41688747967','17','1.00','200','retail','0','2023-07-07 19:39:27','','','','0','Cash',0.00,'200','','','4','','1','2023-07-07 16:39:37','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-48.00','-49','Inclusive','branch','Inventory','','','','',''),('416887479962222032',3139,'41688747995','17','1.00','200','retail','0','2023-07-07 19:39:55','','','','0','Cash',0.00,'200','','','4','','1','2023-07-07 16:39:58','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-49.00','-50','Inclusive','branch','Inventory','','','','',''),('416887480142222032',3140,'41688748014','18','1.00','200','retail','0','2023-07-07 19:40:14','','','','0','Cash',0.00,'200','','','4','','1','2023-07-07 16:40:25','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-22.00','-23','Inclusive','branch','Inventory','','','','',''),('416887517164252432',3141,'41688751715','21','1.00','200','retail','0','2023-07-07 20:41:55','','','','0','Cash',0.00,'200','','','4','','1','2023-07-07 17:42:03','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-355.00','-356','Inclusive','branch','Inventory','','','','',''),('416887517193421300',3142,'41688751715','21','1.00','200','retail','0','2023-07-07 20:41:58','','','','0','Cash',0.00,'200','','','4','','1','2023-07-07 17:42:03','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-356.00','-357','Inclusive','branch','Inventory','','','','',''),('416887542010202038',3143,'41688754200','23','1.00','250','retail','0','2023-07-07 21:23:20','','','','0','Cash',0.00,'250','','','4','','1','2023-07-07 18:23:24','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-130.00','-131','Inclusive','branch','Inventory','','','','',''),('416887542743421300',3144,'41688754273','1','1.00','280','retail','0','2023-07-07 21:24:33','','','','0','Cash',0.00,'280','','','4','','1','2023-07-07 18:24:36','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-198.00','-199','Inclusive','branch','Inventory','','','','',''),('316888054788280832',3147,'31688805477','7','1.00','200','retail','0','2023-07-08 11:37:57','','','','0','Cash',0.00,'200','','','3','','1','2023-07-08 08:53:44','','1','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-147.00','-148','Inclusive','branch','Inventory','','','','',''),('316888054812568382',3148,'31688805477','7','1.00','200','retail','0','2023-07-08 11:38:00','','','','0','Cash',0.00,'200','','','3','','1','2023-07-08 08:53:44','','1','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-148.00','-149','Inclusive','branch','Inventory','','','','',''),('316888064203022324',3149,'31688805477','7','1.00','200','retail','0','2023-07-08 11:53:39','','','','0','Cash',0.00,'200','','','3','','1','2023-07-08 08:53:44','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-149.00','-150','Inclusive','branch','Inventory','','','','',''),('316888200873421300',3150,'31688820086','7','1.00','200','retail','0','2023-07-08 15:41:26','','','','0','Cash',0.00,'200','','','3','','1','2023-07-08 12:45:45','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-150.00','-151','Inclusive','branch','Inventory','','','','',''),('316888200914222432',3151,'31688820086','7','1.00','200','retail','0','2023-07-08 15:41:30','','','','0','Cash',0.00,'200','','','3','','1','2023-07-08 12:45:45','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-151.00','-152','Inclusive','branch','Inventory','','','','',''),('316888202904222432',3152,'31688820086','47','1.00','200','retail','0','2023-07-08 15:44:49','','','','0','Cash',0.00,'200','','','3','','1','2023-07-08 12:45:45','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','34.00','33','Inclusive','branch','Inventory','','','','',''),('316888202942233003',3153,'31688820086','46','1.00','200','retail','0','2023-07-08 15:44:53','','','','0','Cash',0.00,'200','','','3','','1','2023-07-08 12:45:45','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','24.00','23','Inclusive','branch','Inventory','','','','',''),('316888203414222432',3154,'31688820086','44','1.00','500','retail','0','2023-07-08 15:45:40','','','','0','Cash',0.00,'500','','','3','','1','2023-07-08 12:45:45','','9','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','21.00','20','Inclusive','branch','Inventory','','','','',''),('316888244922469382',3155,'31688824491','5','1.00','300','retail','0','2023-07-08 16:54:51','','','','0','Cash',0.00,'300','','','3','','1','2023-07-08 13:54:56','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-89.00','-90','Inclusive','branch','Inventory','','','','',''),('416888245350202038',3156,'41688824534','61','1.00','150','retail','0','2023-07-08 16:55:34','','','','100','Cash',0.00,'150','','','4','','1','2023-07-08 13:55:39','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Service','1110','4000','5500','',''),('416888252662222032',3157,'41688825265','4','1.00','150','retail','0','2023-07-08 17:07:45','','','','0','Cash',0.00,'150','','','4','','1','2023-07-08 14:07:48','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-43.00','-44','Inclusive','branch','Inventory','','','','',''),('416888261253022321',3158,'41688826124','11','1.00','280','retail','0','2023-07-08 17:22:04','','','','0','Cash',0.00,'280','','','4','','1','2023-07-08 14:22:09','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-9.00','-10','Inclusive','branch','Inventory','','','','',''),('416888277793022377',3159,'41688827778','11','1.00','280','retail','0','2023-07-08 17:49:38','','','','0','Cash',0.00,'280','','','4','','1','2023-07-08 14:50:35','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-10.00','-11','Inclusive','branch','Inventory','','','','',''),('416888277868260832',3160,'41688827778','38','1.00','350','retail','0','2023-07-08 17:49:45','','','','0','Cash',0.00,'350','','','4','','1','2023-07-08 14:50:35','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-381.00','-382','Inclusive','branch','Inventory','','','','',''),('416888277957828744',3161,'41688827778','20','1.00','200','retail','0','2023-07-08 17:49:54','','','','0','Cash',0.00,'200','','','4','','1','2023-07-08 14:50:35','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-127.00','-128','Inclusive','branch','Inventory','','','','',''),('416888277982222032',3162,'41688827778','22','1.00','250','retail','0','2023-07-08 17:49:58','','','','0','Cash',0.00,'250','','','4','','1','2023-07-08 14:50:35','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-34.00','-35','Inclusive','branch','Inventory','','','','',''),('416888278072760382',3163,'41688827778','21','1.00','200','retail','0','2023-07-08 17:50:06','','','','0','Cash',0.00,'200','','','4','','1','2023-07-08 14:50:35','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-357.00','-358','Inclusive','branch','Inventory','','','','',''),('416888278322222032',3164,'41688827778','26','1.00','100','retail','0','2023-07-08 17:50:31','','','','0','Cash',0.00,'100','','','4','','1','2023-07-08 14:50:35','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-25.00','-26','Inclusive','branch','Inventory','','','','',''),('416888281442864382',3165,'41688828143','7','1.00','200','retail','0','2023-07-08 17:55:43','','','','0','Cash',0.00,'200','','','4','','1','2023-07-08 14:55:46','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-152.00','-153','Inclusive','branch','Inventory','','','','',''),('416888320028220832',3166,'41688832001','1','1.00','280','retail','0','2023-07-08 19:00:01','','','','0','Cash',0.00,'280','','','4','','1','2023-07-08 16:00:09','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-199.00','-200','Inclusive','branch','Inventory','','','','',''),('416888320052828244',3167,'41688832001','3','1.00','200','retail','0','2023-07-08 19:00:04','','','','0','Cash',0.00,'200','','','4','','1','2023-07-08 16:00:09','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-88.00','-89','Inclusive','branch','Inventory','','','','',''),('416888337582420302',3168,'41688833757','34','1.00','300','retail','0','2023-07-08 19:29:17','','','','0','Cash',0.00,'300','','','4','','1','2023-07-08 16:29:21','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-65.00','-66','Inclusive','branch','Inventory','','','','',''),('416888363823022383',3169,'41688836381','38','1.00','350','retail','0','2023-07-08 20:13:01','','','','0','Cash',0.00,'350','','','4','','1','2023-07-08 17:13:05','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-382.00','-383','Inclusive','branch','Inventory','','','','',''),('416888371613022361',3170,'41688837160','7','1.00','200','retail','0','2023-07-08 20:26:00','','','','0','Cash',0.00,'200','','','4','','1','2023-07-08 17:29:44','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-153.00','-154','Inclusive','branch','Inventory','','','','',''),('416888383488828844',3171,'41688838347','8','1.00','150','retail','0','2023-07-08 20:45:47','','','','0','Cash',0.00,'150','','','4','','1','2023-07-08 17:45:51','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-71.00','-72','Inclusive','branch','Inventory','','','','',''),('416888403693421300',3172,'41688840368','7','1.00','200','retail','0','2023-07-08 21:19:28','','','','0','Cash',0.00,'200','','','4','','1','2023-07-08 18:19:32','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-154.00','-155','Inclusive','branch','Inventory','','','','',''),('416888413402164382',3173,'41688841339','5','1.00','300','retail','0','2023-07-08 21:35:39','','','','0','Cash',0.00,'300','','','4','','1','2023-07-08 18:35:44','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-90.00','-91','Inclusive','branch','Inventory','','','','',''),('416888861343421300',3174,'41688886133','20','1.00','200','retail','0','2023-07-09 10:02:13','','','','0','Cash',0.00,'200','','','4','','1','2023-07-09 07:02:16','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-128.00','-129','Inclusive','branch','Inventory','','','','',''),('416888861494282432',3175,'41688886148','20','1.00','200','retail','0','2023-07-09 10:02:28','','','','0','Cash',0.00,'200','','','4','','1','2023-07-09 07:02:32','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-129.00','-130','Inclusive','branch','Inventory','','','','',''),('416888861694282432',3176,'41688886168','1','1.00','280','retail','0','2023-07-09 10:02:48','','','','0','Cash',0.00,'280','','','4','','1','2023-07-09 07:02:53','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-200.00','-201','Inclusive','branch','Inventory','','','','',''),('416888862042222032',3177,'41688886203','12','1.00','250','retail','0','2023-07-09 10:03:23','','','','0','Cash',0.00,'250','','','4','','1','2023-07-09 07:03:27','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-74.00','-75','Inclusive','branch','Inventory','','','','',''),('416889065804202432',3178,'41688906579','2','1.00','250','retail','0','2023-07-09 15:42:59','','','','0','Cash',0.00,'250','','','4','','1','2023-07-09 12:43:08','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-74.00','-75','Inclusive','branch','Inventory','','','','',''),('316889095239829934',3179,'31688909523','1','1.00','280','retail','0','2023-07-09 16:32:03','','','','0','Cash',0.00,'280','','','3','','1','2023-07-09 13:32:16','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-201.00','-202','Inclusive','branch','Inventory','','','','',''),('416889135683022365',3180,'41688913567','1','1.00','280','retail','0','2023-07-09 17:39:27','','','','0','Cash',0.00,'280','','','4','','1','2023-07-09 14:39:32','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-202.00','-203','Inclusive','branch','Inventory','','','','',''),('316889150772222032',3181,'31688915076','60','1.00','100','retail','0','2023-07-09 18:04:36','','','','70','Cash',0.00,'100','','','3','','1','2023-07-09 15:04:39','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','17.00','16','Inclusive','branch','Inventory','1110','4000','5500','',''),('316889173964212432',3182,'31688917395','12','1.00','250','retail','0','2023-07-09 18:43:15','','','','0','Cash',0.00,'250','','','3','','1','2023-07-09 15:43:27','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-75.00','-76','Inclusive','branch','Inventory','','','','',''),('316889174042222032',3183,'31688917395','24','1.00','100','retail','0','2023-07-09 18:43:23','','','','0','Cash',0.00,'100','','','3','','1','2023-07-09 15:43:27','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-24.00','-25','Inclusive','branch','Inventory','','','','',''),('316889206943421300',3184,'31688920693','38','1.00','350','retail','0','2023-07-09 19:38:13','','','','0','Cash',0.00,'350','','','3','','1','2023-07-09 16:38:16','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-383.00','-384','Inclusive','branch','Inventory','','','','',''),('316889240332463382',3185,'31688924032','23','1.00','250','retail','0','2023-07-09 20:33:52','','','','0','Cash',0.00,'250','','','3','','1','2023-07-09 17:34:18','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-131.00','-132','Inclusive','branch','Inventory','','','','',''),('316889240442464382',3186,'31688924032','23','1.00','250','retail','0','2023-07-09 20:34:03','','','','0','Cash',0.00,'250','','','3','','1','2023-07-09 17:34:18','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-132.00','-133','Inclusive','branch','Inventory','','','','',''),('316889240484222432',3187,'31688924032','23','1.00','250','retail','0','2023-07-09 20:34:07','','','','0','Cash',0.00,'250','','','3','','1','2023-07-09 17:34:18','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-133.00','-134','Inclusive','branch','Inventory','','','','',''),('316889267753022377',3188,'31688926774','11','1.00','280','retail','0','2023-07-09 21:19:34','','','','0','Cash',0.00,'280','','','3','','1','2023-07-09 18:19:47','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-11.00','-12','Inclusive','branch','Inventory','','','','',''),('316889267846829634',3189,'31688926774','21','1.00','200','retail','0','2023-07-09 21:19:43','','','','0','Cash',0.00,'200','','','3','','1','2023-07-09 18:19:47','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-358.00','-359','Inclusive','branch','Inventory','','','','',''),('316889307363421300',3190,'31688930735','12','1.00','250','retail','0','2023-07-09 22:25:35','','','','0','Cash',0.00,'250','','','3','','1','2023-07-09 19:25:39','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-76.00','-77','Inclusive','branch','Inventory','','','','',''),('316889310643022360',3191,'31688931063','20','1.00','200','retail','0','2023-07-09 22:31:03','','','','0','Cash',0.00,'200','','','3','','1','2023-07-09 19:31:11','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-130.00','-131','Inclusive','branch','Inventory','','','','',''),('316889310874232432',3192,'31688931086','5','1.00','300','retail','0','2023-07-09 22:31:26','','','','0','Cash',0.00,'300','','','3','','1','2023-07-09 19:31:37','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-91.00','-92','Inclusive','branch','Inventory','','','','',''),('316889311123421300',3193,'31688931111','21','1.00','200','retail','0','2023-07-09 22:31:51','','','','0','Cash',0.00,'200','','','3','','1','2023-07-09 19:32:07','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-359.00','-360','Inclusive','branch','Inventory','','','','',''),('316889311373022331',3194,'31688931136','21','1.00','200','retail','0','2023-07-09 22:32:16','','','','0','Cash',0.00,'200','','','3','','1','2023-07-09 19:32:27','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-360.00','-361','Inclusive','branch','Inventory','','','','',''),('416889730148240832',3195,'41688973014','1','1.00','280','retail','0','2023-07-10 10:10:14','','','','0','Cash',0.00,'280','','','4','','1','2023-07-10 07:10:18','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-203.00','-204','Inclusive','branch','Inventory','','','','',''),('416889796079829944',3196,'41688979606','12','1.00','250','retail','0','2023-07-10 12:00:06','','','','0','Cash',0.00,'250','','','4','','1','2023-07-10 09:00:14','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-77.00','-78','Inclusive','branch','Inventory','','','','',''),('416889995674292432',3197,'41688999566','21','1.00','200','retail','0','2023-07-10 17:32:47','','','','0','Cash',0.00,'200','','','4','','1','2023-07-10 14:32:51','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-361.00','-362','Inclusive','branch','Inventory','','','','',''),('416890011774202432',3198,'41689001176','21','1.00','200','retail','0','2023-07-10 17:59:36','','','','0','Cash',0.00,'200','','','4','','1','2023-07-10 14:59:50','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-362.00','-363','Inclusive','branch','Inventory','','','','',''),('416890023052820244',3199,'41689002304','23','1.00','250','retail','0','2023-07-10 18:18:24','','','','0','Cash',0.00,'250','','','4','','1','2023-07-10 15:18:30','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-134.00','-135','Inclusive','branch','Inventory','','','','',''),('416890104298290832',3200,'41689010428','23','1.00','250','retail','0','2023-07-10 20:33:48','','','','0','Cash',0.00,'250','','','4','','1','2023-07-10 17:34:01','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-135.00','-136','Inclusive','branch','Inventory','','','','',''),('416890104320202039',3201,'41689010428','23','1.00','250','retail','0','2023-07-10 20:33:51','','','','0','Cash',0.00,'250','','','4','','1','2023-07-10 17:34:01','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-136.00','-137','Inclusive','branch','Inventory','','','','',''),('416890104362063392',3202,'41689010428','23','1.00','250','retail','0','2023-07-10 20:33:55','','','','0','Cash',0.00,'250','','','4','','1','2023-07-10 17:34:01','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-137.00','-138','Inclusive','branch','Inventory','','','','',''),('316786378553421300',3203,'31678637854','57','1.00','350','retail','0','2023-07-14 21:17:59','','','','200','Cash',0.00,'350','','','3','','1','2023-07-14 18:18:04','','5','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Service','1110','4000','5500','',''),('516893586788823854',3204,'31678637854','50','1.00','800','retail','0','2023-07-14 21:17:59','','','','650','Cash',0.00,'800','','','3','','1','2023-07-14 18:18:04','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','13.00','12','Inclusive','branch','None Inventory','1110','4000','5500','',''),('316893611611823134',3205,'31689361160','21','1.00','200','retail','0','2023-07-14 21:59:20','','','','0','Cash',0.00,'200','','','3','','1','2023-07-14 18:59:23','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-363.00','-364','Inclusive','branch','Inventory','','','','',''),('316893620463022340',3206,'31689362045','17','1.00','200','retail','0','2023-07-14 22:14:05','','','','0','Cash',0.00,'200','','','3','','1','2023-07-14 19:14:07','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-50.00','-51','Inclusive','branch','Inventory','','','','',''),('316893620652232228',3207,'31689362064','7','1.00','200','retail','0','2023-07-14 22:14:24','','','','0','Cash',0.00,'200','','','3','','1','2023-07-14 19:14:28','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-155.00','-156','Inclusive','branch','Inventory','','','','',''),('316893620952823234',3208,'31689362094','1','1.00','280','retail','0','2023-07-14 22:14:54','','','','0','Cash',0.00,'280','','','3','','1','2023-07-14 19:14:57','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-204.00','-205','Inclusive','branch','Inventory','','','','',''),('316893621468260832',3209,'31689362146','1','1.00','280','retail','0','2023-07-14 22:15:46','','','','0','Cash',0.00,'280','','','3','','1','2023-07-14 19:15:48','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-205.00','-206','Inclusive','branch','Inventory','','','','',''),('316893621803421300',3210,'31689362180','38','1.00','350','retail','0','2023-07-14 22:16:20','','','','0','Cash',0.00,'350','','','3','','1','2023-07-14 19:16:47','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-384.00','-385','Inclusive','branch','Inventory','','','','',''),('316893621840202039',3211,'31689362180','38','1.00','350','retail','0','2023-07-14 22:16:23','','','','0','Cash',0.00,'350','','','3','','1','2023-07-14 19:16:47','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-385.00','-386','Inclusive','branch','Inventory','','','','',''),('316893621984262432',3212,'31689362180','47','1.00','200','retail','0','2023-07-14 22:16:38','','','','0','Cash',0.00,'200','','','3','','1','2023-07-14 19:16:47','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','33.00','32','Inclusive','branch','Inventory','','','','',''),('316893622018210832',3213,'31689362180','47','1.00','200','retail','0','2023-07-14 22:16:40','','','','0','Cash',0.00,'200','','','3','','1','2023-07-14 19:16:47','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','32.00','31','Inclusive','branch','Inventory','','','','',''),('316893622042823234',3214,'31689362180','47','1.00','200','retail','0','2023-07-14 22:16:43','','','','0','Cash',0.00,'200','','','3','','1','2023-07-14 19:16:47','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Inventory','','','','',''),('316893622462264392',3215,'31689362245','20','1.00','200','retail','0','2023-07-14 22:17:25','','','','0','Cash',0.00,'200','','','3','','1','2023-07-14 19:17:27','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-131.00','-132','Inclusive','branch','Inventory','','','','',''),('316893622574262432',3216,'31689362257','21','1.00','200','retail','0','2023-07-14 22:17:37','','','','0','Cash',0.00,'200','','','3','','1','2023-07-14 19:17:39','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-364.00','-365','Inclusive','branch','Inventory','','','','',''),('316893622911033402',3217,'31689362290','15','1.00','200','retail','0','2023-07-14 22:18:10','','','','0','Cash',0.00,'200','','','3','','1','2023-07-14 19:18:12','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-14.00','-15','Inclusive','branch','Inventory','','','','',''),('316893623214262432',3218,'31689362321','38','1.00','350','retail','0','2023-07-14 22:18:41','','','','0','Cash',0.00,'350','','','3','','1','2023-07-14 19:18:46','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-386.00','-387','Inclusive','branch','Inventory','','','','',''),('316893623240336242',3219,'31689362321','38','1.00','350','retail','0','2023-07-14 22:18:43','','','','0','Cash',0.00,'350','','','3','','1','2023-07-14 19:18:46','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-387.00','-388','Inclusive','branch','Inventory','','','','',''),('316893623478270832',3220,'31689362346','23','1.00','250','retail','0','2023-07-14 22:19:06','','','','0','Cash',0.00,'250','','','3','','1','2023-07-14 19:19:09','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-138.00','-139','Inclusive','branch','Inventory','','','','',''),('316893623693022363',3221,'31689362368','38','1.00','350','retail','0','2023-07-14 22:19:29','','','','0','Cash',0.00,'350','','','3','','1','2023-07-14 19:19:30','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-388.00','-389','Inclusive','branch','Inventory','','','','',''),('316893623912269392',3222,'31689362390','7','1.00','200','retail','0','2023-07-14 22:19:50','','','','0','Cash',0.00,'200','','','3','','1','2023-07-14 19:19:52','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-156.00','-157','Inclusive','branch','Inventory','','','','',''),('316893624068260832',3223,'31689362405','21','1.00','200','retail','0','2023-07-14 22:20:05','','','','0','Cash',0.00,'200','','','3','','1','2023-07-14 19:20:08','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-365.00','-366','Inclusive','branch','Inventory','','','','',''),('316893624248240832',3224,'31689362424','20','1.00','200','retail','0','2023-07-14 22:20:24','','','','0','Cash',0.00,'200','','','3','','1','2023-07-14 19:20:30','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-132.00','-133','Inclusive','branch','Inventory','','','','',''),('316893624412823234',3225,'31689362440','1','1.00','280','retail','0','2023-07-14 22:20:40','','','','0','Cash',0.00,'280','','','3','','1','2023-07-14 19:20:42','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-206.00','-207','Inclusive','branch','Inventory','','','','',''),('316893624612222032',3226,'31689362460','21','1.00','200','retail','0','2023-07-14 22:21:00','','','','0','Cash',0.00,'200','','','3','','1','2023-07-14 19:21:03','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-366.00','-367','Inclusive','branch','Inventory','','','','',''),('316893625092823234',3227,'31689362509','38','1.00','350','retail','0','2023-07-14 22:21:49','','','','0','Cash',0.00,'350','','','3','','1','2023-07-14 19:22:16','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-389.00','-390','Inclusive','branch','Inventory','','','','',''),('316893625333022335',3228,'31689362509','17','1.00','200','retail','0','2023-07-14 22:22:12','','','','0','Cash',0.00,'200','','','3','','1','2023-07-14 19:22:16','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-51.00','-52','Inclusive','branch','Inventory','','','','',''),('316893625513022355',3229,'31689362550','17','1.00','200','retail','0','2023-07-14 22:22:30','','','','0','Cash',0.00,'200','','','3','','1','2023-07-14 19:22:33','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-52.00','-53','Inclusive','branch','Inventory','','','','',''),('316893625748240832',3230,'31689362574','7','1.00','200','retail','0','2023-07-14 22:22:54','','','','0','Cash',0.00,'200','','','3','','1','2023-07-14 19:22:56','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-157.00','-158','Inclusive','branch','Inventory','','','','',''),('316893626210202039',3231,'31689362621','7','1.00','200','retail','0','2023-07-14 22:23:41','','','','0','Cash',0.00,'200','','','3','','1','2023-07-14 19:23:43','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-158.00','-159','Inclusive','branch','Inventory','','','','',''),('316893627044262432',3232,'31689362703','60','1.00','100','retail','0','2023-07-14 22:25:03','','','','70','Cash',0.00,'100','','','3','','1','2023-07-14 19:25:06','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','16.00','15','Inclusive','branch','Inventory','1110','4000','5500','',''),('316893627162222032',3233,'31689362715','5','1.00','300','retail','0','2023-07-14 22:25:15','','','','0','Cash',0.00,'300','','','3','','1','2023-07-14 19:25:19','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-92.00','-93','Inclusive','branch','Inventory','','','','',''),('316893628044262432',3234,'31689362803','6','1.00','280','retail','0','2023-07-14 22:26:43','','','','0','Cash',0.00,'280','','','3','','1','2023-07-14 19:26:46','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-27.00','-28','Inclusive','branch','Inventory','','','','',''),('316893628413421300',3235,'31689362840','38','1.00','350','retail','0','2023-07-14 22:27:20','','','','0','Cash',0.00,'350','','','3','','1','2023-07-14 19:27:22','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-390.00','-391','Inclusive','branch','Inventory','','','','',''),('316893628602266392',3236,'31689362859','21','1.00','200','retail','0','2023-07-14 22:27:39','','','','0','Cash',0.00,'200','','','3','','1','2023-07-14 19:27:42','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-367.00','-368','Inclusive','branch','Inventory','','','','',''),('316893628783421300',3237,'31689362877','2','1.00','250','retail','0','2023-07-14 22:27:57','','','','0','Cash',0.00,'250','','','3','','1','2023-07-14 19:27:59','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-75.00','-76','Inclusive','branch','Inventory','','','','',''),('316893629128220832',3238,'31689362911','23','1.00','250','retail','0','2023-07-14 22:28:31','','','','0','Cash',0.00,'250','','','3','','1','2023-07-14 19:28:34','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-139.00','-140','Inclusive','branch','Inventory','','','','',''),('316893629212222032',3239,'31689362920','1','1.00','280','retail','0','2023-07-14 22:28:40','','','','0','Cash',0.00,'280','','','3','','1','2023-07-14 19:28:44','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-207.00','-208','Inclusive','branch','Inventory','','','','',''),('316893629882268392',3240,'31689362987','19','1.00','200','retail','0','2023-07-14 22:29:47','','','','0','Cash',0.00,'200','','','3','','1','2023-07-14 19:29:51','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-8.00','-9','Inclusive','branch','Inventory','','','','',''),('316893630023022300',3241,'31689363002','7','1.00','200','retail','0','2023-07-14 22:30:02','','','','0','Cash',0.00,'200','','','3','','1','2023-07-14 19:30:04','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-159.00','-160','Inclusive','branch','Inventory','','','','',''),('316893631162361392',3242,'31689363115','45','1.00','350','retail','0','2023-07-14 22:31:55','','','','0','Cash',0.00,'350','','','3','','1','2023-07-14 19:31:58','','9','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','24.00','23','Inclusive','branch','Inventory','','','','',''),('316893631500202039',3243,'31689363149','19','1.00','200','retail','0','2023-07-14 22:32:29','','','','0','Cash',0.00,'200','','','3','','1','2023-07-14 19:32:31','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-9.00','-10','Inclusive','branch','Inventory','','','','',''),('316894133532222032',3245,'31689413352','1','1.00','280','retail','0','2023-07-15 12:29:12','','','','0','Cash',0.00,'280','','','3','','1','2023-07-15 09:48:39','','1','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-208.00','-209','Inclusive','branch','Inventory','','','','',''),('316894145163421300',3246,'31689413352','1','1.00','280','retail','0','2023-07-15 12:48:35','','','','0','Cash',0.00,'280','','','3','','1','2023-07-15 09:48:39','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-209.00','-210','Inclusive','branch','Inventory','','','','',''),('316894251613022361',3247,'31689425160','38','1.00','350','retail','0','2023-07-15 15:46:00','','','','0','Cash',0.00,'350','','','3','','1','2023-07-15 12:46:51','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-391.00','-392','Inclusive','branch','Inventory','','','','',''),('316894251710302232',3248,'31689425160','5','1.00','300','retail','0','2023-07-15 15:46:10','','','','0','Cash',0.00,'300','','','3','','1','2023-07-15 12:46:51','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-93.00','-94','Inclusive','branch','Inventory','','','','',''),('316894251835824534',3249,'31689425160','29','1.00','300','retail','0','2023-07-15 15:46:22','','','','0','Cash',0.00,'300','','','3','','1','2023-07-15 12:46:51','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-22.00','-23','Inclusive','branch','Inventory','','','','',''),('416894252565824544',3250,'41689425255','12','1.00','250','retail','0','2023-07-15 15:47:35','','','','0','Cash',0.00,'250','','','4','','1','2023-07-15 12:47:38','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-78.00','-79','Inclusive','branch','Inventory','','','','',''),('416894260483421300',3251,'41689426047','11','1.00','280','retail','0','2023-07-15 16:00:47','','','','0','Cash',0.00,'280','','','4','','1','2023-07-15 13:00:54','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-12.00','-13','Inclusive','branch','Inventory','','','','',''),('416894260514222432',3252,'41689426047','7','1.00','200','retail','0','2023-07-15 16:00:50','','','','0','Cash',0.00,'200','','','4','','1','2023-07-15 13:00:54','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-160.00','-161','Inclusive','branch','Inventory','','','','',''),('416894354715824544',3253,'41689435471','21','1.00','200','retail','0','2023-07-15 18:37:51','','','','0','Cash',0.00,'200','','','4','','1','2023-07-15 15:37:53','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-368.00','-369','Inclusive','branch','Inventory','','','','',''),('416894369644232432',3254,'41689436964','38','1.00','350','retail','0','2023-07-15 19:02:44','','','','0','Cash',0.00,'350','','','4','','1','2023-07-15 16:02:48','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-392.00','-393','Inclusive','branch','Inventory','','','','',''),('416894381052860392',3255,'41689438104','62','1.00','200','retail','0','2023-07-15 19:21:44','','','','200','Cash',0.00,'200','','','4','','1','2023-07-15 16:21:51','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','25.00','24','Inclusive','branch','Inventory','1110','4000','5500','',''),('416894381083421300',3256,'41689438104','16','1.00','200','retail','0','2023-07-15 19:21:48','','','','0','Cash',0.00,'200','','','4','','1','2023-07-15 16:21:51','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-22.00','-23','Inclusive','branch','Inventory','','','','',''),('416894381188824844',3257,'41689438117','16','1.00','200','retail','0','2023-07-15 19:21:57','','','','0','Cash',0.00,'200','','','4','','1','2023-07-15 16:22:02','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-23.00','-24','Inclusive','branch','Inventory','','','','',''),('416894433333421300',3258,'41689443332','21','1.00','200','retail','0','2023-07-15 20:48:52','','','','0','Cash',0.00,'200','','','4','','1','2023-07-15 17:48:56','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-369.00','-370','Inclusive','branch','Inventory','','','','',''),('416894462133022312',3259,'41689446212','1','1.00','280','retail','0','2023-07-15 21:36:52','','','','0','Cash',0.00,'280','','','4','','1','2023-07-15 18:37:08','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-210.00','-211','Inclusive','branch','Inventory','','','','',''),('416894462256824644',3260,'41689446212','26','1.00','100','retail','0','2023-07-15 21:37:05','','','','0','Cash',0.00,'100','','','4','','1','2023-07-15 18:37:08','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-26.00','-27','Inclusive','branch','Inventory','','','','',''),('416894462370202039',3261,'41689446237','5','1.00','300','retail','0','2023-07-15 21:37:17','','','','0','Cash',0.00,'300','','','4','','1','2023-07-15 18:37:20','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-94.00','-95','Inclusive','branch','Inventory','','','','',''),('416894462486824644',3262,'41689446247','1','1.00','280','retail','0','2023-07-15 21:37:28','','','','0','Cash',0.00,'280','','','4','','1','2023-07-15 18:37:31','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-211.00','-212','Inclusive','branch','Inventory','','','','',''),('416894874050202039',3263,'41689487404','11','1.00','280','retail','0','2023-07-16 09:03:24','','','','0','Cash',0.00,'280','','','4','','1','2023-07-16 06:03:35','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-13.00','-14','Inclusive','branch','Inventory','','','','',''),('416894874139220920',3264,'41689487404','26','1.00','100','retail','0','2023-07-16 09:03:32','','','','0','Cash',0.00,'100','','','4','','1','2023-07-16 06:03:35','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-27.00','-28','Inclusive','branch','Inventory','','','','',''),('416894926862222032',3265,'41689492685','21','1.00','200','retail','0','2023-07-16 10:31:25','','','','0','Cash',0.00,'200','','','4','','1','2023-07-16 07:31:30','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-370.00','-371','Inclusive','branch','Inventory','','','','',''),('416894939062612326',3266,'41689493905','1','1.00','280','retail','0','2023-07-16 10:51:45','','','','0','Cash',0.00,'280','','','4','','1','2023-07-16 07:51:50','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-212.00','-213','Inclusive','branch','Inventory','','','','',''),('416894971170202039',3267,'41689497116','5','1.00','300','retail','0','2023-07-16 11:45:16','','','','0','Cash',0.00,'300','','','4','','1','2023-07-16 08:45:21','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-95.00','-96','Inclusive','branch','Inventory','','','','',''),('416895058310253303',3268,'41689505830','11','1.00','280','retail','0','2023-07-16 14:10:30','','','','0','Cash',0.00,'280','','','4','','1','2023-07-16 11:11:05','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-14.00','-15','Inclusive','branch','Inventory','','','','',''),('416895059760202039',3269,'41689505976','20','1.00','200','retail','0','2023-07-16 14:12:56','','','','0','Cash',0.00,'200','','','4','','1','2023-07-16 11:13:01','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-133.00','-134','Inclusive','branch','Inventory','','','','',''),('416895149963022399',3270,'41689514996','29','1.00','300','retail','0','2023-07-16 16:43:16','','','','0','Cash',0.00,'300','','','4','','1','2023-07-16 13:43:18','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-23.00','-24','Inclusive','branch','Inventory','','','','',''),('416895221352222032',3271,'41689522134','38','1.00','350','retail','0','2023-07-16 18:42:14','','','','0','Cash',0.00,'350','','','4','','1','2023-07-16 15:42:24','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-393.00','-394','Inclusive','branch','Inventory','','','','',''),('416895236854222432',3272,'41689523684','23','1.00','250','retail','0','2023-07-16 19:08:04','','','','0','Cash',0.00,'250','','','4','','1','2023-07-16 16:08:18','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-140.00','-141','Inclusive','branch','Inventory','','','','',''),('416895236952369392',3273,'41689523684','23','1.00','250','retail','0','2023-07-16 19:08:15','','','','0','Cash',0.00,'250','','','4','','1','2023-07-16 16:08:18','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-141.00','-142','Inclusive','branch','Inventory','','','','',''),('416895295500202039',3274,'41689529549','23','1.00','250','retail','0','2023-07-16 20:45:49','','','','0','Cash',0.00,'250','','','4','','1','2023-07-16 17:46:24','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-142.00','-143','Inclusive','branch','Inventory','','','','',''),('416895295709825944',3275,'41689529549','23','1.00','250','retail','0','2023-07-16 20:46:09','','','','0','Cash',0.00,'250','','','4','','1','2023-07-16 17:46:24','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-143.00','-144','Inclusive','branch','Inventory','','','','',''),('416895326032260392',3276,'41689532603','38','1.00','350','retail','0','2023-07-16 21:36:43','','','','0','Cash',0.00,'350','','','4','','1','2023-07-16 18:36:53','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-394.00','-395','Inclusive','branch','Inventory','','','','',''),('416895326060202039',3277,'41689532603','38','1.00','350','retail','0','2023-07-16 21:36:46','','','','0','Cash',0.00,'350','','','4','','1','2023-07-16 18:36:53','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-395.00','-396','Inclusive','branch','Inventory','','','','',''),('416895326098290832',3278,'41689532603','38','1.00','350','retail','0','2023-07-16 21:36:48','','','','0','Cash',0.00,'350','','','4','','1','2023-07-16 18:36:53','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-396.00','-397','Inclusive','branch','Inventory','','','','',''),('416895846320202039',3279,'41689584632','21','1.00','200','retail','0','2023-07-17 12:03:52','','','','0','Cash',0.00,'200','','','4','','1','2023-07-17 09:03:57','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-371.00','-372','Inclusive','branch','Inventory','','','','',''),('416895892849825944',3280,'41689589283','40','1.00','600','retail','0','2023-07-17 13:21:23','','','','0','Cash',0.00,'600','','','4','','1','2023-07-17 10:28:55','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-31.00','-32','Inclusive','branch','Inventory','','','','',''),('416895928014292432',3281,'41689592801','1','1.00','280','retail','0','2023-07-17 14:20:01','','','','0','Cash',0.00,'280','','','4','','1','2023-07-17 11:20:15','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-213.00','-214','Inclusive','branch','Inventory','','','','',''),('416895928040202039',3282,'41689592801','1','1.00','280','retail','0','2023-07-17 14:20:04','','','','0','Cash',0.00,'280','','','4','','1','2023-07-17 11:20:15','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-214.00','-215','Inclusive','branch','Inventory','','','','',''),('416895947463421300',3283,'41689594745','40','1.00','600','retail','0','2023-07-17 14:52:25','','','','0','Cash',0.00,'600','','','4','','1','2023-07-17 11:52:30','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-32.00','-33','Inclusive','branch','Inventory','','','','',''),('416895968683421300',3284,'41689596868','20','1.00','200','retail','0','2023-07-17 15:27:48','','','','0','Cash',0.00,'200','','','4','','1','2023-07-17 12:27:58','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-134.00','-135','Inclusive','branch','Inventory','','','','',''),('416896027322222032',3285,'41689602732','18','1.00','200','retail','0','2023-07-17 17:05:32','','','','0','Cash',0.00,'200','','','4','','1','2023-07-17 14:27:16','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-23.00','-24','Inclusive','branch','Inventory','','','','',''),('416896040473022340',3286,'41689604046','21','1.00','200','retail','0','2023-07-17 17:27:26','','','','0','Cash',0.00,'200','','','4','','1','2023-07-17 14:27:59','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-372.00','-373','Inclusive','branch','Inventory','','','','',''),('416896046140202039',3287,'41689604613','38','1.00','350','retail','0','2023-07-17 17:36:53','','','','0','Cash',0.00,'350','','','4','','1','2023-07-17 14:37:02','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-397.00','-398','Inclusive','branch','Inventory','','','','',''),('416896057185826544',3288,'41689605717','38','1.00','350','retail','0','2023-07-17 17:55:17','','','','0','Cash',0.00,'350','','','4','','1','2023-07-17 14:55:23','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-398.00','-399','Inclusive','branch','Inventory','','','','',''),('416896061506826644',3289,'41689606149','18','1.00','200','retail','0','2023-07-17 18:02:30','','','','0','Cash',0.00,'200','','','4','','1','2023-07-17 15:02:50','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-24.00','-25','Inclusive','branch','Inventory','','','','',''),('416896061653022361',3290,'41689606149','16','1.00','200','retail','0','2023-07-17 18:02:45','','','','0','Cash',0.00,'200','','','4','','1','2023-07-17 15:02:50','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-24.00','-25','Inclusive','branch','Inventory','','','','',''),('416896161278270832',3291,'41689616127','1','1.00','280','retail','0','2023-07-17 20:48:47','','','','0','Cash',0.00,'280','','','4','','1','2023-07-17 17:48:52','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-215.00','-216','Inclusive','branch','Inventory','','','','',''),('416896161514212432',3292,'41689616151','2','1.00','250','retail','0','2023-07-17 20:49:11','','','','0','Cash',0.00,'250','','','4','','1','2023-07-17 17:49:16','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-76.00','-77','Inclusive','branch','Inventory','','','','',''),('416896175152761392',3293,'41689617514','1','1.00','280','retail','0','2023-07-17 21:11:54','','','','0','Cash',0.00,'280','','','4','','1','2023-07-17 18:12:10','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-216.00','-217','Inclusive','branch','Inventory','','','','',''),('416896175253022325',3294,'41689617514','26','1.00','100','retail','0','2023-07-17 21:12:04','','','','0','Cash',0.00,'100','','','4','','1','2023-07-17 18:12:10','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-28.00','-29','Inclusive','branch','Inventory','','','','',''),('416896186132861392',3295,'41689618612','11','1.00','280','retail','0','2023-07-17 21:30:12','','','','0','Cash',0.00,'280','','','4','','1','2023-07-17 18:30:17','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-15.00','-16','Inclusive','branch','Inventory','','','','',''),('416896598643421300',3296,'41689659863','21','1.00','200','retail','0','2023-07-18 08:57:43','','','','0','Cash',0.00,'200','','','4','','1','2023-07-18 05:57:48','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-373.00','-374','Inclusive','branch','Inventory','','','','',''),('416896700490826044',3297,'41689670049','21','1.00','200','retail','0','2023-07-18 11:47:29','','','','0','Cash',0.00,'200','','','4','','1','2023-07-18 08:47:52','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-374.00','-375','Inclusive','branch','Inventory','','','','',''),('416896796538230832',3298,'41689679652','55','1.00','200','retail','0','2023-07-18 14:27:32','','','','150','Cash',0.00,'200','','','4','','1','2023-07-18 11:27:36','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','295.00','294','Inclusive','branch','Inventory','1110','4000','5500','',''),('416896801464282432',3299,'41689680145','13','1.00','280','retail','0','2023-07-18 14:35:45','','','','0','Cash',0.00,'280','','','4','','1','2023-07-18 11:35:49','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-4.00','-5','Inclusive','branch','Inventory','','','','',''),('416896874468260832',3300,'41689687445','63','1.00','200','retail','0','2023-07-18 16:37:25','','','','150','Cash',0.00,'200','','','4','','1','2023-07-18 13:37:29','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Service','1110','4000','5500','',''),('416896932950202039',3301,'41689693294','21','1.00','200','retail','0','2023-07-18 18:14:54','','','','0','Cash',0.00,'200','','','4','','1','2023-07-18 15:14:57','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-375.00','-376','Inclusive','branch','Inventory','','','','',''),('416896933040202039',3302,'41689693303','38','1.00','350','retail','0','2023-07-18 18:15:04','','','','0','Cash',0.00,'350','','','4','','1','2023-07-18 15:15:07','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-399.00','-400','Inclusive','branch','Inventory','','','','',''),('416896942664292432',3303,'41689694265','47','1.00','200','retail','0','2023-07-18 18:31:05','','','','0','Cash',0.00,'200','','','4','','1','2023-07-18 15:31:18','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Inventory','','','','',''),('416896942723022372',3304,'41689694265','47','1.00','200','retail','0','2023-07-18 18:31:12','','','','0','Cash',0.00,'200','','','4','','1','2023-07-18 15:31:18','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','29.00','28','Inclusive','branch','Inventory','','','','',''),('416896959998290832',3305,'41689695999','21','1.00','200','retail','0','2023-07-18 18:59:59','','','','0','Cash',0.00,'200','','','4','','1','2023-07-18 16:00:05','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-376.00','-377','Inclusive','branch','Inventory','','','','',''),('416896961526826644',3306,'41689696152','20','1.00','200','retail','0','2023-07-18 19:02:32','','','','0','Cash',0.00,'200','','','4','','1','2023-07-18 16:02:36','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-135.00','-136','Inclusive','branch','Inventory','','','','',''),('416896970292222032',3307,'41689697028','38','1.00','350','retail','0','2023-07-18 19:17:09','','','','0','Cash',0.00,'350','','','4','','1','2023-07-18 16:17:20','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-400.00','-401','Inclusive','branch','Inventory','','','','',''),('416896990092960392',3308,'41689699008','4','1.00','150','retail','0','2023-07-18 19:50:08','','','','0','Cash',0.00,'150','','','4','','1','2023-07-18 16:50:12','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-44.00','-45','Inclusive','branch','Inventory','','','','',''),('416897003042222032',3309,'41689700303','22','1.00','250','retail','0','2023-07-18 20:11:43','','','','0','Cash',0.00,'250','','','4','','1','2023-07-18 17:11:47','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-35.00','-36','Inclusive','branch','Inventory','','','','',''),('416897011968260832',3310,'41689701196','23','1.00','250','retail','0','2023-07-18 20:26:36','','','','0','Cash',0.00,'250','','','4','','1','2023-07-18 17:26:55','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-144.00','-145','Inclusive','branch','Inventory','','','','',''),('416897011993421300',3311,'41689701196','23','1.00','250','retail','0','2023-07-18 20:26:38','','','','0','Cash',0.00,'250','','','4','','1','2023-07-18 17:26:55','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-145.00','-146','Inclusive','branch','Inventory','','','','',''),('416897012081827144',3312,'41689701196','17','1.00','200','retail','0','2023-07-18 20:26:48','','','','0','Cash',0.00,'200','','','4','','1','2023-07-18 17:26:55','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-53.00','-54','Inclusive','branch','Inventory','','','','',''),('416898361063022301',3313,'41689836105','1','1.00','280','retail','0','2023-07-20 09:55:05','','','','0','Cash',0.00,'280','','','4','','1','2023-07-20 06:55:09','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-217.00','-218','Inclusive','branch','Inventory','','','','',''),('416898390808200832',3314,'41689839080','21','1.00','200','retail','0','2023-07-20 10:44:40','','','','0','Cash',0.00,'200','','','4','','1','2023-07-20 07:44:44','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-377.00','-378','Inclusive','branch','Inventory','','','','',''),('416898400560202039',3315,'41689840055','1','1.00','280','retail','0','2023-07-20 11:00:55','','','','0','Cash',0.00,'280','','','4','','1','2023-07-20 08:01:01','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-218.00','-219','Inclusive','branch','Inventory','','','','',''),('416898407252222032',3316,'41689840725','11','1.00','280','retail','0','2023-07-20 11:12:05','','','','0','Cash',0.00,'280','','','4','','1','2023-07-20 08:12:08','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-16.00','-17','Inclusive','branch','Inventory','','','','',''),('416898408802222032',3317,'41689840879','3','1.00','200','retail','0','2023-07-20 11:14:40','','','','0','Cash',0.00,'200','','','4','','1','2023-07-20 08:14:43','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-89.00','-90','Inclusive','branch','Inventory','','','','',''),('416898413132222032',3318,'41689841312','12','1.00','250','retail','0','2023-07-20 11:21:52','','','','0','Cash',0.00,'250','','','4','','1','2023-07-20 08:21:58','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-79.00','-80','Inclusive','branch','Inventory','','','','',''),('416898423812268392',3319,'41689842381','1','1.00','280','retail','0','2023-07-20 11:39:41','','','','0','Cash',0.00,'280','','','4','','1','2023-07-20 08:39:44','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-219.00','-220','Inclusive','branch','Inventory','','','','',''),('416898608813421300',3320,'41689860881','7','1.00','200','retail','0','2023-07-20 16:48:01','','','','0','Cash',0.00,'200','','','4','','1','2023-07-20 13:48:13','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-161.00','-162','Inclusive','branch','Inventory','','','','',''),('416898608903421300',3321,'41689860881','52','1.00','150','retail','0','2023-07-20 16:48:10','','','','200','Cash',0.00,'150','','','4','','1','2023-07-20 13:48:13','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416898614184262432',3322,'41689861418','23','1.00','250','retail','0','2023-07-20 16:56:58','','','','0','Cash',0.00,'250','','','4','','1','2023-07-20 14:05:54','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-146.00','-147','Inclusive','branch','Inventory','','','','',''),('416898619640202039',3323,'41689861964','3','1.00','200','retail','0','2023-07-20 17:06:04','','','','0','Cash',0.00,'200','','','4','','1','2023-07-20 14:06:07','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-90.00','-91','Inclusive','branch','Inventory','','','','',''),('416898622593022352',3324,'41689862258','3','1.00','200','retail','0','2023-07-20 17:10:58','','','','0','Cash',0.00,'200','','','4','','1','2023-07-20 14:11:12','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-91.00','-92','Inclusive','branch','Inventory','','','','',''),('416898667343332040',3325,'41689866733','23','1.00','250','retail','0','2023-07-20 18:25:33','','','','0','Cash',0.00,'250','','','4','','1','2023-07-20 15:25:41','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-147.00','-148','Inclusive','branch','Inventory','','','','',''),('416898737922222032',3326,'41689873791','3','1.00','200','retail','0','2023-07-20 20:23:11','','','','0','Cash',0.00,'200','','','4','','1','2023-07-20 17:23:22','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-92.00','-93','Inclusive','branch','Inventory','','','','',''),('416898745028220832',3327,'41689874501','21','1.00','200','retail','0','2023-07-20 20:35:01','','','','0','Cash',0.00,'200','','','4','','1','2023-07-20 17:35:04','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-378.00','-379','Inclusive','branch','Inventory','','','','',''),('416898756673022366',3328,'41689875666','21','1.00','200','retail','0','2023-07-20 20:54:26','','','','0','Cash',0.00,'200','','','4','','1','2023-07-20 17:54:30','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-379.00','-380','Inclusive','branch','Inventory','','','','',''),('416898771488280832',3329,'41689877147','38','1.00','350','retail','0','2023-07-20 21:19:07','','','','0','Cash',0.00,'350','','','4','','1','2023-07-20 18:19:26','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-401.00','-402','Inclusive','branch','Inventory','','','','',''),('416898771607828744',3330,'41689877147','21','1.00','200','retail','0','2023-07-20 21:19:19','','','','0','Cash',0.00,'200','','','4','','1','2023-07-20 18:19:26','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-380.00','-381','Inclusive','branch','Inventory','','','','',''),('416898787298290832',3331,'41689878728','3','1.00','200','retail','0','2023-07-20 21:45:28','','','','0','Cash',0.00,'200','','','4','','1','2023-07-20 18:45:32','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-93.00','-94','Inclusive','branch','Inventory','','','','',''),('416898793012960392',3332,'41689879300','23','1.00','250','retail','0','2023-07-20 21:55:00','','','','0','Cash',0.00,'250','','','4','','1','2023-07-20 18:55:06','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-148.00','-149','Inclusive','branch','Inventory','','','','',''),('416898793044272432',3333,'41689879300','22','1.00','250','retail','0','2023-07-20 21:55:03','','','','0','Cash',0.00,'250','','','4','','1','2023-07-20 18:55:06','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-36.00','-37','Inclusive','branch','Inventory','','','','',''),('416899181728220832',3334,'41689918172','1','1.00','280','retail','0','2023-07-21 08:42:52','','','','0','Cash',0.00,'280','','','4','','1','2023-07-21 05:42:56','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-220.00','-221','Inclusive','branch','Inventory','','','','',''),('416899254552565392',3335,'41689925454','20','1.00','200','retail','0','2023-07-21 10:44:14','','','','0','Cash',0.00,'200','','','4','','1','2023-07-21 07:44:19','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-136.00','-137','Inclusive','branch','Inventory','','','','',''),('416899301044232432',3336,'41689930103','7','1.00','200','retail','0','2023-07-21 12:01:43','','','','0','Cash',0.00,'200','','','4','','1','2023-07-21 09:01:57','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-162.00','-163','Inclusive','branch','Inventory','','','','',''),('416899301112222032',3337,'41689930103','20','1.00','200','retail','0','2023-07-21 12:01:51','','','','0','Cash',0.00,'200','','','4','','1','2023-07-21 09:01:57','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-137.00','-138','Inclusive','branch','Inventory','','','','',''),('416899311784232432',3338,'41689931178','3','1.00','200','retail','0','2023-07-21 12:19:38','','','','0','Cash',0.00,'200','','','4','','1','2023-07-21 09:19:42','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-94.00','-95','Inclusive','branch','Inventory','','','','',''),('416899425663022365',3339,'41689942565','38','1.00','350','retail','0','2023-07-21 15:29:25','','','','0','Cash',0.00,'350','','','4','','1','2023-07-21 12:29:30','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-402.00','-403','Inclusive','branch','Inventory','','','','',''),('416899437763829344',3340,'41689943775','21','1.00','200','retail','0','2023-07-21 15:49:35','','','','0','Cash',0.00,'200','','','4','','1','2023-07-21 12:49:48','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-381.00','-382','Inclusive','branch','Inventory','','','','',''),('416899608922069392',3341,'41689960891','63','1.00','200','retail','0','2023-07-21 20:34:51','','','','150','Cash',0.00,'200','','','4','','1','2023-07-21 17:34:58','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Service','1110','4000','5500','',''),('416899618201829144',3342,'41689961819','38','1.00','350','retail','0','2023-07-21 20:50:19','','','','0','Cash',0.00,'350','','','4','','1','2023-07-21 17:50:23','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-403.00','-404','Inclusive','branch','Inventory','','','','',''),('416899643880202039',3343,'41689964387','5','1.00','300','retail','0','2023-07-21 21:33:07','','','','0','Cash',0.00,'300','','','4','','1','2023-07-21 18:33:13','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-96.00','-97','Inclusive','branch','Inventory','','','','',''),('416899644064262432',3344,'41689964405','5','1.00','300','retail','0','2023-07-21 21:33:25','','','','0','Cash',0.00,'300','','','4','','1','2023-07-21 18:33:33','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-97.00','-98','Inclusive','branch','Inventory','','','','',''),('416899645968260832',3345,'41689964595','52','1.00','150','retail','0','2023-07-21 21:36:35','','','','200','Cash',0.00,'150','','','4','','1','2023-07-21 18:36:44','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416900088998920844',3346,'41690008898','20','1.00','200','retail','0','2023-07-22 09:54:58','','','','0','Cash',0.00,'200','','','4','','1','2023-07-22 06:55:02','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-138.00','-139','Inclusive','branch','Inventory','','','','',''),('416900106120203113',3347,'41690010611','21','1.00','200','retail','0','2023-07-22 10:23:31','','','','0','Cash',0.00,'200','','','4','','1','2023-07-22 07:23:42','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-382.00','-383','Inclusive','branch','Inventory','','','','',''),('416900106750202030',3348,'41690010674','5','1.00','300','retail','0','2023-07-22 10:24:34','','','','0','Cash',0.00,'300','','','4','','1','2023-07-22 07:24:38','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-98.00','-99','Inclusive','branch','Inventory','','','','',''),('416900220313421300',3349,'41690022031','12','1.00','250','retail','0','2023-07-22 13:33:51','','','','0','Cash',0.00,'250','','','4','','1','2023-07-22 10:33:54','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-80.00','-81','Inclusive','branch','Inventory','','','','',''),('416900268382222032',3350,'41690026838','21','1.00','200','retail','0','2023-07-22 14:53:58','','','','0','Cash',0.00,'200','','','4','','1','2023-07-22 11:54:11','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-383.00','-384','Inclusive','branch','Inventory','','','','',''),('416900295554222432',3351,'41690029554','7','1.00','200','retail','0','2023-07-22 15:39:14','','','','0','Cash',0.00,'200','','','4','','1','2023-07-22 12:39:18','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-163.00','-164','Inclusive','branch','Inventory','','','','',''),('416900346073022306',3352,'41690034607','29','1.00','300','retail','0','2023-07-22 17:03:27','','','','0','Cash',0.00,'300','','','4','','1','2023-07-22 14:03:48','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-24.00','-25','Inclusive','branch','Inventory','','','','',''),('416900346243421300',3353,'41690034607','24','1.00','100','retail','0','2023-07-22 17:03:44','','','','0','Cash',0.00,'100','','','4','','1','2023-07-22 14:03:48','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-25.00','-26','Inclusive','branch','Inventory','','','','',''),('416900347484920444',3354,'41690034747','38','1.00','350','retail','0','2023-07-22 17:05:47','','','','0','Cash',0.00,'350','','','4','','1','2023-07-22 14:05:51','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-404.00','-405','Inclusive','branch','Inventory','','','','',''),('416900440219210932',3355,'41690044020','1','1.00','280','retail','0','2023-07-22 19:40:20','','','','0','Cash',0.00,'280','','','4','','1','2023-07-22 16:40:26','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-221.00','-222','Inclusive','branch','Inventory','','','','',''),('416900454822568302',3356,'41690045481','64','1.00','150','retail','0','2023-07-22 20:04:41','','','','100','Cash',0.00,'150','','','4','','1','2023-07-22 17:04:59','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Service','1110','4000','5500','',''),('416900475222762302',3357,'41690047521','40','1.00','600','retail','0','2023-07-22 20:38:41','','','','0','Cash',0.00,'600','','','4','','1','2023-07-22 17:39:04','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-33.00','-34','Inclusive','branch','Inventory','','','','',''),('416900475380202030',3358,'41690047521','5','1.00','300','retail','0','2023-07-22 20:38:57','','','','0','Cash',0.00,'300','','','4','','1','2023-07-22 17:39:04','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-99.00','-100','Inclusive','branch','Inventory','','','','',''),('416900483079270932',3359,'41690048306','22','1.00','250','retail','0','2023-07-22 20:51:46','','','','0','Cash',0.00,'250','','','4','','1','2023-07-22 17:51:50','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-37.00','-38','Inclusive','branch','Inventory','','','','',''),('416900483273421300',3360,'41690048326','20','1.00','200','retail','0','2023-07-22 20:52:06','','','','0','Cash',0.00,'200','','','4','','1','2023-07-22 17:52:10','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-139.00','-140','Inclusive','branch','Inventory','','','','',''),('416900488540202030',3361,'41690048854','1','1.00','280','retail','0','2023-07-22 21:00:54','','','','0','Cash',0.00,'280','','','4','','1','2023-07-22 18:00:58','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-222.00','-223','Inclusive','branch','Inventory','','','','',''),('416900490722222032',3362,'41690049072','21','1.00','200','retail','0','2023-07-22 21:04:32','','','','0','Cash',0.00,'200','','','4','','1','2023-07-22 18:04:35','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-384.00','-385','Inclusive','branch','Inventory','','','','',''),('416900496064242432',3363,'41690049606','3','1.00','200','retail','0','2023-07-22 21:13:26','','','','0','Cash',0.00,'200','','','4','','1','2023-07-22 18:13:30','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-95.00','-96','Inclusive','branch','Inventory','','','','',''),('416900496343421300',3364,'41690049633','7','1.00','200','retail','0','2023-07-22 21:13:53','','','','0','Cash',0.00,'200','','','4','','1','2023-07-22 18:13:57','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-164.00','-165','Inclusive','branch','Inventory','','','','',''),('416900528302033360',3365,'41690052829','21','1.00','200','retail','0','2023-07-22 22:07:09','','','','0','Cash',0.00,'200','','','4','','1','2023-07-22 19:07:16','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-385.00','-386','Inclusive','branch','Inventory','','','','',''),('416900539383920344',3366,'41690053938','11','1.00','280','retail','0','2023-07-22 22:25:38','','','','0','Cash',0.00,'280','','','4','','1','2023-07-22 19:25:42','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-17.00','-18','Inclusive','branch','Inventory','','','','',''),('416900548074252432',3367,'41690054807','11','1.00','280','retail','0','2023-07-22 22:40:07','','','','0','Cash',0.00,'280','','','4','','1','2023-07-22 19:40:10','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-18.00','-19','Inclusive','branch','Inventory','','','','',''),('416900929933421300',3368,'41690092992','21','1.00','200','retail','0','2023-07-23 09:16:33','','','','0','Cash',0.00,'200','','','4','','1','2023-07-23 06:16:36','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-386.00','-387','Inclusive','branch','Inventory','','','','',''),('416900944543022354',3369,'41690094454','54','1.00','350','retail','0','2023-07-23 09:40:54','','','','200','Cash',0.00,'350','','','4','','1','2023-07-23 06:41:18','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Service','1110','4000','5500','',''),('416900946812468302',3370,'41690094681','20','1.00','200','retail','0','2023-07-23 09:44:41','','','','0','Cash',0.00,'200','','','4','','1','2023-07-23 06:44:45','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-140.00','-141','Inclusive','branch','Inventory','','','','',''),('416900947289280932',3371,'41690094728','11','1.00','280','retail','0','2023-07-23 09:45:28','','','','0','Cash',0.00,'280','','','4','','1','2023-07-23 06:45:31','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-19.00','-20','Inclusive','branch','Inventory','','','','',''),('416900985028920844',3372,'41690098501','21','1.00','200','retail','0','2023-07-23 10:48:21','','','','0','Cash',0.00,'200','','','4','','1','2023-07-23 07:48:25','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-387.00','-388','Inclusive','branch','Inventory','','','','',''),('416901024950202030',3373,'41690102494','11','1.00','280','retail','0','2023-07-23 11:54:54','','','','0','Cash',0.00,'280','','','4','','1','2023-07-23 08:54:58','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-20.00','-21','Inclusive','branch','Inventory','','','','',''),('416901070853022380',3374,'41690107084','21','1.00','200','retail','0','2023-07-23 13:11:24','','','','0','Cash',0.00,'200','','','4','','1','2023-07-23 10:11:26','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-388.00','-389','Inclusive','branch','Inventory','','','','',''),('416901091619921944',3375,'41690109160','5','1.00','300','retail','0','2023-07-23 13:46:00','','','','0','Cash',0.00,'300','','','4','','1','2023-07-23 10:46:03','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-100.00','-101','Inclusive','branch','Inventory','','','','',''),('416901112490202030',3376,'41690111249','8','1.00','150','retail','0','2023-07-23 14:20:49','','','','0','Cash',0.00,'150','','','4','','1','2023-07-23 11:20:52','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-72.00','-73','Inclusive','branch','Inventory','','','','',''),('416901118523421300',3377,'41690111851','22','1.00','250','retail','0','2023-07-23 14:30:51','','','','0','Cash',0.00,'250','','','4','','1','2023-07-23 11:31:01','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-38.00','-39','Inclusive','branch','Inventory','','','','',''),('416901118583022358',3378,'41690111851','38','1.00','350','retail','0','2023-07-23 14:30:57','','','','0','Cash',0.00,'350','','','4','','1','2023-07-23 11:31:01','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-405.00','-406','Inclusive','branch','Inventory','','','','',''),('416901118933421300',3379,'41690111892','15','1.00','200','retail','0','2023-07-23 14:31:32','','','','0','Cash',0.00,'200','','','4','','1','2023-07-23 11:31:37','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-15.00','-16','Inclusive','branch','Inventory','','','','',''),('416901124843203300',3380,'41690112483','38','1.00','350','retail','0','2023-07-23 14:41:23','','','','0','Cash',0.00,'350','','','4','','1','2023-07-23 11:41:26','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-406.00','-407','Inclusive','branch','Inventory','','','','',''),('416901159312222032',3381,'41690115930','5','1.00','300','retail','0','2023-07-23 15:38:50','','','','0','Cash',0.00,'300','','','4','','1','2023-07-23 12:38:54','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-101.00','-102','Inclusive','branch','Inventory','','','','',''),('416901217534222432',3382,'41690121752','23','1.00','250','retail','0','2023-07-23 17:15:52','','','','0','Cash',0.00,'250','','','4','','1','2023-07-23 14:15:59','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-149.00','-150','Inclusive','branch','Inventory','','','','',''),('416901217563032027',3383,'41690121752','23','1.00','250','retail','0','2023-07-23 17:15:55','','','','0','Cash',0.00,'250','','','4','','1','2023-07-23 14:15:59','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-150.00','-151','Inclusive','branch','Inventory','','','','',''),('416901225734222432',3384,'41690122572','38','1.00','350','retail','0','2023-07-23 17:29:32','','','','0','Cash',0.00,'350','','','4','','1','2023-07-23 14:29:35','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-408.00','-409','Inclusive','branch','Inventory','','','','',''),('416901225900202030',3385,'41690122571','11','1.00','280','retail','0','2023-07-23 17:29:50','','','','0','Cash',0.00,'280','','','4','','1','2023-07-23 14:29:57','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-21.00','-22','Inclusive','branch','Inventory','','','','',''),('416901229089280932',3386,'41690122908','11','1.00','280','retail','0','2023-07-23 17:35:08','','','','0','Cash',0.00,'280','','','4','','1','2023-07-23 14:35:20','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-22.00','-23','Inclusive','branch','Inventory','','','','',''),('416901229173022319',3387,'41690122908','20','1.00','200','retail','0','2023-07-23 17:35:16','','','','0','Cash',0.00,'200','','','4','','1','2023-07-23 14:35:20','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-141.00','-142','Inclusive','branch','Inventory','','','','',''),('416901233753921344',3388,'41690123375','1','1.00','280','retail','0','2023-07-23 17:42:55','','','','0','Cash',0.00,'280','','','4','','1','2023-07-23 14:42:59','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-223.00','-224','Inclusive','branch','Inventory','','','','',''),('416901253253022323',3389,'41690125325','2','1.00','250','retail','0','2023-07-23 18:15:25','','','','0','Cash',0.00,'250','','','4','','1','2023-07-23 15:15:31','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-77.00','-78','Inclusive','branch','Inventory','','','','',''),('416901253283421300',3390,'41690125325','2','1.00','250','retail','0','2023-07-23 18:15:27','','','','0','Cash',0.00,'250','','','4','','1','2023-07-23 15:15:31','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-78.00','-79','Inclusive','branch','Inventory','','','','',''),('416901262133022312',3391,'41690126212','23','1.00','250','retail','0','2023-07-23 18:30:12','','','','0','Cash',0.00,'250','','','4','','1','2023-07-23 15:30:16','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-151.00','-152','Inclusive','branch','Inventory','','','','',''),('416901272433022342',3392,'41690127242','23','1.00','250','retail','0','2023-07-23 18:47:22','','','','0','Cash',0.00,'250','','','4','','1','2023-07-23 15:47:30','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-152.00','-153','Inclusive','branch','Inventory','','','','',''),('416901272467921744',3393,'41690127242','23','1.00','250','retail','0','2023-07-23 18:47:26','','','','0','Cash',0.00,'250','','','4','','1','2023-07-23 15:47:30','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-153.00','-154','Inclusive','branch','Inventory','','','','',''),('416901317940202030',3395,'41690131793','3','1.00','200','retail','0','2023-07-23 20:03:13','','','','0','Cash',0.00,'200','','','4','','1','2023-07-23 17:09:20','','1','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-96.00','-97','Inclusive','branch','Inventory','','','','',''),('416901321573022351',3396,'41690131793','3','1.00','200','retail','0','2023-07-23 20:09:16','','','','0','Cash',0.00,'200','','','4','','1','2023-07-23 17:09:20','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-97.00','-98','Inclusive','branch','Inventory','','','','',''),('416901362043421300',3397,'41690136203','1','1.00','280','retail','0','2023-07-23 21:16:43','','','','0','Cash',0.00,'280','','','4','','1','2023-07-23 18:20:22','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-224.00','-225','Inclusive','branch','Inventory','','','','',''),('416901362112222032',3398,'41690136203','5','1.00','300','retail','0','2023-07-23 21:16:51','','','','0','Cash',0.00,'300','','','4','','1','2023-07-23 18:20:22','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-102.00','-103','Inclusive','branch','Inventory','','','','',''),('416901384342222032',3399,'41690138433','12','1.00','250','retail','0','2023-07-23 21:53:54','','','','0','Cash',0.00,'250','','','4','','1','2023-07-23 18:54:00','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-81.00','-82','Inclusive','branch','Inventory','','','','',''),('416901829474282432',3400,'41690182946','20','1.00','200','retail','0','2023-07-24 10:15:46','','','','0','Cash',0.00,'200','','','4','','1','2023-07-24 07:15:51','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-142.00','-143','Inclusive','branch','Inventory','','','','',''),('416901829749240932',3401,'41690182973','1','1.00','280','retail','0','2023-07-24 10:16:13','','','','0','Cash',0.00,'280','','','4','','1','2023-07-24 07:16:21','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-225.00','-226','Inclusive','branch','Inventory','','','','',''),('416901981492864302',3402,'41690198149','38','1.00','350','retail','0','2023-07-24 14:29:09','','','','0','Cash',0.00,'350','','','4','','1','2023-07-24 11:29:11','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-408.00','-409','Inclusive','branch','Inventory','','','','',''),('416902017681922144',3403,'41690201767','21','1.00','200','retail','0','2023-07-24 15:29:27','','','','0','Cash',0.00,'200','','','4','','1','2023-07-24 12:29:35','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-389.00','-390','Inclusive','branch','Inventory','','','','',''),('416902017721922144',3404,'41690201767','21','1.00','200','retail','0','2023-07-24 15:29:31','','','','0','Cash',0.00,'200','','','4','','1','2023-07-24 12:29:35','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-390.00','-391','Inclusive','branch','Inventory','','','','',''),('416902032050202030',3405,'41690203204','1','1.00','280','retail','0','2023-07-24 15:53:24','','','','0','Cash',0.00,'280','','','4','','1','2023-07-24 12:53:42','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-226.00','-227','Inclusive','branch','Inventory','','','','',''),('416902032122361302',3406,'41690203204','47','1.00','200','retail','0','2023-07-24 15:53:31','','','','0','Cash',0.00,'200','','','4','','1','2023-07-24 12:53:42','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','28.00','27','Inclusive','branch','Inventory','','','','',''),('416902040353421300',3407,'41690204034','38','1.00','350','retail','0','2023-07-24 16:07:14','','','','0','Cash',0.00,'350','','','4','','1','2023-07-24 13:07:18','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-409.00','-410','Inclusive','branch','Inventory','','','','',''),('416902066962222032',3408,'41690206695','3','1.00','200','retail','0','2023-07-24 16:51:35','','','','0','Cash',0.00,'200','','','4','','1','2023-07-24 13:51:38','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-98.00','-99','Inclusive','branch','Inventory','','','','',''),('416902088413421300',3409,'41690208840','12','1.00','250','retail','0','2023-07-24 17:27:20','','','','0','Cash',0.00,'250','','','4','','1','2023-07-24 14:27:24','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-82.00','-83','Inclusive','branch','Inventory','','','','',''),('416902179157922744',3410,'41690217914','38','1.00','350','retail','0','2023-07-24 19:58:34','','','','0','Cash',0.00,'350','','','4','','1','2023-07-24 16:58:39','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-410.00','-411','Inclusive','branch','Inventory','','','','',''),('416902220382263302',3411,'41690222038','38','1.00','350','retail','0','2023-07-24 21:07:18','','','','0','Cash',0.00,'350','','','4','','1','2023-07-24 18:07:26','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-411.00','-412','Inclusive','branch','Inventory','','','','',''),('416902220422922244',3412,'41690222038','38','1.00','350','retail','0','2023-07-24 21:07:21','','','','0','Cash',0.00,'350','','','4','','1','2023-07-24 18:07:26','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-412.00','-413','Inclusive','branch','Inventory','','','','',''),('416902249383421300',3413,'41690224938','1','1.00','280','retail','0','2023-07-24 21:55:38','','','','0','Cash',0.00,'280','','','4','','1','2023-07-24 18:55:41','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-227.00','-228','Inclusive','branch','Inventory','','','','',''),('416902723223421300',3414,'41690272321','21','1.00','200','retail','0','2023-07-25 11:05:21','','','','0','Cash',0.00,'200','','','4','','1','2023-07-25 08:13:50','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-391.00','-392','Inclusive','branch','Inventory','','','','',''),('416902723252922244',3415,'41690272321','21','1.00','200','retail','0','2023-07-25 11:05:24','','','','0','Cash',0.00,'200','','','4','','1','2023-07-25 08:13:50','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-392.00','-393','Inclusive','branch','Inventory','','','','',''),('416902723672266302',3416,'41690272321','46','1.00','200','retail','0','2023-07-25 11:06:07','','','','0','Cash',0.00,'200','','','4','','1','2023-07-25 08:13:50','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','23.00','22','Inclusive','branch','Inventory','','','','',''),('416902723740202030',3417,'41690272321','46','1.00','200','retail','0','2023-07-25 11:06:14','','','','0','Cash',0.00,'200','','','4','','1','2023-07-25 08:13:50','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','22.00','21','Inclusive','branch','Inventory','','','','',''),('416902747633022367',3418,'41690274763','3','1.00','200','retail','0','2023-07-25 11:46:03','','','','0','Cash',0.00,'200','','','4','','1','2023-07-25 08:46:08','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-99.00','-100','Inclusive','branch','Inventory','','','','',''),('416902781338922844',3419,'41690278132','17','1.00','200','retail','0','2023-07-25 12:42:12','','','','0','Cash',0.00,'200','','','4','','1','2023-07-25 09:42:15','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-54.00','-55','Inclusive','branch','Inventory','','','','',''),('416902814049240932',3420,'41690281404','60','1.00','100','retail','0','2023-07-25 13:36:44','','','','70','Cash',0.00,'100','','','4','','1','2023-07-25 10:36:47','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500','',''),('416902831923421300',3421,'41690283192','7','1.00','200','retail','0','2023-07-25 14:06:32','','','','0','Cash',0.00,'200','','','4','','1','2023-07-25 11:45:52','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-165.00','-166','Inclusive','branch','Inventory','','','','',''),('416902831960202030',3422,'41690283192','11','1.00','280','retail','0','2023-07-25 14:06:35','','','','0','Cash',0.00,'280','','','4','','1','2023-07-25 11:45:52','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-23.00','-24','Inclusive','branch','Inventory','','','','',''),('416902832072360302',3423,'41690283192','46','1.00','200','retail','0','2023-07-25 14:06:46','','','','0','Cash',0.00,'200','','','4','','1','2023-07-25 11:45:52','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','21.00','20','Inclusive','branch','Inventory','','','','',''),('416902850975922544',3424,'41690283192','46','1.00','200','retail','0','2023-07-25 14:38:16','','','','0','Cash',0.00,'200','','','4','','1','2023-07-25 11:45:52','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','20.00','19','Inclusive','branch','Inventory','','','','',''),('416902942590202030',3426,'41690294258','38','1.00','350','retail','0','2023-07-25 17:10:58','','','','0','Cash',0.00,'350','','','4','','1','2023-07-25 14:11:01','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-413.00','-414','Inclusive','branch','Inventory','','','','',''),('416902909889280932',3427,'41690290987','3','1.00','200','retail','0','2023-07-25 16:16:27','','','','0','Cash',0.00,'200','','','4','','1','2023-07-25 14:42:50','','1','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-100.00','-101','Inclusive','branch','Inventory','','','','',''),('416902961554292432',3428,'41690290987','3','1.00','200','retail','0','2023-07-25 17:42:34','','','','0','Cash',0.00,'200','','','4','','1','2023-07-25 14:42:50','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-101.00','-102','Inclusive','branch','Inventory','','','','',''),('416902980810202030',3429,'41690298080','1','1.00','280','retail','0','2023-07-25 18:14:40','','','','0','Cash',0.00,'280','','','4','','1','2023-07-25 15:16:39','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-228.00','-229','Inclusive','branch','Inventory','','','','',''),('416902992433421300',3430,'41690299242','38','1.00','350','retail','0','2023-07-25 18:34:02','','','','0','Cash',0.00,'350','','','4','','1','2023-07-25 15:34:07','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-414.00','-415','Inclusive','branch','Inventory','','','','',''),('416903043953421300',3431,'41690304394','38','1.00','350','retail','0','2023-07-25 19:59:54','','','','0','Cash',0.00,'350','','','4','','1','2023-07-25 17:00:00','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-415.00','-416','Inclusive','branch','Inventory','','','','',''),('416903092953421300',3432,'41690309294','1','1.00','280','retail','0','2023-07-25 21:21:34','','','','0','Cash',0.00,'280','','','4','','1','2023-07-25 18:21:41','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-229.00','-230','Inclusive','branch','Inventory','','','','',''),('416903093279923944',3433,'41690309327','11','1.00','280','retail','0','2023-07-25 21:22:07','','','','0','Cash',0.00,'280','','','4','','1','2023-07-25 18:22:10','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-24.00','-25','Inclusive','branch','Inventory','','','','',''),('416903093432222032',3434,'41690309343','23','1.00','250','retail','0','2023-07-25 21:22:23','','','','0','Cash',0.00,'250','','','4','','1','2023-07-25 18:22:26','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-154.00','-155','Inclusive','branch','Inventory','','','','',''),('416903095873421300',3435,'41690309586','21','1.00','200','retail','0','2023-07-25 21:26:26','','','','0','Cash',0.00,'200','','','4','','1','2023-07-25 18:26:29','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-393.00','-394','Inclusive','branch','Inventory','','','','',''),('416903112251923144',3436,'41690311224','12','1.00','250','retail','0','2023-07-25 21:53:44','','','','0','Cash',0.00,'250','','','4','','1','2023-07-25 18:53:48','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-83.00','-84','Inclusive','branch','Inventory','','','','',''),('416903518510202030',3437,'41690351850','38','1.00','350','retail','0','2023-07-26 09:10:50','','','','0','Cash',0.00,'350','','','4','','1','2023-07-26 06:10:53','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-416.00','-417','Inclusive','branch','Inventory','','','','',''),('416903653415923544',3438,'41690365340','38','1.00','350','retail','0','2023-07-26 12:55:40','','','','0','Cash',0.00,'350','','','4','','1','2023-07-26 09:55:43','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-417.00','-418','Inclusive','branch','Inventory','','','','',''),('416903716702167302',3439,'41690371669','17','1.00','200','retail','0','2023-07-26 14:41:09','','','','0','Cash',0.00,'200','','','4','','1','2023-07-26 11:41:13','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-55.00','-56','Inclusive','branch','Inventory','','','','',''),('416903757572222032',3440,'41690375757','17','1.00','200','retail','0','2023-07-26 15:49:17','','','','0','Cash',0.00,'200','','','4','','1','2023-07-26 12:49:21','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-56.00','-57','Inclusive','branch','Inventory','','','','',''),('416903844920202030',3441,'41690384491','19','1.00','200','retail','0','2023-07-26 18:14:51','','','','0','Cash',0.00,'200','','','4','','1','2023-07-26 15:14:55','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-10.00','-11','Inclusive','branch','Inventory','','','','',''),('416903881613022361',3442,'41690388161','11','1.00','280','retail','0','2023-07-26 19:16:01','','','','0','Cash',0.00,'280','','','4','','1','2023-07-26 16:18:41','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-25.00','-26','Inclusive','branch','Inventory','','','','',''),('416903881643421300',3443,'41690388161','11','1.00','280','retail','0','2023-07-26 19:16:03','','','','0','Cash',0.00,'280','','','4','','1','2023-07-26 16:18:41','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-26.00','-27','Inclusive','branch','Inventory','','','','',''),('416903893039923944',3444,'41690389303','21','1.00','200','retail','0','2023-07-26 19:35:03','','','','0','Cash',0.00,'200','','','4','','1','2023-07-26 16:35:06','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-394.00','-395','Inclusive','branch','Inventory','','','','',''),('416903893292222032',3445,'41690389328','21','1.00','200','retail','0','2023-07-26 19:35:28','','','','0','Cash',0.00,'200','','','4','','1','2023-07-26 16:35:31','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-395.00','-396','Inclusive','branch','Inventory','','','','',''),('416903895549923944',3446,'41690389553','21','1.00','200','retail','0','2023-07-26 19:39:13','','','','0','Cash',0.00,'200','','','4','','1','2023-07-26 16:39:17','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-396.00','-397','Inclusive','branch','Inventory','','','','',''),('416903895749240932',3447,'41690389573','22','1.00','250','retail','0','2023-07-26 19:39:33','','','','0','Cash',0.00,'250','','','4','','1','2023-07-26 16:39:36','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-39.00','-40','Inclusive','branch','Inventory','','','','',''),('416903895853421300',3448,'41690389584','1','1.00','280','retail','0','2023-07-26 19:39:44','','','','0','Cash',0.00,'280','','','4','','1','2023-07-26 16:39:48','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-230.00','-231','Inclusive','branch','Inventory','','','','',''),('416904388949240932',3449,'41690438894','1','1.00','280','retail','0','2023-07-27 09:21:34','','','','0','Cash',0.00,'280','','','4','','1','2023-07-27 06:21:38','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-231.00','-232','Inclusive','branch','Inventory','','','','',''),('416904833952369302',3450,'41690483394','21','1.00','200','retail','0','2023-07-27 21:43:14','','','','0','Cash',0.00,'200','','','4','','1','2023-07-27 18:43:18','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-397.00','-398','Inclusive','branch','Inventory','','','','',''),('416904834413022344',3451,'41690483440','20','1.00','200','retail','0','2023-07-27 21:44:00','','','','0','Cash',0.00,'200','','','4','','1','2023-07-27 18:44:03','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-143.00','-144','Inclusive','branch','Inventory','','','','',''),('416904834574282432',3452,'41690483456','20','1.00','200','retail','0','2023-07-27 21:44:16','','','','0','Cash',0.00,'200','','','4','','1','2023-07-27 18:44:19','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-144.00','-145','Inclusive','branch','Inventory','','','','',''),('416905276324222432',3453,'41690527631','2','1.00','250','retail','0','2023-07-28 10:00:31','','','','0','Cash',0.00,'250','','','4','','1','2023-07-28 07:00:35','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-79.00','-80','Inclusive','branch','Inventory','','','','',''),('416905355770202030',3454,'41690535576','1','1.00','280','retail','0','2023-07-28 12:12:56','','','','0','Cash',0.00,'280','','','4','','1','2023-07-28 09:37:00','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-232.00','-233','Inclusive','branch','Inventory','','','','',''),('416905355842568302',3455,'41690535576','47','1.00','200','retail','0','2023-07-28 12:13:03','','','','0','Cash',0.00,'200','','','4','','1','2023-07-28 09:37:00','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','27.00','26','Inclusive','branch','Inventory','','','','',''),('416905355873421300',3456,'41690535576','46','1.00','200','retail','0','2023-07-28 12:13:06','','','','0','Cash',0.00,'200','','','4','','1','2023-07-28 09:37:00','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','19.00','18','Inclusive','branch','Inventory','','','','',''),('416905368916925644',3457,'41690535576','11','1.00','280','retail','0','2023-07-28 12:34:50','','','','0','Cash',0.00,'280','','','4','','1','2023-07-28 09:37:00','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-27.00','-28','Inclusive','branch','Inventory','','','','',''),('416905369053022309',3458,'41690535576','46','1.00','200','retail','0','2023-07-28 12:35:05','','','','0','Cash',0.00,'200','','','4','','1','2023-07-28 09:37:00','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','18.00','17','Inclusive','branch','Inventory','','','','',''),('416905370444232432',3459,'41690537043','3','1.00','200','retail','0','2023-07-28 12:37:23','','','','0','Cash',0.00,'200','','','4','','1','2023-07-28 09:37:31','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-102.00','-103','Inclusive','branch','Inventory','','','','',''),('416905426422264302',3460,'41690542641','54','1.00','350','retail','0','2023-07-28 14:10:41','','','','200','Cash',0.00,'350','','','4','','1','2023-07-28 11:13:37','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Service','1110','4000','5500','',''),('416905440830202030',3461,'41690544082','20','1.00','200','retail','0','2023-07-28 14:34:42','','','','0','Cash',0.00,'200','','','4','','1','2023-07-28 11:34:46','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-145.00','-146','Inclusive','branch','Inventory','','','','',''),('416905491633022361',3462,'41690549163','5','1.00','300','retail','0','2023-07-28 15:59:23','','','','0','Cash',0.00,'300','','','4','','1','2023-07-28 12:59:25','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-103.00','-104','Inclusive','branch','Inventory','','','','',''),('416905520143022310',3463,'41690552013','1','1.00','280','retail','0','2023-07-28 16:46:53','','','','0','Cash',0.00,'280','','','4','','1','2023-07-28 13:46:57','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-233.00','-234','Inclusive','branch','Inventory','','','','',''),('416905541383421300',3464,'41690554137','38','1.00','350','retail','0','2023-07-28 17:22:17','','','','0','Cash',0.00,'350','','','4','','1','2023-07-28 14:22:22','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-418.00','-419','Inclusive','branch','Inventory','','','','',''),('416905560882343302',3465,'41690556087','5','1.00','300','retail','0','2023-07-28 17:54:47','','','','0','Cash',0.00,'300','','','4','','1','2023-07-28 14:54:51','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-104.00','-105','Inclusive','branch','Inventory','','','','',''),('416905565113421300',3466,'41690556510','21','1.00','200','retail','0','2023-07-28 18:01:50','','','','0','Cash',0.00,'200','','','4','','1','2023-07-28 15:01:53','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-398.00','-399','Inclusive','branch','Inventory','','','','',''),('416905578093421300',3467,'41690557808','22','1.00','250','retail','0','2023-07-28 18:23:28','','','','0','Cash',0.00,'250','','','4','','1','2023-07-28 15:23:31','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-40.00','-41','Inclusive','branch','Inventory','','','','',''),('416905595894252432',3468,'41690559588','20','1.00','200','retail','0','2023-07-28 18:53:08','','','','0','Cash',0.00,'200','','','4','','1','2023-07-28 15:53:18','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-146.00','-147','Inclusive','branch','Inventory','','','','',''),('416905596783022376',3469,'41690559677','1','1.00','280','retail','0','2023-07-28 18:54:37','','','','0','Cash',0.00,'280','','','4','','1','2023-07-28 15:54:49','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-234.00','-235','Inclusive','branch','Inventory','','','','',''),('416905685272222032',3470,'41690568527','21','1.00','200','retail','0','2023-07-28 21:22:07','','','','0','Cash',0.00,'200','','','4','','1','2023-07-28 18:22:09','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-399.00','-400','Inclusive','branch','Inventory','','','','',''),('416905685538925844',3471,'41690568552','23','1.00','250','retail','0','2023-07-28 21:22:32','','','','0','Cash',0.00,'250','','','4','','1','2023-07-28 18:22:35','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-155.00','-156','Inclusive','branch','Inventory','','','','',''),('416905701143421300',3472,'41690570114','21','1.00','200','retail','0','2023-07-28 21:48:34','','','','0','Cash',0.00,'200','','','4','','1','2023-07-28 18:48:48','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-400.00','-401','Inclusive','branch','Inventory','','','','',''),('416906167194223090',3473,'41690616717','7','1.00','200','retail','0','2023-07-29 10:45:18','','','','0','Cash',0.00,'200','','','4','','1','2023-07-29 07:45:27','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-167.00','-168','Inclusive','branch','Inventory','','','','',''),('416906264803421300',3474,'41690626479','21','1.00','200','retail','0','2023-07-29 13:27:59','','','','0','Cash',0.00,'200','','','4','','1','2023-07-29 10:28:08','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-401.00','-402','Inclusive','branch','Inventory','','','','',''),('416906265200202030',3475,'41690626519','1','1.00','280','retail','0','2023-07-29 13:28:39','','','','0','Cash',0.00,'280','','','4','','1','2023-07-29 10:28:43','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-235.00','-236','Inclusive','branch','Inventory','','','','',''),('416906275332343302',3476,'41690627532','21','1.00','200','retail','0','2023-07-29 13:45:32','','','','0','Cash',0.00,'200','','','4','','1','2023-07-29 10:45:36','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-402.00','-403','Inclusive','branch','Inventory','','','','',''),('416906296260202030',3477,'41690629625','38','1.00','350','retail','0','2023-07-29 14:20:25','','','','0','Cash',0.00,'350','','','4','','1','2023-07-29 11:20:31','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-419.00','-420','Inclusive','branch','Inventory','','','','',''),('416906319799290932',3478,'41690631979','38','1.00','350','retail','0','2023-07-29 14:59:39','','','','0','Cash',0.00,'350','','','4','','1','2023-07-29 11:59:43','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-420.00','-421','Inclusive','branch','Inventory','','','','',''),('416906379430202030',3479,'41690637942','21','1.00','200','retail','0','2023-07-29 16:39:02','','','','0','Cash',0.00,'200','','','4','','1','2023-07-29 13:39:08','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-403.00','-404','Inclusive','branch','Inventory','','','','',''),('416906379792222032',3480,'41690637978','15','1.00','200','retail','0','2023-07-29 16:39:38','','','','0','Cash',0.00,'200','','','4','','1','2023-07-29 13:39:47','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-16.00','-17','Inclusive','branch','Inventory','','','','',''),('416906383008926844',3481,'41690638299','19','1.00','200','retail','0','2023-07-29 16:44:59','','','','0','Cash',0.00,'200','','','4','','1','2023-07-29 13:45:04','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-11.00','-12','Inclusive','branch','Inventory','','','','',''),('416906390402222032',3482,'41690639039','21','1.00','200','retail','0','2023-07-29 16:57:19','','','','0','Cash',0.00,'200','','','4','','1','2023-07-29 13:57:28','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-404.00','-405','Inclusive','branch','Inventory','','','','',''),('416906390452352209',3483,'41690639039','64','1.00','150','retail','0','2023-07-29 16:57:24','','','','100','Cash',0.00,'150','','','4','','1','2023-07-29 13:57:28','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Service','1110','4000','5500','',''),('416906400300926044',3484,'41690640030','23','1.00','250','retail','0','2023-07-29 17:13:50','','','','0','Cash',0.00,'250','','','4','','1','2023-07-29 14:13:57','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-156.00','-157','Inclusive','branch','Inventory','','','','',''),('416906400344242432',3485,'41690640030','23','1.00','250','retail','0','2023-07-29 17:13:53','','','','0','Cash',0.00,'250','','','4','','1','2023-07-29 14:13:57','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-157.00','-158','Inclusive','branch','Inventory','','','','',''),('416906407029220932',3486,'41690640701','38','1.00','350','retail','0','2023-07-29 17:25:01','','','','0','Cash',0.00,'350','','','4','','1','2023-07-29 14:25:05','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-421.00','-422','Inclusive','branch','Inventory','','','','',''),('416906423763421300',3487,'41690642375','15','1.00','200','retail','0','2023-07-29 17:52:55','','','','0','Cash',0.00,'200','','','4','','1','2023-07-29 14:53:04','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-17.00','-18','Inclusive','branch','Inventory','','','','',''),('416906539300202030',3488,'41690653929','38','1.00','350','retail','0','2023-07-29 21:05:29','','','','0','Cash',0.00,'350','','','4','','1','2023-07-29 18:05:33','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-422.00','-423','Inclusive','branch','Inventory','','','','',''),('416906564422664302',3489,'41690656441','38','1.00','350','retail','0','2023-07-29 21:47:22','','','','0','Cash',0.00,'350','','','4','','1','2023-07-29 18:47:26','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-423.00','-424','Inclusive','branch','Inventory','','','','',''),('416906570713022370',3490,'41690657071','1','1.00','280','retail','0','2023-07-29 21:57:51','','','','0','Cash',0.00,'280','','','4','','1','2023-07-29 18:58:02','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-236.00','-237','Inclusive','branch','Inventory','','','','',''),('416906570743421300',3491,'41690657071','1','1.00','280','retail','0','2023-07-29 21:57:53','','','','0','Cash',0.00,'280','','','4','','1','2023-07-29 18:58:02','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-237.00','-238','Inclusive','branch','Inventory','','','','',''),('416906570792767302',3492,'41690657071','61','1.00','150','retail','0','2023-07-29 21:57:59','','','','100','Cash',0.00,'150','','','4','','1','2023-07-29 18:58:02','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Service','1110','4000','5500','',''),('416906574173022314',3493,'41690657416','1','1.00','280','retail','0','2023-07-29 22:03:36','','','','0','Cash',0.00,'280','','','4','','1','2023-07-29 19:03:50','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-238.00','-239','Inclusive','branch','Inventory','','','','',''),('416906574207926744',3494,'41690657416','1','1.00','280','retail','0','2023-07-29 22:03:40','','','','0','Cash',0.00,'280','','','4','','1','2023-07-29 19:03:50','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-239.00','-240','Inclusive','branch','Inventory','','','','',''),('416906574262343302',3495,'41690657416','64','1.00','150','retail','0','2023-07-29 22:03:45','','','','100','Cash',0.00,'150','','','4','','1','2023-07-29 19:03:50','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Service','1110','4000','5500','',''),('416906987062222032',3496,'41690698705','5','1.00','300','retail','0','2023-07-30 09:31:45','','','','0','Cash',0.00,'300','','','4','','1','2023-07-30 06:35:07','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-105.00','-106','Inclusive','branch','Inventory','','','','',''),('416906987093022307',3497,'41690698705','5','1.00','300','retail','0','2023-07-30 09:31:49','','','','0','Cash',0.00,'300','','','4','','1','2023-07-30 06:35:07','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-106.00','-107','Inclusive','branch','Inventory','','','','',''),('416906987124292432',3498,'41690698705','11','1.00','280','retail','0','2023-07-30 09:31:51','','','','0','Cash',0.00,'280','','','4','','1','2023-07-30 06:35:07','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-28.00','-29','Inclusive','branch','Inventory','','','','',''),('416906987143022317',3499,'41690698705','11','1.00','280','retail','0','2023-07-30 09:31:53','','','','0','Cash',0.00,'280','','','4','','1','2023-07-30 06:35:07','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-29.00','-30','Inclusive','branch','Inventory','','','','',''),('416906987469260932',3500,'41690698705','7','1.00','200','retail','0','2023-07-30 09:32:25','','','','0','Cash',0.00,'200','','','4','','1','2023-07-30 06:35:07','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-167.00','-168','Inclusive','branch','Inventory','','','','',''),('416906987585294894',3501,'41690698705','55','1.00','200','retail','0','2023-07-30 09:32:37','','','','150','Cash',0.00,'200','','','4','','1','2023-07-30 06:35:07','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','294.00','293','Inclusive','branch','Inventory','1110','4000','5500','',''),('416907007080202030',3502,'41690700707','17','1.00','200','retail','0','2023-07-30 10:05:07','','','','0','Cash',0.00,'200','','','4','','1','2023-07-30 07:12:55','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-57.00','-58','Inclusive','branch','Inventory','','','','',''),('416907007122222032',3503,'41690700707','17','1.00','200','retail','0','2023-07-30 10:05:11','','','','0','Cash',0.00,'200','','','4','','1','2023-07-30 07:12:55','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-58.00','-59','Inclusive','branch','Inventory','','','','',''),('416907023562222032',3504,'41690702355','20','1.00','200','retail','0','2023-07-30 10:32:35','','','','0','Cash',0.00,'200','','','4','','1','2023-07-30 07:32:38','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-147.00','-148','Inclusive','branch','Inventory','','','','',''),('416907283323421300',3505,'41690728332','3','1.00','200','retail','0','2023-07-30 17:45:32','','','','0','Cash',0.00,'200','','','4','','1','2023-07-30 14:45:36','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-103.00','-104','Inclusive','branch','Inventory','','','','',''),('416907285492322233',3506,'41690728548','55','1.00','200','retail','0','2023-07-30 17:49:08','','','','150','Cash',0.00,'200','','','4','','1','2023-07-30 14:49:14','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','293.00','292','Inclusive','branch','Inventory','1110','4000','5500','',''),('416907285528927844',3507,'41690728548','55','1.00','200','retail','0','2023-07-30 17:49:11','','','','150','Cash',0.00,'200','','','4','','1','2023-07-30 14:49:14','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','292.00','291','Inclusive','branch','Inventory','1110','4000','5500','',''); INSERT INTO `sales_order` VALUES ('416907294109200932',3508,'41690729409','3','1.00','200','retail','0','2023-07-30 18:03:29','','','','0','Cash',0.00,'200','','','4','','1','2023-07-30 15:05:43','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-104.00','-105','Inclusive','branch','Inventory','','','','',''),('416907294129927944',3509,'41690729409','3','1.00','200','retail','0','2023-07-30 18:03:32','','','','0','Cash',0.00,'200','','','4','','1','2023-07-30 15:05:43','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-105.00','-106','Inclusive','branch','Inventory','','','','',''),('416907294503022354',3510,'41690729409','9','1.00','200','retail','0','2023-07-30 18:04:09','','','','0','Cash',0.00,'200','','','4','','1','2023-07-30 15:05:43','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-8.00','-9','Inclusive','branch','Inventory','','','','',''),('416907294922222032',3511,'41690729409','24','1.00','100','retail','0','2023-07-30 18:04:52','','','','0','Cash',0.00,'100','','','4','','1','2023-07-30 15:05:43','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-26.00','-27','Inclusive','branch','Inventory','','','','',''),('416907302401322130',3512,'41690730239','11','1.00','280','retail','0','2023-07-30 18:17:19','','','','0','Cash',0.00,'280','','','4','','1','2023-07-30 15:17:23','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-30.00','-31','Inclusive','branch','Inventory','','','','',''),('416907314571927144',3513,'41690731457','21','1.00','200','retail','0','2023-07-30 18:37:37','','','','0','Cash',0.00,'200','','','4','','1','2023-07-30 15:37:40','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-405.00','-406','Inclusive','branch','Inventory','','','','',''),('416907338380202030',3514,'41690733837','12','1.00','250','retail','0','2023-07-30 19:17:17','','','','0','Cash',0.00,'250','','','4','','1','2023-07-30 16:17:20','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-84.00','-85','Inclusive','branch','Inventory','','','','',''),('416907354309200932',3515,'41690735430','20','1.00','200','retail','0','2023-07-30 19:43:50','','','','0','Cash',0.00,'200','','','4','','1','2023-07-30 16:43:53','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-148.00','-149','Inclusive','branch','Inventory','','','','',''),('416907406167407040',3516,'41690740615','31','1.00','200','retail','0','2023-07-30 21:10:15','','','','0','Cash',0.00,'200','','','4','','1','2023-07-30 18:10:20','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-16.00','-17','Inclusive','branch','Inventory','','','','',''),('416907431799404397',3517,'41690743178','38','1.00','350','retail','0','2023-07-30 21:52:58','','','','0','Cash',0.00,'350','','','4','','1','2023-07-30 18:53:02','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-424.00','-425','Inclusive','branch','Inventory','','','','',''),('416907435192361302',3518,'41690743518','11','1.00','280','retail','0','2023-07-30 21:58:38','','','','0','Cash',0.00,'280','','','4','','1','2023-07-30 18:58:48','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-31.00','-32','Inclusive','branch','Inventory','','','','',''),('416907435255404392',3519,'41690743518','5','1.00','300','retail','0','2023-07-30 21:58:44','','','','0','Cash',0.00,'300','','','4','','1','2023-07-30 18:58:48','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-107.00','-108','Inclusive','branch','Inventory','','','','',''),('416907440542222032',3520,'41690744053','38','1.00','350','retail','0','2023-07-30 22:07:33','','','','0','Cash',0.00,'350','','','4','','1','2023-07-30 19:07:45','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-425.00','-426','Inclusive','branch','Inventory','','','','',''),('416907975290202030',3521,'41690797528','20','1.00','200','retail','0','2023-07-31 12:58:48','','','','0','Cash',0.00,'200','','','4','','1','2023-07-31 09:58:53','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-149.00','-150','Inclusive','branch','Inventory','','','','',''),('416907992383421300',3522,'41690799237','21','1.00','200','retail','0','2023-07-31 13:27:17','','','','0','Cash',0.00,'200','','','4','','1','2023-07-31 10:27:21','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-406.00','-407','Inclusive','branch','Inventory','','','','',''),('416908083912222032',3523,'41690808390','21','1.00','200','retail','0','2023-07-31 15:59:50','','','','0','Cash',0.00,'200','','','4','','1','2023-07-31 13:00:44','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-407.00','-408','Inclusive','branch','Inventory','','','','',''),('416908084000202030',3524,'41690808390','53','1.00','200','retail','0','2023-07-31 16:00:00','','','','150','Cash',0.00,'200','','','4','','1','2023-07-31 13:00:44','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','45.00','44','Inclusive','branch','Inventory','1110','4000','5500','',''),('416908086303022336',3525,'41690808630','17','1.00','200','retail','0','2023-07-31 16:03:50','','','','0','Cash',0.00,'200','','','4','','1','2023-07-31 13:03:56','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-59.00','-60','Inclusive','branch','Inventory','','','','',''),('416908097222343302',3526,'41690809721','3','1.00','200','retail','0','2023-07-31 16:22:01','','','','0','Cash',0.00,'200','','','4','','1','2023-07-31 13:22:05','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-106.00','-107','Inclusive','branch','Inventory','','','','',''),('416908151150202030',3527,'41690815115','38','1.00','350','retail','0','2023-07-31 17:51:55','','','','0','Cash',0.00,'350','','','4','','1','2023-07-31 14:52:01','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-426.00','-427','Inclusive','branch','Inventory','','','','',''),('416908151193022311',3528,'41690815115','38','1.00','350','retail','0','2023-07-31 17:51:58','','','','0','Cash',0.00,'350','','','4','','1','2023-07-31 14:52:01','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-427.00','-428','Inclusive','branch','Inventory','','','','',''),('416908154173421300',3529,'41690815416','21','1.00','200','retail','0','2023-07-31 17:56:57','','','','0','Cash',0.00,'200','','','4','','1','2023-07-31 14:57:01','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-408.00','-409','Inclusive','branch','Inventory','','','','',''),('416908169092222032',3530,'41690816908','21','1.00','200','retail','0','2023-07-31 18:21:48','','','','0','Cash',0.00,'200','','','4','','1','2023-07-31 15:21:58','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-409.00','-410','Inclusive','branch','Inventory','','','','',''),('416908173692222032',3531,'41690817369','11','1.00','280','retail','0','2023-07-31 18:29:29','','','','0','Cash',0.00,'280','','','4','','1','2023-07-31 15:29:33','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-32.00','-33','Inclusive','branch','Inventory','','','','',''),('416908189333421300',3532,'41690818933','29','1.00','300','retail','0','2023-07-31 18:55:33','','','','0','Cash',0.00,'300','','','4','','1','2023-07-31 15:56:00','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-25.00','-26','Inclusive','branch','Inventory','','','','',''),('416908189549240932',3533,'41690818933','24','1.00','100','retail','0','2023-07-31 18:55:53','','','','0','Cash',0.00,'100','','','4','','1','2023-07-31 15:56:00','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-27.00','-28','Inclusive','branch','Inventory','','','','',''),('416908212444222432',3534,'41690821244','15','1.00','200','retail','0','2023-07-31 19:34:04','','','','0','Cash',0.00,'200','','','4','','1','2023-07-31 16:34:09','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-18.00','-19','Inclusive','branch','Inventory','','','','',''),('416908229469260932',3535,'41690822945','38','1.00','350','retail','0','2023-07-31 20:02:25','','','','0','Cash',0.00,'350','','','4','','1','2023-07-31 17:02:30','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-428.00','-429','Inclusive','branch','Inventory','','','','',''),('416908242202462302',3536,'41690824220','21','1.00','200','retail','0','2023-07-31 20:23:40','','','','0','Cash',0.00,'200','','','4','','1','2023-07-31 17:23:43','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-410.00','-411','Inclusive','branch','Inventory','','','','',''),('416908243494928444',3537,'41690824349','21','1.00','200','retail','0','2023-07-31 20:25:49','','','','0','Cash',0.00,'200','','','4','','1','2023-07-31 17:25:54','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-411.00','-412','Inclusive','branch','Inventory','','','','',''),('416908268252222032',3538,'41690826824','21','1.00','200','retail','0','2023-07-31 21:07:04','','','','0','Cash',0.00,'200','','','4','','1','2023-07-31 18:07:09','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-412.00','-413','Inclusive','branch','Inventory','','','','',''),('416908272852222032',3539,'41690827284','52','1.00','150','retail','0','2023-07-31 21:14:44','','','','200','Cash',0.00,'150','','','4','','1','2023-07-31 18:14:53','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416908902424292432',3540,'41690890242','21','1.00','200','retail','0','2023-08-01 14:44:02','','','','0','Cash',0.00,'200','','','4','','1','2023-08-01 11:44:05','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-413.00','-414','Inclusive','branch','Inventory','','','','',''),('416908902523421300',3541,'41690890251','21','1.00','200','retail','0','2023-08-01 14:44:11','','','','0','Cash',0.00,'200','','','4','','1','2023-08-01 11:44:15','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-414.00','-415','Inclusive','branch','Inventory','','','','',''),('416908924550202030',3542,'41690892455','7','1.00','200','retail','0','2023-08-01 15:20:55','','','','0','Cash',0.00,'200','','','4','','1','2023-08-01 12:21:35','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-168.00','-169','Inclusive','branch','Inventory','','','','',''),('416909010151929144',3543,'41690901014','23','1.00','250','retail','0','2023-08-01 17:43:34','','','','0','Cash',0.00,'250','','','4','','1','2023-08-01 14:43:37','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-158.00','-159','Inclusive','branch','Inventory','','','','',''),('416909027413421300',3545,'41690902740','11','1.00','280','retail','0','2023-08-01 18:12:20','','','','0','Cash',0.00,'280','','','4','','1','2023-08-01 15:25:20','','1','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-33.00','-34','Inclusive','branch','Inventory','','','','',''),('416909085229220932',3546,'41690908521','38','1.00','350','retail','0','2023-08-01 19:48:41','','','','0','Cash',0.00,'350','','','4','','1','2023-08-01 16:48:53','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-429.00','-430','Inclusive','branch','Inventory','','','','',''),('416909085270202030',3547,'41690908521','5','1.00','300','retail','0','2023-08-01 19:48:47','','','','0','Cash',0.00,'300','','','4','','1','2023-08-01 16:48:53','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-108.00','-109','Inclusive','branch','Inventory','','','','',''),('416909104734212432',3548,'41690910472','1','1.00','280','retail','0','2023-08-01 20:21:12','','','','0','Cash',0.00,'280','','','4','','1','2023-08-01 17:21:15','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-240.00','-241','Inclusive','branch','Inventory','','','','',''),('416909147004212432',3549,'41690914699','38','1.00','350','retail','0','2023-08-01 21:31:39','','','','0','Cash',0.00,'350','','','4','','1','2023-08-01 18:34:11','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-430.00','-431','Inclusive','branch','Inventory','','','','',''),('416909151312222032',3550,'41690915130','1','1.00','280','retail','0','2023-08-01 21:38:50','','','','0','Cash',0.00,'280','','','4','','1','2023-08-01 18:39:02','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-241.00','-242','Inclusive','branch','Inventory','','','','',''),('416909151342563302',3551,'41690915130','1','1.00','280','retail','0','2023-08-01 21:38:53','','','','0','Cash',0.00,'280','','','4','','1','2023-08-01 18:39:02','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-242.00','-243','Inclusive','branch','Inventory','','','','',''),('416909588089280932',3552,'41690958807','1','1.00','280','retail','0','2023-08-02 09:46:47','','','','0','Cash',0.00,'280','','','4','','1','2023-08-02 06:46:50','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-243.00','-244','Inclusive','branch','Inventory','','','','',''),('416909643533421300',3553,'41690964352','11','1.00','280','retail','0','2023-08-02 11:19:12','','','','0','Cash',0.00,'280','','','4','','1','2023-08-02 08:19:24','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-34.00','-35','Inclusive','branch','Inventory','','','','',''),('416909643610202030',3554,'41690964352','24','1.00','100','retail','0','2023-08-02 11:19:20','','','','0','Cash',0.00,'100','','','4','','1','2023-08-02 08:19:24','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-28.00','-29','Inclusive','branch','Inventory','','','','',''),('416909696123421300',3555,'41690969612','29','1.00','300','retail','0','2023-08-02 12:46:52','','','','0','Cash',0.00,'300','','','4','','1','2023-08-02 09:47:05','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-26.00','-27','Inclusive','branch','Inventory','','','','',''),('416909696229929944',3556,'41690969612','46','1.00','200','retail','0','2023-08-02 12:47:01','','','','0','Cash',0.00,'200','','','4','','1','2023-08-02 09:47:05','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','17.00','16','Inclusive','branch','Inventory','','','','',''),('416909854315929544',3557,'41690985430','54','1.00','350','retail','0','2023-08-02 17:10:30','','','','200','Cash',0.00,'350','','','4','','1','2023-08-02 14:11:12','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Service','1110','4000','5500','',''),('416909855403421300',3558,'41690985539','38','1.00','350','retail','0','2023-08-02 17:12:19','','','','0','Cash',0.00,'350','','','4','','1','2023-08-02 14:12:23','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-431.00','-432','Inclusive','branch','Inventory','','','','',''),('416909864172222032',3559,'41690986416','23','1.00','250','retail','0','2023-08-02 17:26:56','','','','0','Cash',0.00,'250','','','4','','1','2023-08-02 14:26:59','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-159.00','-160','Inclusive','branch','Inventory','','','','',''),('416909866590202030',3560,'41690986658','3','1.00','200','retail','0','2023-08-02 17:30:58','','','','0','Cash',0.00,'200','','','4','','1','2023-08-02 14:31:02','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-107.00','-108','Inclusive','branch','Inventory','','','','',''),('416909866703421300',3561,'41690986669','15','1.00','200','retail','0','2023-08-02 17:31:09','','','','0','Cash',0.00,'200','','','4','','1','2023-08-02 14:31:12','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-19.00','-20','Inclusive','branch','Inventory','','','','',''),('416909925214292432',3562,'41690992520','1','1.00','280','retail','0','2023-08-02 19:08:40','','','','0','Cash',0.00,'280','','','4','','1','2023-08-02 16:08:43','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-244.00','-245','Inclusive','branch','Inventory','','','','',''),('416909925429220932',3563,'41690992541','38','1.00','350','retail','0','2023-08-02 19:09:01','','','','0','Cash',0.00,'350','','','4','','1','2023-08-02 16:09:05','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-432.00','-433','Inclusive','branch','Inventory','','','','',''),('416909941852468302',3566,'41690994184','52','1.00','150','retail','0','2023-08-02 19:36:24','','','','200','Cash',0.00,'150','','','4','','1','2023-08-02 16:36:28','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416909965303421300',3567,'41690996529','17','1.00','200','retail','0','2023-08-02 20:15:29','','','','0','Cash',0.00,'200','','','4','','1','2023-08-02 17:15:33','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-60.00','-61','Inclusive','branch','Inventory','','','','',''),('416909937252362302',3568,'41690993724','20','1.00','200','retail','0','2023-08-02 19:28:44','','','','0','Cash',0.00,'200','','','4','','1','2023-08-02 17:41:27','','2','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-150.00','-151','Inclusive','branch','Inventory','','','','',''),('416909937319210932',3569,'41690993724','38','1.00','350','retail','0','2023-08-02 19:28:50','','','','0','Cash',0.00,'350','','','4','','1','2023-08-02 17:41:27','','7','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-433.00','-434','Inclusive','branch','Inventory','','','','',''),('416909980824292432',3570,'41690993724','38','1.00','350','retail','0','2023-08-02 20:41:21','','','','0','Cash',0.00,'350','','','4','','1','2023-08-02 17:41:27','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-434.00','-435','Inclusive','branch','Inventory','','','','',''),('416910020412920244',3571,'41691002041','38','1.00','350','retail','0','2023-08-02 21:47:21','','','','0','Cash',0.00,'350','','','4','','1','2023-08-02 18:47:24','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-435.00','-436','Inclusive','branch','Inventory','','','','',''),('416910020672222032',3572,'41691002066','20','1.00','200','retail','0','2023-08-02 21:47:46','','','','0','Cash',0.00,'200','','','4','','1','2023-08-02 18:47:49','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-151.00','-152','Inclusive','branch','Inventory','','','','',''),('416910037092360312',3573,'41691003708','38','1.00','350','retail','0','2023-08-02 22:15:08','','','','0','Cash',0.00,'350','','','4','','1','2023-08-02 19:15:11','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-436.00','-437','Inclusive','branch','Inventory','','','','',''),('416910084210202031',3574,'41691008420','20','1.00','200','retail','0','2023-08-02 23:33:40','','','','0','Cash',0.00,'200','','','4','','1','2023-08-02 20:33:43','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-152.00','-153','Inclusive','branch','Inventory','','','','',''),('416910084462864312',3575,'41691008445','2','1.00','250','retail','0','2023-08-02 23:34:05','','','','0','Cash',0.00,'250','','','4','','1','2023-08-02 20:34:09','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-80.00','-81','Inclusive','branch','Inventory','','','','',''),('416910645773421300',3576,'41691064576','21','1.00','200','retail','0','2023-08-03 15:09:37','','','','0','Cash',0.00,'200','','','4','','1','2023-08-03 12:09:40','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-415.00','-416','Inclusive','branch','Inventory','','','','',''),('416910645864262432',3578,'41691064585','20','1.00','200','retail','0','2023-08-03 15:09:45','','','','0','Cash',0.00,'200','','','4','','1','2023-08-03 12:12:14','','2','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-153.00','-154','Inclusive','branch','Inventory','','','','',''),('416910647253022327',3579,'41691064585','21','1.00','200','retail','0','2023-08-03 15:12:04','','','','0','Cash',0.00,'200','','','4','','1','2023-08-03 12:12:14','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-416.00','-417','Inclusive','branch','Inventory','','','','',''),('416910657244262432',3580,'41691065722','7','1.00','200','retail','0','2023-08-03 15:28:44','','','','0','Cash',0.00,'200','','','4','','1','2023-08-03 12:28:52','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-169.00','-170','Inclusive','branch','Inventory','','','','',''),('416910663854262432',3581,'41691066384','20','1.00','200','retail','0','2023-08-03 15:39:44','','','','0','Cash',0.00,'200','','','4','','1','2023-08-03 12:39:48','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-154.00','-155','Inclusive','branch','Inventory','','','','',''),('416910664282662312',3582,'41691066427','16','1.00','200','retail','0','2023-08-03 15:40:27','','','','0','Cash',0.00,'200','','','4','','1','2023-08-03 12:40:32','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-25.00','-26','Inclusive','branch','Inventory','','','','',''),('416910725182261312',3583,'41691072517','3','1.00','200','retail','0','2023-08-03 17:21:57','','','','0','Cash',0.00,'200','','','4','','1','2023-08-03 14:21:59','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-108.00','-109','Inclusive','branch','Inventory','','','','',''),('416910725262262312',3584,'41691072526','11','1.00','280','retail','0','2023-08-03 17:22:06','','','','0','Cash',0.00,'280','','','4','','1','2023-08-03 14:22:10','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-35.00','-36','Inclusive','branch','Inventory','','','','',''),('416910743613421300',3585,'41691074360','38','1.00','350','retail','0','2023-08-03 17:52:40','','','','0','Cash',0.00,'350','','','4','','1','2023-08-03 14:52:54','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-437.00','-438','Inclusive','branch','Inventory','','','','',''),('416910743689280932',3586,'41691074360','1','1.00','280','retail','0','2023-08-03 17:52:47','','','','0','Cash',0.00,'280','','','4','','1','2023-08-03 14:52:54','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-245.00','-246','Inclusive','branch','Inventory','','','','',''),('416910743712343302',3587,'41691074360','1','1.00','280','retail','0','2023-08-03 17:52:50','','','','0','Cash',0.00,'280','','','4','','1','2023-08-03 14:52:54','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-246.00','-247','Inclusive','branch','Inventory','','','','',''),('416910743883413300',3588,'41691074387','11','1.00','280','retail','0','2023-08-03 17:53:07','','','','0','Cash',0.00,'280','','','4','','1','2023-08-03 14:53:12','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-36.00','-37','Inclusive','branch','Inventory','','','','',''),('416910743912222032',3589,'41691074387','1','1.00','280','retail','0','2023-08-03 17:53:10','','','','0','Cash',0.00,'280','','','4','','1','2023-08-03 14:53:12','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-247.00','-248','Inclusive','branch','Inventory','','','','',''),('416910744032460312',3590,'41691074403','38','1.00','350','retail','0','2023-08-03 17:53:23','','','','0','Cash',0.00,'350','','','4','','1','2023-08-03 14:53:28','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-438.00','-439','Inclusive','branch','Inventory','','','','',''),('416910744063421300',3591,'41691074403','38','1.00','350','retail','0','2023-08-03 17:53:26','','','','0','Cash',0.00,'350','','','4','','1','2023-08-03 14:53:28','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-439.00','-440','Inclusive','branch','Inventory','','','','',''),('416910744412222032',3592,'41691074441','16','1.00','200','retail','0','2023-08-03 17:54:01','','','','0','Cash',0.00,'200','','','4','','1','2023-08-03 14:54:04','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-26.00','-27','Inclusive','branch','Inventory','','','','',''),('416910757712222032',3593,'41691075770','17','1.00','200','retail','0','2023-08-03 18:16:11','','','','0','Cash',0.00,'200','','','4','','1','2023-08-03 15:16:14','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-61.00','-62','Inclusive','branch','Inventory','','','','',''),('416910759762222032',3594,'41691075975','2','1.00','250','retail','0','2023-08-03 18:19:35','','','','0','Cash',0.00,'250','','','4','','1','2023-08-03 15:19:39','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-81.00','-82','Inclusive','branch','Inventory','','','','',''),('416910767959250932',3595,'41691076795','58','1.00','30','retail','0','2023-08-03 18:33:15','','','','15','Cash',0.00,'30','','','4','','1','2023-08-03 15:33:18','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','54.00','53','Inclusive','branch','Service','1110','4000','5500','',''),('416910834033920344',3596,'41691083402','47','1.00','200','retail','0','2023-08-03 20:23:22','','','','0','Cash',0.00,'200','','','4','','1','2023-08-03 17:23:25','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','26.00','25','Inclusive','branch','Inventory','','','','',''),('416910842954920444',3597,'41691084295','1','1.00','280','retail','0','2023-08-03 20:38:15','','','','0','Cash',0.00,'280','','','4','','1','2023-08-03 17:38:24','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-248.00','-249','Inclusive','branch','Inventory','','','','',''),('416910843013022303',3598,'41691084295','20','1.00','200','retail','0','2023-08-03 20:38:20','','','','0','Cash',0.00,'200','','','4','','1','2023-08-03 17:38:24','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-155.00','-156','Inclusive','branch','Inventory','','','','',''),('416910913141920144',3599,'41691091313','38','1.00','350','retail','0','2023-08-03 22:35:13','','','','0','Cash',0.00,'350','','','4','','1','2023-08-03 19:35:16','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-440.00','-441','Inclusive','branch','Inventory','','','','',''),('416910927163421300',3600,'41691092715','11','1.00','280','retail','0','2023-08-03 22:58:35','','','','0','Cash',0.00,'280','','','4','','1','2023-08-03 19:58:39','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-37.00','-38','Inclusive','branch','Inventory','','','','',''),('416911348560202031',3601,'41691134855','1','1.00','280','retail','0','2023-08-04 10:40:55','','','','0','Cash',0.00,'280','','','4','','1','2023-08-04 07:41:00','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-249.00','-250','Inclusive','branch','Inventory','','','','',''),('416911348713421300',3602,'41691134870','22','1.00','250','retail','0','2023-08-04 10:41:10','','','','0','Cash',0.00,'250','','','4','','1','2023-08-04 07:41:14','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-41.00','-42','Inclusive','branch','Inventory','','','','',''),('416911374103022314',3603,'41691137409','1','1.00','280','retail','0','2023-08-04 11:23:29','','','','0','Cash',0.00,'280','','','4','','1','2023-08-04 08:23:43','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-250.00','-251','Inclusive','branch','Inventory','','','','',''),('416911374137921744',3604,'41691137409','1','1.00','280','retail','0','2023-08-04 11:23:32','','','','0','Cash',0.00,'280','','','4','','1','2023-08-04 08:23:43','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-251.00','-252','Inclusive','branch','Inventory','','','','',''),('416911374200202031',3605,'41691137409','46','1.00','200','retail','0','2023-08-04 11:23:40','','','','0','Cash',0.00,'200','','','4','','1','2023-08-04 08:23:43','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','16.00','15','Inclusive','branch','Inventory','','','','',''),('416911540272462312',3606,'41691154027','38','1.00','350','retail','0','2023-08-04 16:00:27','','','','0','Cash',0.00,'350','','','4','','1','2023-08-04 13:00:31','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-441.00','-442','Inclusive','branch','Inventory','','','','',''),('416911540414921444',3607,'41691154041','38','1.00','350','retail','0','2023-08-04 16:00:41','','','','0','Cash',0.00,'350','','','4','','1','2023-08-04 13:00:48','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-442.00','-443','Inclusive','branch','Inventory','','','','',''),('416911540444921444',3608,'41691154041','38','1.00','350','retail','0','2023-08-04 16:00:44','','','','0','Cash',0.00,'350','','','4','','1','2023-08-04 13:00:48','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-443.00','-444','Inclusive','branch','Inventory','','','','',''),('416911540550202031',3609,'41691154054','20','1.00','200','retail','0','2023-08-04 16:00:54','','','','0','Cash',0.00,'200','','','4','','1','2023-08-04 13:00:59','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-156.00','-157','Inclusive','branch','Inventory','','','','',''),('416911579729220932',3610,'41691157971','21','1.00','200','retail','0','2023-08-04 17:06:11','','','','0','Cash',0.00,'200','','','4','','1','2023-08-04 14:06:16','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-417.00','-418','Inclusive','branch','Inventory','','','','',''),('416911582353022332',3611,'41691158234','16','1.00','200','retail','0','2023-08-04 17:10:34','','','','0','Cash',0.00,'200','','','4','','1','2023-08-04 14:10:41','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-27.00','-28','Inclusive','branch','Inventory','','','','',''),('416911582398921844',3612,'41691158234','62','1.00','200','retail','0','2023-08-04 17:10:38','','','','200','Cash',0.00,'200','','','4','','1','2023-08-04 14:10:41','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','24.00','23','Inclusive','branch','Inventory','1110','4000','5500','',''),('416911583032420302',3613,'41691158302','1','1.00','280','retail','0','2023-08-04 17:11:42','','','','0','Cash',0.00,'280','','','4','','1','2023-08-04 14:11:45','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-252.00','-253','Inclusive','branch','Inventory','','','','',''),('616911595572965312',3614,'61691159557','23','1.00','250','retail','0','2023-08-04 17:32:37','','','','0','Cash',0.00,'250','','','6','','1','2023-08-04 14:32:48','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-160.00','-161','Inclusive','branch','Inventory','','','','',''),('616911595663421300',3615,'61691159557','3','1.00','200','retail','0','2023-08-04 17:32:45','','','','0','Cash',0.00,'200','','','6','','1','2023-08-04 14:32:48','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-109.00','-110','Inclusive','branch','Inventory','','','','',''),('616911620820202031',3616,'61691162082','21','1.00','200','retail','0','2023-08-04 18:14:42','','','','0','Cash',0.00,'200','','','6','','1','2023-08-04 15:15:01','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-418.00','-419','Inclusive','branch','Inventory','','','','',''),('616911620853022380',3617,'61691162082','21','1.00','200','retail','0','2023-08-04 18:14:45','','','','0','Cash',0.00,'200','','','6','','1','2023-08-04 15:15:01','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-419.00','-420','Inclusive','branch','Inventory','','','','',''),('616911620883421300',3618,'61691162082','21','1.00','200','retail','0','2023-08-04 18:14:48','','','','0','Cash',0.00,'200','','','6','','1','2023-08-04 15:15:01','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-420.00','-421','Inclusive','branch','Inventory','','','','',''),('616911620912222032',3619,'61691162082','21','1.00','200','retail','0','2023-08-04 18:14:50','','','','0','Cash',0.00,'200','','','6','','1','2023-08-04 15:15:01','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-421.00','-422','Inclusive','branch','Inventory','','','','',''),('616911620974262432',3620,'61691162082','21','1.00','200','retail','0','2023-08-04 18:14:56','','','','0','Cash',0.00,'200','','','6','','1','2023-08-04 15:15:01','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-422.00','-423','Inclusive','branch','Inventory','','','','',''),('616911641442222032',3621,'61691164144','60','1.00','100','retail','0','2023-08-04 18:49:04','','','','70','Cash',0.00,'100','','','6','','1','2023-08-04 15:49:07','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','14.00','13','Inclusive','branch','Inventory','1110','4000','5500','',''),('416911646233421300',3622,'41691164623','21','1.00','200','retail','0','2023-08-04 18:57:03','','','','0','Cash',0.00,'200','','','4','','1','2023-08-04 15:57:06','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-423.00','-424','Inclusive','branch','Inventory','','','','',''),('616911650514262432',3623,'61691165050','3','1.00','200','retail','0','2023-08-04 19:04:10','','','','0','Cash',0.00,'200','','','6','','1','2023-08-04 16:04:14','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-110.00','-111','Inclusive','branch','Inventory','','','','',''),('616911679637921764',3624,'61691167962','1','1.00','280','retail','0','2023-08-04 19:52:42','','','','0','Cash',0.00,'280','','','6','','1','2023-08-04 16:52:45','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-253.00','-254','Inclusive','branch','Inventory','','','','',''),('616911710349240932',3627,'61691171034','21','1.00','200','retail','0','2023-08-04 20:43:54','','','','0','Cash',0.00,'200','','','6','','1','2023-08-04 17:43:57','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-424.00','-425','Inclusive','branch','Inventory','','','','',''),('616911710029220932',3628,'61691171001','38','1.00','350','retail','0','2023-08-04 20:43:21','','','','0','Cash',0.00,'350','','','6','','1','2023-08-04 19:07:09','','7','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-444.00','-445','Inclusive','branch','Inventory','','','','',''),('616911710041310723',3629,'61691171001','38','1.00','350','retail','0','2023-08-04 20:43:23','','','','0','Cash',0.00,'350','','','6','','1','2023-08-04 19:07:09','','7','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-445.00','-446','Inclusive','branch','Inventory','','','','',''),('616911760256921664',3630,'61691171001','38','1.00','350','retail','0','2023-08-04 22:07:04','','','','0','Cash',0.00,'350','','','6','','1','2023-08-04 19:07:09','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-446.00','-447','Inclusive','branch','Inventory','','','','',''),('416912259730202031',3631,'41691225972','7','1.00','200','retail','0','2023-08-05 11:59:32','','','','0','Cash',0.00,'200','','','4','','1','2023-08-05 08:59:37','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-170.00','-171','Inclusive','branch','Inventory','','','','',''),('416912304080346242',3632,'41691230407','8','1.00','150','retail','0','2023-08-05 13:13:27','','','','0','Cash',0.00,'150','','','4','','1','2023-08-05 10:13:38','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-73.00','-74','Inclusive','branch','Inventory','','','','',''),('416912310441922144',3633,'41691231043','63','1.00','200','retail','0','2023-08-05 13:24:03','','','','150','Cash',0.00,'200','','','4','','1','2023-08-05 10:24:14','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Service','1110','4000','5500','',''),('416912350524232432',3634,'41691235052','7','1.00','200','retail','0','2023-08-05 14:30:52','','','','0','Cash',0.00,'200','','','4','','1','2023-08-05 11:30:55','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-171.00','-172','Inclusive','branch','Inventory','','','','',''),('616912499052222032',3635,'61691249904','7','1.00','200','retail','0','2023-08-05 18:38:24','','','','0','Cash',0.00,'200','','','6','','1','2023-08-05 15:38:27','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-172.00','-173','Inclusive','branch','Inventory','','','','',''),('616912510653022360',3636,'61691251064','23','1.00','250','retail','0','2023-08-05 18:57:44','','','','0','Cash',0.00,'250','','','6','','1','2023-08-05 15:57:48','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-161.00','-162','Inclusive','branch','Inventory','','','','',''),('616912530390202031',3637,'61691253038','22','1.00','250','retail','0','2023-08-05 19:30:38','','','','0','Cash',0.00,'250','','','6','','1','2023-08-05 16:30:42','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-42.00','-43','Inclusive','branch','Inventory','','','','',''),('616912530534252432',3638,'61691253052','15','1.00','200','retail','0','2023-08-05 19:30:52','','','','0','Cash',0.00,'200','','','6','','1','2023-08-05 16:30:58','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-20.00','-21','Inclusive','branch','Inventory','','','','',''),('616912531250202031',3639,'61691253125','11','1.00','280','retail','0','2023-08-05 19:32:05','','','','0','Cash',0.00,'280','','','6','','1','2023-08-05 16:32:08','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-38.00','-39','Inclusive','branch','Inventory','','','','',''),('616912531543421300',3640,'61691253153','38','1.00','350','retail','0','2023-08-05 19:32:33','','','','0','Cash',0.00,'350','','','6','','1','2023-08-05 16:32:37','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-447.00','-448','Inclusive','branch','Inventory','','','','',''),('616912553624252432',3641,'61691255362','21','1.00','200','retail','0','2023-08-05 20:09:22','','','','0','Cash',0.00,'200','','','6','','1','2023-08-05 17:09:26','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-425.00','-426','Inclusive','branch','Inventory','','','','',''),('616912553659250932',3642,'61691255362','21','1.00','200','retail','0','2023-08-05 20:09:24','','','','0','Cash',0.00,'200','','','6','','1','2023-08-05 17:09:26','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-426.00','-427','Inclusive','branch','Inventory','','','','',''),('616912554153022314',3643,'61691255414','7','1.00','200','retail','0','2023-08-05 20:10:14','','','','0','Cash',0.00,'200','','','6','','1','2023-08-05 17:10:17','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-173.00','-174','Inclusive','branch','Inventory','','','','',''),('616912575943022395',3644,'61691257593','7','1.00','200','retail','0','2023-08-05 20:46:33','','','','0','Cash',0.00,'200','','','6','','1','2023-08-05 17:46:37','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-174.00','-175','Inclusive','branch','Inventory','','','','',''),('616913046000033033',3645,'61691304599','20','1.00','200','retail','0','2023-08-06 09:49:59','','','','0','Cash',0.00,'200','','','6','','1','2023-08-06 06:50:02','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-157.00','-158','Inclusive','branch','Inventory','','','','',''),('616913095152961312',3646,'61691309515','20','1.00','200','retail','0','2023-08-06 11:11:55','','','','0','Cash',0.00,'200','','','6','','1','2023-08-06 08:11:57','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-158.00','-159','Inclusive','branch','Inventory','','','','',''),('616913185224212432',3647,'61691318522','23','1.00','250','retail','0','2023-08-06 13:42:02','','','','0','Cash',0.00,'250','','','6','','1','2023-08-06 10:42:05','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-162.00','-163','Inclusive','branch','Inventory','','','','',''),('616913231873421300',3648,'61691323186','12','1.00','250','retail','0','2023-08-06 14:59:46','','','','0','Cash',0.00,'250','','','6','','1','2023-08-06 12:00:14','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-85.00','-86','Inclusive','branch','Inventory','','','','',''),('616913232053421300',3649,'61691323186','24','1.00','100','retail','0','2023-08-06 15:00:04','','','','0','Cash',0.00,'100','','','6','','1','2023-08-06 12:00:14','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-29.00','-30','Inclusive','branch','Inventory','','','','',''),('616913232122222032',3650,'61691323186','38','1.00','350','retail','0','2023-08-06 15:00:11','','','','0','Cash',0.00,'350','','','6','','1','2023-08-06 12:00:14','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-448.00','-449','Inclusive','branch','Inventory','','','','',''),('616913262123022312',3651,'61691326212','7','1.00','200','retail','0','2023-08-06 15:50:12','','','','0','Cash',0.00,'200','','','6','','1','2023-08-06 12:50:14','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-175.00','-176','Inclusive','branch','Inventory','','','','',''),('616913268632666312',3652,'61691326863','42','1.00','600','retail','0','2023-08-06 16:01:03','','','','0','Cash',0.00,'600','','','6','','1','2023-08-06 13:01:52','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','24.00','23','Inclusive','branch','Inventory','','','','',''),('616913269093022309',3653,'61691326863','55','1.00','200','retail','0','2023-08-06 16:01:49','','','','150','Cash',0.00,'200','','','6','','1','2023-08-06 13:01:52','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','291.00','290','Inclusive','branch','Inventory','1110','4000','5500','',''),('616913274789280932',3654,'61691327477','15','1.00','200','retail','0','2023-08-06 16:11:17','','','','0','Cash',0.00,'200','','','6','','1','2023-08-06 13:11:21','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-21.00','-22','Inclusive','branch','Inventory','','','','',''),('616913329722222032',3655,'61691332971','21','1.00','200','retail','0','2023-08-06 17:42:51','','','','0','Cash',0.00,'200','','','6','','1','2023-08-06 14:44:49','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-427.00','-428','Inclusive','branch','Inventory','','','','',''),('616913366206923664',3656,'61691336620','11','1.00','280','retail','0','2023-08-06 18:43:40','','','','0','Cash',0.00,'280','','','6','','1','2023-08-06 15:43:55','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-39.00','-40','Inclusive','branch','Inventory','','','','',''),('616913366263022326',3657,'61691336620','47','1.00','200','retail','0','2023-08-06 18:43:45','','','','0','Cash',0.00,'200','','','6','','1','2023-08-06 15:43:55','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','25.00','24','Inclusive','branch','Inventory','','','','',''),('616913439464242432',3658,'61691343946','20','1.00','200','retail','0','2023-08-06 20:45:46','','','','0','Cash',0.00,'200','','','6','','1','2023-08-06 17:45:49','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-159.00','-160','Inclusive','branch','Inventory','','','','',''),('616913439653421300',3659,'61691343964','21','1.00','200','retail','0','2023-08-06 20:46:04','','','','0','Cash',0.00,'200','','','6','','1','2023-08-06 17:46:08','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-428.00','-429','Inclusive','branch','Inventory','','','','',''),('616913444754242432',3660,'61691344474','20','1.00','200','retail','0','2023-08-06 20:54:34','','','','0','Cash',0.00,'200','','','6','','1','2023-08-06 17:54:39','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-160.00','-161','Inclusive','branch','Inventory','','','','',''),('616913466460202031',3661,'61691346646','23','1.00','250','retail','0','2023-08-06 21:30:46','','','','0','Cash',0.00,'250','','','6','','1','2023-08-06 18:30:49','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-163.00','-164','Inclusive','branch','Inventory','','','','',''),('616913466779270932',3662,'61691346676','11','1.00','280','retail','0','2023-08-06 21:31:16','','','','0','Cash',0.00,'280','','','6','','1','2023-08-06 18:31:23','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-40.00','-41','Inclusive','branch','Inventory','','','','',''),('616913466974242432',3663,'61691346696','23','1.00','250','retail','0','2023-08-06 21:31:36','','','','0','Cash',0.00,'250','','','6','','1','2023-08-06 18:31:40','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-164.00','-165','Inclusive','branch','Inventory','','','','',''),('616913514772222032',3664,'61691351476','47','1.00','200','retail','0','2023-08-06 22:51:16','','','','0','Cash',0.00,'200','','','6','','1','2023-08-06 19:51:19','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','24.00','23','Inclusive','branch','Inventory','','','','',''),('616913519512222032',3665,'61691351950','3','1.00','200','retail','0','2023-08-06 22:59:10','','','','0','Cash',0.00,'200','','','6','','1','2023-08-06 19:59:13','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-111.00','-112','Inclusive','branch','Inventory','','','','',''),('616913904853022384',3666,'61691390484','1','1.00','280','retail','0','2023-08-07 09:41:24','','','','0','Cash',0.00,'280','','','6','','1','2023-08-07 06:41:28','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-254.00','-255','Inclusive','branch','Inventory','','','','',''),('616913914929220932',3667,'61691391491','1','1.00','280','retail','0','2023-08-07 09:58:11','','','','0','Cash',0.00,'280','','','6','','1','2023-08-07 06:58:14','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-255.00','-256','Inclusive','branch','Inventory','','','','',''),('616913966383022336',3668,'61691396637','12','1.00','250','retail','0','2023-08-07 11:23:57','','','','0','Cash',0.00,'250','','','6','','1','2023-08-07 08:24:00','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-86.00','-87','Inclusive','branch','Inventory','','','','',''),('616913966579270932',3669,'61691396656','7','1.00','200','retail','0','2023-08-07 11:24:16','','','','0','Cash',0.00,'200','','','6','','1','2023-08-07 08:24:19','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-176.00','-177','Inclusive','branch','Inventory','','','','',''),('616914011384202432',3670,'61691401137','7','1.00','200','retail','0','2023-08-07 12:38:57','','','','0','Cash',0.00,'200','','','6','','1','2023-08-07 09:39:00','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-177.00','-178','Inclusive','branch','Inventory','','','','',''),('616914012064202432',3671,'61691401206','11','1.00','280','retail','0','2023-08-07 12:40:06','','','','0','Cash',0.00,'280','','','6','','1','2023-08-07 09:40:47','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-41.00','-42','Inclusive','branch','Inventory','','','','',''),('616914012164202432',3672,'61691401206','21','1.00','200','retail','0','2023-08-07 12:40:15','','','','0','Cash',0.00,'200','','','6','','1','2023-08-07 09:40:47','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-429.00','-430','Inclusive','branch','Inventory','','','','',''),('616914012303421300',3673,'61691401206','46','1.00','200','retail','0','2023-08-07 12:40:29','','','','0','Cash',0.00,'200','','','6','','1','2023-08-07 09:40:47','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','15.00','14','Inclusive','branch','Inventory','','','','',''),('616914012330202031',3674,'61691401206','46','1.00','200','retail','0','2023-08-07 12:40:32','','','','0','Cash',0.00,'200','','','6','','1','2023-08-07 09:40:47','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','14.00','13','Inclusive','branch','Inventory','','','','',''),('616914012379270932',3675,'61691401206','46','1.00','200','retail','0','2023-08-07 12:40:36','','','','0','Cash',0.00,'200','','','6','','1','2023-08-07 09:40:47','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','13.00','12','Inclusive','branch','Inventory','','','','',''),('616914012391924164',3676,'61691401206','46','1.00','200','retail','0','2023-08-07 12:40:39','','','','0','Cash',0.00,'200','','','6','','1','2023-08-07 09:40:47','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','','','','',''),('416914204540202031',3677,'41691420453','3','1.00','200','retail','0','2023-08-07 18:00:53','','','','0','Cash',0.00,'200','','','4','','1','2023-08-07 15:00:59','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-112.00','-113','Inclusive','branch','Inventory','','','','',''),('416914204579270932',3678,'41691420453','3','1.00','200','retail','0','2023-08-07 18:00:56','','','','0','Cash',0.00,'200','','','4','','1','2023-08-07 15:00:59','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-113.00','-114','Inclusive','branch','Inventory','','','','',''),('616914206262222032',3679,'61691420626','38','1.00','350','retail','0','2023-08-07 18:03:46','','','','0','Cash',0.00,'350','','','6','','1','2023-08-07 15:03:50','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-449.00','-450','Inclusive','branch','Inventory','','','','',''),('416914228270202031',3680,'41691422826','1','1.00','280','retail','0','2023-08-07 18:40:26','','','','0','Cash',0.00,'280','','','4','','1','2023-08-07 15:40:30','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-256.00','-257','Inclusive','branch','Inventory','','','','',''),('416914245392222032',3681,'41691424538','7','1.00','200','retail','0','2023-08-07 19:08:58','','','','0','Cash',0.00,'200','','','4','','1','2023-08-07 16:09:03','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-178.00','-179','Inclusive','branch','Inventory','','','','',''),('416914245659250932',3682,'41691424565','21','1.00','200','retail','0','2023-08-07 19:09:25','','','','0','Cash',0.00,'200','','','4','','1','2023-08-07 16:09:30','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-430.00','-431','Inclusive','branch','Inventory','','','','',''),('416914277049240932',3683,'41691427703','38','1.00','350','retail','0','2023-08-07 20:01:43','','','','0','Cash',0.00,'350','','','4','','1','2023-08-07 17:01:48','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-450.00','-451','Inclusive','branch','Inventory','','','','',''),('416914287013022307',3684,'41691428700','38','1.00','350','retail','0','2023-08-07 20:18:20','','','','0','Cash',0.00,'350','','','4','','1','2023-08-07 17:18:23','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-451.00','-452','Inclusive','branch','Inventory','','','','',''),('416914324712924244',3685,'41691432470','38','1.00','350','retail','0','2023-08-07 21:21:10','','','','0','Cash',0.00,'350','','','4','','1','2023-08-07 18:21:14','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-452.00','-453','Inclusive','branch','Inventory','','','','',''),('416914332603022362',3686,'41691433259','38','1.00','350','retail','0','2023-08-07 21:34:19','','','','0','Cash',0.00,'350','','','4','','1','2023-08-07 18:34:23','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-453.00','-454','Inclusive','branch','Inventory','','','','',''),('416914332752222032',3687,'41691433274','1','1.00','280','retail','0','2023-08-07 21:34:34','','','','0','Cash',0.00,'280','','','4','','1','2023-08-07 18:34:38','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-257.00','-258','Inclusive','branch','Inventory','','','','',''),('416914344014232432',3688,'41691434400','38','1.00','350','retail','0','2023-08-07 21:53:20','','','','0','Cash',0.00,'350','','','4','','1','2023-08-07 18:53:25','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-454.00','-455','Inclusive','branch','Inventory','','','','',''),('616914760606924664',3695,'61691476059','11','1.00','280','retail','0','2023-08-08 09:27:39','','','','0','Cash',0.00,'280','','','6','','1','2023-08-08 07:32:04','','1','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-42.00','-43','Inclusive','branch','Inventory','','','','',''),('616914760702667312',3696,'61691476059','7','1.00','200','retail','0','2023-08-08 09:27:49','','','','0','Cash',0.00,'200','','','6','','1','2023-08-08 07:32:04','','1','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-179.00','-180','Inclusive','branch','Inventory','','','','',''),('616914760734272432',3697,'61691476059','7','1.00','200','retail','0','2023-08-08 09:27:52','','','','0','Cash',0.00,'200','','','6','','1','2023-08-08 07:32:04','','1','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-180.00','-181','Inclusive','branch','Inventory','','','','',''),('616914760810202031',3698,'61691476059','21','1.00','200','retail','0','2023-08-08 09:28:01','','','','0','Cash',0.00,'200','','','6','','1','2023-08-08 07:32:04','','2','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-431.00','-432','Inclusive','branch','Inventory','','','','',''),('616914760843022380',3699,'61691476059','20','1.00','200','retail','0','2023-08-08 09:28:03','','','','0','Cash',0.00,'200','','','6','','1','2023-08-08 07:32:04','','2','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-161.00','-162','Inclusive','branch','Inventory','','','','',''),('616914760900202031',3700,'61691476059','20','1.00','200','retail','0','2023-08-08 09:28:09','','','','0','Cash',0.00,'200','','','6','','1','2023-08-08 07:32:04','','2','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-162.00','-163','Inclusive','branch','Inventory','','','','',''),('616914799214272432',3701,'61691476059','20','1.00','200','retail','0','2023-08-08 10:32:00','','','','0','Cash',0.00,'200','','','6','','1','2023-08-08 07:32:04','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-163.00','-164','Inclusive','branch','Inventory','','','','',''),('616914905253421300',3702,'61691490524','7','1.00','200','retail','0','2023-08-08 13:28:44','','','','0','Cash',0.00,'200','','','6','','1','2023-08-08 10:28:47','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-181.00','-182','Inclusive','branch','Inventory','','','','',''),('616914912314292432',3703,'61691491230','21','1.00','200','retail','0','2023-08-08 13:40:30','','','','0','Cash',0.00,'200','','','6','','1','2023-08-08 10:40:34','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-432.00','-433','Inclusive','branch','Inventory','','','','',''),('416914953242222032',3704,'41691495324','21','1.00','200','retail','0','2023-08-08 14:48:44','','','','0','Cash',0.00,'200','','','4','','1','2023-08-08 11:48:47','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-433.00','-434','Inclusive','branch','Inventory','','','','',''),('416915014509200932',3705,'41691501449','3','1.00','200','retail','0','2023-08-08 16:30:49','','','','0','Cash',0.00,'200','','','4','','1','2023-08-08 13:30:52','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-114.00','-115','Inclusive','branch','Inventory','','','','',''),('416915034784202432',3706,'41691503477','1','1.00','280','retail','0','2023-08-08 17:04:37','','','','0','Cash',0.00,'280','','','4','','1','2023-08-08 14:04:41','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-258.00','-259','Inclusive','branch','Inventory','','','','',''),('416915034893022384',3707,'41691503489','2','1.00','250','retail','0','2023-08-08 17:04:49','','','','0','Cash',0.00,'250','','','4','','1','2023-08-08 14:04:55','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-82.00','-83','Inclusive','branch','Inventory','','','','',''),('416915095810202031',3708,'41691509580','20','1.00','200','retail','0','2023-08-08 18:46:20','','','','0','Cash',0.00,'200','','','4','','1','2023-08-08 15:46:24','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-164.00','-165','Inclusive','branch','Inventory','','','','',''),('416915130122361312',3709,'41691513012','11','1.00','280','retail','0','2023-08-08 19:43:32','','','','0','Cash',0.00,'280','','','4','','1','2023-08-08 16:43:35','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-43.00','-44','Inclusive','branch','Inventory','','','','',''),('416915138069260932',3710,'41691513804','1','1.00','280','retail','0','2023-08-08 19:56:46','','','','0','Cash',0.00,'280','','','4','','1','2023-08-08 16:56:54','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-260.00','-261','Inclusive','branch','Inventory','','','','',''),('416915138084212432',3711,'41691513804','1','1.00','280','retail','0','2023-08-08 19:56:47','','','','0','Cash',0.00,'280','','','4','','1','2023-08-08 16:56:54','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-261.00','-262','Inclusive','branch','Inventory','','','','',''),('416915156503022356',3712,'41691515649','7','1.00','200','retail','0','2023-08-08 20:27:29','','','','0','Cash',0.00,'200','','','4','','1','2023-08-08 17:27:32','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-182.00','-183','Inclusive','branch','Inventory','','','','',''),('416915169206925644',3713,'41691516919','42','1.00','600','retail','0','2023-08-08 20:48:39','','','','0','Cash',0.00,'600','','','4','','1','2023-08-08 17:48:43','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','23.00','22','Inclusive','branch','Inventory','','','','',''),('416915188234212432',3714,'41691518822','21','1.00','200','retail','0','2023-08-08 21:20:22','','','','0','Cash',0.00,'200','','','4','','1','2023-08-08 18:20:25','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-434.00','-435','Inclusive','branch','Inventory','','','','',''),('416915188338925844',3715,'41691518832','19','1.00','200','retail','0','2023-08-08 21:20:32','','','','0','Cash',0.00,'200','','','4','','1','2023-08-08 18:20:38','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-12.00','-13','Inclusive','branch','Inventory','','','','',''),('416915217140202031',3716,'41691521713','16','1.00','200','retail','0','2023-08-08 22:08:33','','','','0','Cash',0.00,'200','','','4','','1','2023-08-08 19:08:43','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-28.00','-29','Inclusive','branch','Inventory','','','','',''),('416915217201925144',3717,'41691521713','63','1.00','200','retail','0','2023-08-08 22:08:39','','','','150','Cash',0.00,'200','','','4','','1','2023-08-08 19:08:43','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Service','1110','4000','5500','',''),('416915630722367312',3718,'41691563071','1','1.00','280','retail','0','2023-08-09 09:37:51','','','','0','Cash',0.00,'280','','','4','','1','2023-08-09 06:37:55','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-261.00','-262','Inclusive','branch','Inventory','','','','',''),('416915643082222032',3719,'41691564307','21','1.00','200','retail','0','2023-08-09 09:58:27','','','','0','Cash',0.00,'200','','','4','','1','2023-08-09 06:58:34','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-435.00','-436','Inclusive','branch','Inventory','','','','',''),('416915676773022376',3720,'41691567676','11','1.00','280','retail','0','2023-08-09 10:54:36','','','','0','Cash',0.00,'280','','','4','','1','2023-08-09 07:54:51','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-44.00','-45','Inclusive','branch','Inventory','','','','',''),('416915676872222032',3721,'41691567676','24','1.00','100','retail','0','2023-08-09 10:54:46','','','','0','Cash',0.00,'100','','','4','','1','2023-08-09 07:54:51','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-30.00','-31','Inclusive','branch','Inventory','','','','',''),('416915684800202031',3722,'41691568480','8','1.00','150','retail','0','2023-08-09 11:08:00','','','','0','Cash',0.00,'150','','','4','','1','2023-08-09 08:08:06','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-74.00','-75','Inclusive','branch','Inventory','','','','',''),('416915709450925044',3723,'41691570944','54','1.00','350','retail','0','2023-08-09 11:49:04','','','','200','Cash',0.00,'350','','','4','','1','2023-08-09 08:49:07','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Service','1110','4000','5500','',''),('416915872182761312',3724,'41691587217','3','1.00','200','retail','0','2023-08-09 16:20:17','','','','0','Cash',0.00,'200','','','4','','1','2023-08-09 13:20:23','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-115.00','-116','Inclusive','branch','Inventory','','','','',''),('416915879892283223',3725,'41691587988','20','1.00','200','retail','0','2023-08-09 16:33:08','','','','0','Cash',0.00,'200','','','4','','1','2023-08-09 13:33:13','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-165.00','-166','Inclusive','branch','Inventory','','','','',''),('416916013273421300',3726,'41691601327','11','1.00','280','retail','0','2023-08-09 20:15:27','','','','0','Cash',0.00,'280','','','4','','1','2023-08-09 17:15:31','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-45.00','-46','Inclusive','branch','Inventory','','','','',''),('416916493442222032',3727,'41691649343','1','1.00','280','retail','0','2023-08-10 09:35:43','','','','0','Cash',0.00,'280','','','4','','1','2023-08-10 06:50:48','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-262.00','-263','Inclusive','branch','Inventory','','','','',''),('416916515560202031',3728,'41691651555','21','1.00','200','retail','0','2023-08-10 10:12:36','','','','0','Cash',0.00,'200','','','4','','1','2023-08-10 07:12:47','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-436.00','-437','Inclusive','branch','Inventory','','','','',''),('416916515632166312',3729,'41691651555','52','1.00','150','retail','0','2023-08-10 10:12:42','','','','200','Cash',0.00,'150','','','4','','1','2023-08-10 07:12:47','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416916534689280932',3730,'41691653467','20','1.00','200','retail','0','2023-08-10 10:44:27','','','','0','Cash',0.00,'200','','','4','','1','2023-08-10 07:44:31','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-166.00','-167','Inclusive','branch','Inventory','','','','',''),('416916642932469312',3731,'41691664289','11','1.00','280','retail','0','2023-08-10 13:44:53','','','','0','Cash',0.00,'280','','','4','','1','2023-08-10 10:45:31','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-47.00','-48','Inclusive','branch','Inventory','','','','',''),('416916643049240932',3732,'41691664289','24','1.00','100','retail','0','2023-08-10 13:45:03','','','','0','Cash',0.00,'100','','','4','','1','2023-08-10 10:45:31','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-31.00','-32','Inclusive','branch','Inventory','','','','',''),('416916643104262432',3733,'41691664289','11','1.00','280','retail','0','2023-08-10 13:45:09','','','','0','Cash',0.00,'280','','','4','','1','2023-08-10 10:45:31','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-47.00','-48','Inclusive','branch','Inventory','','','','',''),('416916643232222032',3734,'41691664289','26','1.00','100','retail','0','2023-08-10 13:45:22','','','','0','Cash',0.00,'100','','','4','','1','2023-08-10 10:45:31','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-29.00','-30','Inclusive','branch','Inventory','','','','',''),('416916706720202031',3735,'41691670672','21','1.00','200','retail','0','2023-08-10 15:31:12','','','','0','Cash',0.00,'200','','','4','','1','2023-08-10 12:31:23','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-437.00','-438','Inclusive','branch','Inventory','','','','',''),('616916738262362312',3736,'61691673825','7','1.00','200','retail','0','2023-08-10 16:23:45','','','','0','Cash',0.00,'200','','','6','','1','2023-08-10 13:23:47','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-183.00','-184','Inclusive','branch','Inventory','','','','',''),('416916747454926444',3737,'41691674744','3','1.00','200','retail','0','2023-08-10 16:39:04','','','','0','Cash',0.00,'200','','','4','','1','2023-08-10 13:39:08','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-116.00','-117','Inclusive','branch','Inventory','','','','',''),('416916792904272432',3738,'41691679289','1','1.00','280','retail','0','2023-08-10 17:54:49','','','','0','Cash',0.00,'280','','','4','','1','2023-08-10 14:54:55','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-263.00','-264','Inclusive','branch','Inventory','','','','',''),('416916801150926044',3739,'41691680114','7','1.00','200','retail','0','2023-08-10 18:08:35','','','','0','Cash',0.00,'200','','','4','','1','2023-08-10 15:08:46','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-184.00','-185','Inclusive','branch','Inventory','','','','',''),('416916801243421300',3740,'41691680114','26','1.00','100','retail','0','2023-08-10 18:08:43','','','','0','Cash',0.00,'100','','','4','','1','2023-08-10 15:08:46','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-30.00','-31','Inclusive','branch','Inventory','','','','',''),('616916833402364312',3741,'61691683340','23','1.00','250','retail','0','2023-08-10 19:02:20','','','','0','Cash',0.00,'250','','','6','','1','2023-08-10 16:02:26','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-165.00','-166','Inclusive','branch','Inventory','','','','',''),('616916833434282432',3742,'61691683340','23','1.00','250','retail','0','2023-08-10 19:02:23','','','','0','Cash',0.00,'250','','','6','','1','2023-08-10 16:02:26','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-166.00','-167','Inclusive','branch','Inventory','','','','',''),('616916842332463312',3743,'61691684232','52','1.00','150','retail','0','2023-08-10 19:17:12','','','','200','Cash',0.00,'150','','','6','','1','2023-08-10 16:17:15','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('616916861183421300',3744,'61691686117','38','1.00','350','retail','0','2023-08-10 19:48:37','','','','0','Cash',0.00,'350','','','6','','1','2023-08-10 16:48:40','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-455.00','-456','Inclusive','branch','Inventory','','','','',''),('616916924660202031',3745,'61691692465','20','1.00','200','retail','0','2023-08-10 21:34:25','','','','0','Cash',0.00,'200','','','6','','1','2023-08-10 18:34:29','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-167.00','-168','Inclusive','branch','Inventory','','','','',''),('616917398292329022',3746,'61691739828','11','1.00','280','retail','0','2023-08-11 10:43:48','','','','0','Cash',0.00,'280','','','6','','1','2023-08-11 07:43:52','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-48.00','-49','Inclusive','branch','Inventory','','','','',''),('616917398403421300',3747,'61691739840','7','1.00','200','retail','0','2023-08-11 10:44:00','','','','0','Cash',0.00,'200','','','6','','1','2023-08-11 07:44:03','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-185.00','-186','Inclusive','branch','Inventory','','','','',''),('616917498564242432',3748,'61691749855','11','1.00','280','retail','0','2023-08-11 13:30:55','','','','0','Cash',0.00,'280','','','6','','1','2023-08-11 10:31:01','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-49.00','-50','Inclusive','branch','Inventory','','','','',''),('616917530583421300',3749,'61691753057','8','1.00','150','retail','0','2023-08-11 14:24:17','','','','0','Cash',0.00,'150','','','6','','1','2023-08-11 11:24:21','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-75.00','-76','Inclusive','branch','Inventory','','','','',''),('616917569460202031',3750,'61691756946','7','1.00','200','retail','0','2023-08-11 15:29:06','','','','0','Cash',0.00,'200','','','6','','1','2023-08-11 12:29:11','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-186.00','-187','Inclusive','branch','Inventory','','','','',''),('416917670352222032',3751,'41691767034','38','1.00','350','retail','0','2023-08-11 18:17:14','','','','0','Cash',0.00,'350','','','4','','1','2023-08-11 15:17:20','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-456.00','-457','Inclusive','branch','Inventory','','','','',''),('416917686390202031',3752,'41691768638','20','1.00','200','retail','0','2023-08-11 18:43:58','','','','0','Cash',0.00,'200','','','4','','1','2023-08-11 15:44:09','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-168.00','-169','Inclusive','branch','Inventory','','','','',''),('416917744762467312',3753,'41691774475','8','1.00','150','retail','0','2023-08-11 20:21:15','','','','0','Cash',0.00,'150','','','4','','1','2023-08-11 17:21:31','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-76.00','-77','Inclusive','branch','Inventory','','','','',''),('416917744802468312',3754,'41691774475','8','1.00','150','retail','0','2023-08-11 20:21:20','','','','0','Cash',0.00,'150','','','4','','1','2023-08-11 17:21:31','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-77.00','-78','Inclusive','branch','Inventory','','','','',''),('416917744820202031',3755,'41691774475','8','1.00','150','retail','0','2023-08-11 20:21:22','','','','0','Cash',0.00,'150','','','4','','1','2023-08-11 17:21:31','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-78.00','-79','Inclusive','branch','Inventory','','','','',''),('416917763252662312',3756,'41691776324','11','1.00','280','retail','0','2023-08-11 20:52:04','','','','0','Cash',0.00,'280','','','4','','1','2023-08-11 17:52:15','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-50.00','-51','Inclusive','branch','Inventory','','','','',''),('416917763320202031',3757,'41691776324','26','1.00','100','retail','0','2023-08-11 20:52:11','','','','0','Cash',0.00,'100','','','4','','1','2023-08-11 17:52:15','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-31.00','-32','Inclusive','branch','Inventory','','','','',''),('416917779737927744',3758,'41691777973','60','1.00','100','retail','0','2023-08-11 21:19:33','','','','70','Cash',0.00,'100','','','4','','1','2023-08-11 18:19:38','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','13.00','12','Inclusive','branch','Inventory','1110','4000','5500','',''),('416917789694272432',3759,'41691778969','1','1.00','280','retail','0','2023-08-11 21:36:09','','','','0','Cash',0.00,'280','','','4','','1','2023-08-11 18:36:14','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-264.00','-265','Inclusive','branch','Inventory','','','','',''),('416917789723022379',3760,'41691778969','1','1.00','280','retail','0','2023-08-11 21:36:11','','','','0','Cash',0.00,'280','','','4','','1','2023-08-11 18:36:14','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-265.00','-266','Inclusive','branch','Inventory','','','','',''),('616918245453421300',3761,'61691824544','21','1.00','200','retail','0','2023-08-12 10:15:44','','','','0','Cash',0.00,'200','','','6','','1','2023-08-12 07:15:47','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-438.00','-439','Inclusive','branch','Inventory','','','','',''),('616918245569260932',3762,'61691824555','20','1.00','200','retail','0','2023-08-12 10:15:55','','','','0','Cash',0.00,'200','','','6','','1','2023-08-12 07:15:58','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-169.00','-170','Inclusive','branch','Inventory','','','','',''),('616918288252222032',3763,'61691828824','20','1.00','200','retail','0','2023-08-12 11:27:04','','','','0','Cash',0.00,'200','','','6','','1','2023-08-12 08:27:07','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-170.00','-171','Inclusive','branch','Inventory','','','','',''),('616918337823022387',3764,'61691833781','54','1.00','350','retail','0','2023-08-12 12:49:41','','','','200','Cash',0.00,'350','','','6','','1','2023-08-12 09:49:47','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Service','1110','4000','5500','',''),('616918337859250932',3765,'61691833781','54','1.00','350','retail','0','2023-08-12 12:49:44','','','','200','Cash',0.00,'350','','','6','','1','2023-08-12 09:49:47','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Service','1110','4000','5500','',''),('616918398162222032',3766,'61691839815','55','1.00','200','retail','0','2023-08-12 14:30:15','','','','150','Cash',0.00,'200','','','6','','1','2023-08-12 11:30:18','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','290.00','289','Inclusive','branch','Inventory','1110','4000','5500','',''),('616918458192222032',3767,'61691845818','20','1.00','200','retail','0','2023-08-12 16:10:18','','','','0','Cash',0.00,'200','','','6','','1','2023-08-12 13:10:21','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-171.00','-172','Inclusive','branch','Inventory','','','','',''),('616918465452664312',3768,'61691846544','29','1.00','300','retail','0','2023-08-12 16:22:24','','','','0','Cash',0.00,'300','','','6','','1','2023-08-12 13:22:32','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-27.00','-28','Inclusive','branch','Inventory','','','','',''),('616918465484242432',3769,'61691846544','29','1.00','300','retail','0','2023-08-12 16:22:27','','','','0','Cash',0.00,'300','','','6','','1','2023-08-12 13:22:32','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-28.00','-29','Inclusive','branch','Inventory','','','','',''),('416918535503022355',3770,'41691853549','38','1.00','350','retail','0','2023-08-12 18:19:09','','','','0','Cash',0.00,'350','','','4','','1','2023-08-12 15:19:12','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-457.00','-458','Inclusive','branch','Inventory','','','','',''),('416918574283421300',3771,'41691857428','38','1.00','350','retail','0','2023-08-12 19:23:48','','','','0','Cash',0.00,'350','','','4','','1','2023-08-12 16:23:54','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-458.00','-459','Inclusive','branch','Inventory','','','','',''),('416918574432764312',3772,'41691857442','11','1.00','280','retail','0','2023-08-12 19:24:02','','','','0','Cash',0.00,'280','','','4','','1','2023-08-12 16:24:47','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-51.00','-52','Inclusive','branch','Inventory','','','','',''),('416918574680202031',3773,'41691857442','5','1.00','300','retail','0','2023-08-12 19:24:28','','','','0','Cash',0.00,'300','','','4','','1','2023-08-12 16:24:47','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-109.00','-110','Inclusive','branch','Inventory','','','','',''),('416918574832338294',3774,'41691857442','26','1.00','100','retail','0','2023-08-12 19:24:42','','','','0','Cash',0.00,'100','','','4','','1','2023-08-12 16:24:47','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-32.00','-33','Inclusive','branch','Inventory','','','','',''),('416918576589280932',3775,'41691857658','29','1.00','300','retail','0','2023-08-12 19:27:38','','','','0','Cash',0.00,'300','','','4','','1','2023-08-12 16:27:44','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-29.00','-30','Inclusive','branch','Inventory','','','','',''),('416918576912222032',3776,'41691857690','8','1.00','150','retail','0','2023-08-12 19:28:10','','','','0','Cash',0.00,'150','','','4','','1','2023-08-12 16:28:17','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-79.00','-80','Inclusive','branch','Inventory','','','','',''),('416918597799928944',3777,'41691859778','20','1.00','200','retail','0','2023-08-12 20:02:58','','','','0','Cash',0.00,'200','','','4','','1','2023-08-12 17:03:03','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-172.00','-173','Inclusive','branch','Inventory','','','','',''),('416918636922369312',3778,'41691863692','7','1.00','200','retail','0','2023-08-12 21:08:12','','','','0','Cash',0.00,'200','','','4','','1','2023-08-12 18:08:15','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-187.00','-188','Inclusive','branch','Inventory','','','','',''),('416918673803421300',3779,'41691867379','40','1.00','600','retail','0','2023-08-12 22:09:40','','','','0','Cash',0.00,'600','','','4','','1','2023-08-12 19:09:59','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-34.00','-35','Inclusive','branch','Inventory','','','','',''),('416918688283421300',3780,'41691868828','1','1.00','280','retail','0','2023-08-12 22:33:48','','','','0','Cash',0.00,'280','','','4','','1','2023-08-12 19:33:58','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-266.00','-267','Inclusive','branch','Inventory','','','','',''),('416918688362222032',3781,'41691868828','20','1.00','200','retail','0','2023-08-12 22:33:55','','','','0','Cash',0.00,'200','','','4','','1','2023-08-12 19:33:58','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-173.00','-174','Inclusive','branch','Inventory','','','','',''),('416919152914212432',3782,'41691915290','11','1.00','280','retail','0','2023-08-13 11:28:10','','','','0','Cash',0.00,'280','','','4','','1','2023-08-13 08:28:24','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-52.00','-53','Inclusive','branch','Inventory','','','','',''),('416919193552965312',3783,'41691919355','23','1.00','250','retail','0','2023-08-13 12:35:55','','','','0','Cash',0.00,'250','','','4','','1','2023-08-13 09:36:01','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-167.00','-168','Inclusive','branch','Inventory','','','','',''),('416919256783022376',3784,'41691925677','1','1.00','280','retail','0','2023-08-13 14:21:18','','','','0','Cash',0.00,'280','','','4','','1','2023-08-13 11:21:34','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-267.00','-268','Inclusive','branch','Inventory','','','','',''),('416919256865929544',3785,'41691925677','30','1.00','330','retail','0','2023-08-13 14:21:25','','','','0','Cash',0.00,'330','','','4','','1','2023-08-13 11:21:34','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-13.00','-14','Inclusive','branch','Inventory','','','','',''),('416919330053421300',3786,'41691933005','38','1.00','350','retail','0','2023-08-13 16:23:25','','','','0','Cash',0.00,'350','','','4','','1','2023-08-13 13:23:31','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-459.00','-460','Inclusive','branch','Inventory','','','','',''),('416919369953022399',3787,'41691936994','20','1.00','200','retail','0','2023-08-13 17:29:54','','','','0','Cash',0.00,'200','','','4','','1','2023-08-13 14:29:58','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-174.00','-175','Inclusive','branch','Inventory','','','','',''),('616919394303421300',3788,'61691939429','3','1.00','200','retail','0','2023-08-13 18:10:29','','','','0','Cash',0.00,'200','','','6','','1','2023-08-13 15:10:33','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-117.00','-118','Inclusive','branch','Inventory','','','','',''),('616919480782222032',3789,'61691948077','38','1.00','350','retail','0','2023-08-13 20:34:37','','','','0','Cash',0.00,'350','','','6','','1','2023-08-13 17:34:41','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-460.00','-461','Inclusive','branch','Inventory','','','','',''),('616919480948929864',3790,'61691948093','1','1.00','280','retail','0','2023-08-13 20:34:53','','','','0','Cash',0.00,'280','','','6','','1','2023-08-13 17:34:59','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-268.00','-269','Inclusive','branch','Inventory','','','','',''),('616919480962222032',3791,'61691948093','1','1.00','280','retail','0','2023-08-13 20:34:56','','','','0','Cash',0.00,'280','','','6','','1','2023-08-13 17:34:59','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-269.00','-270','Inclusive','branch','Inventory','','','','',''),('616919519910202031',3794,'61691951990','21','1.00','200','retail','0','2023-08-13 21:39:50','','','','0','Cash',0.00,'200','','','6','','1','2023-08-13 18:40:12','','2','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-439.00','-440','Inclusive','branch','Inventory','','','','',''),('616919520104252432',3795,'61691951990','22','1.00','250','retail','0','2023-08-13 21:40:09','','','','0','Cash',0.00,'250','','','6','','1','2023-08-13 18:40:12','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-43.00','-44','Inclusive','branch','Inventory','','','','',''),('616919529304252432',3796,'61691952929','22','1.00','250','retail','0','2023-08-13 21:55:29','','','','0','Cash',0.00,'250','','','6','','1','2023-08-13 18:55:32','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-44.00','-45','Inclusive','branch','Inventory','','','','',''),('616919537634252432',3797,'61691953763','20','1.00','200','retail','0','2023-08-13 22:09:23','','','','0','Cash',0.00,'200','','','6','','1','2023-08-13 19:09:26','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-175.00','-176','Inclusive','branch','Inventory','','','','',''),('616919505592065312',3798,'61691950558','38','1.00','350','retail','0','2023-08-13 21:15:58','','','','0','Cash',0.00,'350','','','6','','1','2023-08-13 19:19:07','','7','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-461.00','-462','Inclusive','branch','Inventory','','','','',''),('616919543459250932',3799,'61691950558','38','1.00','350','retail','0','2023-08-13 22:19:04','','','','0','Cash',0.00,'350','','','6','','1','2023-08-13 19:19:07','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-462.00','-463','Inclusive','branch','Inventory','','','','',''),('616919547262462312',3800,'61691954726','21','1.00','200','retail','0','2023-08-13 22:25:26','','','','0','Cash',0.00,'200','','','6','','1','2023-08-13 19:25:37','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-440.00','-441','Inclusive','branch','Inventory','','','','',''),('616919576593421300',3801,'61691957658','20','1.00','200','retail','0','2023-08-13 23:14:18','','','','0','Cash',0.00,'200','','','6','','1','2023-08-13 20:14:21','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-176.00','-177','Inclusive','branch','Inventory','','','','',''),('416920198143022318',3802,'41692019813','52','1.00','150','retail','0','2023-08-14 16:30:13','','','','200','Cash',0.00,'150','','','4','','1','2023-08-14 13:30:16','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('616920237049240932',3803,'61692023703','11','1.00','280','retail','0','2023-08-14 17:35:03','','','','0','Cash',0.00,'280','','','6','','1','2023-08-14 14:35:07','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-53.00','-54','Inclusive','branch','Inventory','','','','',''),('616920318313421300',3804,'61692031831','38','1.00','350','retail','0','2023-08-14 19:50:31','','','','0','Cash',0.00,'350','','','6','','1','2023-08-14 16:50:37','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-463.00','-464','Inclusive','branch','Inventory','','','','',''),('616920318342222032',3805,'61692031831','38','1.00','350','retail','0','2023-08-14 19:50:34','','','','0','Cash',0.00,'350','','','6','','1','2023-08-14 16:50:37','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-464.00','-465','Inclusive','branch','Inventory','','','','',''),('616920318551920164',3806,'61692031854','20','1.00','200','retail','0','2023-08-14 19:50:54','','','','0','Cash',0.00,'200','','','6','','1','2023-08-14 16:50:57','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-177.00','-178','Inclusive','branch','Inventory','','','','',''),('616920372564232432',3807,'61692037255','23','1.00','250','retail','0','2023-08-14 21:20:55','','','','0','Cash',0.00,'250','','','6','','1','2023-08-14 18:20:58','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-168.00','-169','Inclusive','branch','Inventory','','','','',''),('416920973284292432',3808,'41692097327','1','1.00','280','retail','0','2023-08-15 14:02:07','','','','0','Cash',0.00,'280','','','4','','1','2023-08-15 11:02:10','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-270.00','-271','Inclusive','branch','Inventory','','','','',''),('416921008572222032',3809,'41692100856','7','1.00','200','retail','0','2023-08-15 15:00:56','','','','0','Cash',0.00,'200','','','4','','1','2023-08-15 12:00:59','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-188.00','-189','Inclusive','branch','Inventory','','','','',''),('416921009090921044',3810,'41692100908','8','1.00','150','retail','0','2023-08-15 15:01:48','','','','0','Cash',0.00,'150','','','4','','1','2023-08-15 12:01:51','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-80.00','-81','Inclusive','branch','Inventory','','','','',''),('416921072894202432',3811,'41692107288','3','1.00','200','retail','0','2023-08-15 16:48:08','','','','0','Cash',0.00,'200','','','4','','1','2023-08-15 13:48:14','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-118.00','-119','Inclusive','branch','Inventory','','','','',''),('616921101422064322',3812,'61692110141','20','1.00','200','retail','0','2023-08-15 17:35:41','','','','0','Cash',0.00,'200','','','6','','1','2023-08-15 14:35:44','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-178.00','-179','Inclusive','branch','Inventory','','','','',''),('616921141632466322',3813,'61692114163','58','1.00','30','retail','0','2023-08-15 18:42:43','','','','15','Cash',0.00,'30','','','6','','1','2023-08-15 15:42:46','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','54.00','53','Inclusive','branch','Service','1110','4000','5500','',''),('616921156072560322',3814,'61692115607','21','1.00','200','retail','0','2023-08-15 19:06:47','','','','0','Cash',0.00,'200','','','6','','1','2023-08-15 16:06:50','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-441.00','-442','Inclusive','branch','Inventory','','','','',''),('616921156182222032',3815,'61692115617','20','1.00','200','retail','0','2023-08-15 19:06:57','','','','0','Cash',0.00,'200','','','6','','1','2023-08-15 16:07:01','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-179.00','-180','Inclusive','branch','Inventory','','','','',''),('616921187620202032',3816,'61692118761','38','1.00','350','retail','0','2023-08-15 19:59:21','','','','0','Cash',0.00,'350','','','6','','1','2023-08-15 16:59:24','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-465.00','-466','Inclusive','branch','Inventory','','','','',''),('416921266153421300',3817,'41692126614','3','1.00','200','retail','0','2023-08-15 22:10:14','','','','0','Cash',0.00,'200','','','4','','1','2023-08-15 19:10:19','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-119.00','-120','Inclusive','branch','Inventory','','','','',''),('616921745203022325',3818,'61692174519','11','1.00','280','retail','0','2023-08-16 11:28:39','','','','0','Cash',0.00,'280','','','6','','1','2023-08-16 08:28:49','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-54.00','-55','Inclusive','branch','Inventory','','','','',''),('616921745274272432',3819,'61692174519','47','1.00','200','retail','0','2023-08-16 11:28:47','','','','0','Cash',0.00,'200','','','6','','1','2023-08-16 08:28:49','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','23.00','22','Inclusive','branch','Inventory','','','','',''),('616921751794272432',3820,'61692175178','21','1.00','200','retail','0','2023-08-16 11:39:38','','','','0','Cash',0.00,'200','','','6','','1','2023-08-16 08:39:42','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-442.00','-443','Inclusive','branch','Inventory','','','','',''),('616921766954272432',3821,'61692176694','21','1.00','200','retail','0','2023-08-16 12:04:54','','','','0','Cash',0.00,'200','','','6','','1','2023-08-16 09:04:57','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-443.00','-444','Inclusive','branch','Inventory','','','','',''),('616921797582965322',3822,'61692179757','23','1.00','250','retail','0','2023-08-16 12:55:57','','','','0','Cash',0.00,'250','','','6','','1','2023-08-16 09:56:02','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-169.00','-170','Inclusive','branch','Inventory','','','','',''),('616921804412064322',3823,'61692180440','20','1.00','200','retail','0','2023-08-16 13:07:20','','','','0','Cash',0.00,'200','','','6','','1','2023-08-16 10:07:23','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-180.00','-181','Inclusive','branch','Inventory','','','','',''),('616921978134292432',3824,'61692197813','20','1.00','200','retail','0','2023-08-16 17:56:53','','','','0','Cash',0.00,'200','','','6','','1','2023-08-16 14:56:55','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-181.00','-182','Inclusive','branch','Inventory','','','','',''),('616921996814292432',3825,'61692199680','22','1.00','250','retail','0','2023-08-16 18:28:00','','','','0','Cash',0.00,'250','','','6','','1','2023-08-16 15:28:05','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-45.00','-46','Inclusive','branch','Inventory','','','','',''),('616922023913330232',3826,'61692202390','22','1.00','250','retail','0','2023-08-16 19:13:10','','','','0','Cash',0.00,'250','','','6','','1','2023-08-16 16:13:16','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-46.00','-47','Inclusive','branch','Inventory','','','','',''),('616922023940202032',3827,'61692202390','22','1.00','250','retail','0','2023-08-16 19:13:13','','','','0','Cash',0.00,'250','','','6','','1','2023-08-16 16:13:16','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-47.00','-48','Inclusive','branch','Inventory','','','','',''),('616922070469260932',3828,'61692207045','29','1.00','300','retail','0','2023-08-16 20:30:45','','','','0','Cash',0.00,'300','','','6','','1','2023-08-16 17:30:48','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-30.00','-31','Inclusive','branch','Inventory','','','','',''),('616922104950202032',3829,'61692210494','23','1.00','250','retail','0','2023-08-16 21:28:14','','','','0','Cash',0.00,'250','','','6','','1','2023-08-16 18:28:16','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-170.00','-171','Inclusive','branch','Inventory','','','','',''),('616922589603421300',3830,'61692258959','11','1.00','280','retail','0','2023-08-17 10:55:59','','','','0','Cash',0.00,'280','','','6','','1','2023-08-17 07:56:21','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-55.00','-56','Inclusive','branch','Inventory','','','','',''),('616922589694252432',3831,'61692258959','11','1.00','280','retail','0','2023-08-17 10:56:08','','','','0','Cash',0.00,'280','','','6','','1','2023-08-17 07:56:21','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-56.00','-57','Inclusive','branch','Inventory','','','','',''),('616922589713022379',3832,'61692258959','1','1.00','280','retail','0','2023-08-17 10:56:11','','','','0','Cash',0.00,'280','','','6','','1','2023-08-17 07:56:21','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-271.00','-272','Inclusive','branch','Inventory','','','','',''),('416922821294282432',3833,'41692282128','1','1.00','280','retail','0','2023-08-17 17:22:08','','','','0','Cash',0.00,'280','','','4','','1','2023-08-17 14:22:12','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-272.00','-273','Inclusive','branch','Inventory','','','','',''),('616922839293202222',3834,'61692283928','52','1.00','150','retail','0','2023-08-17 17:52:08','','','','200','Cash',0.00,'150','','','6','','1','2023-08-17 14:52:11','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('616922848073421300',3835,'61692284806','12','1.00','250','retail','0','2023-08-17 18:06:46','','','','0','Cash',0.00,'250','','','6','','1','2023-08-17 15:06:49','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-87.00','-88','Inclusive','branch','Inventory','','','','',''),('616922848200202032',3836,'61692284819','21','1.00','200','retail','0','2023-08-17 18:06:59','','','','0','Cash',0.00,'200','','','6','','1','2023-08-17 15:07:01','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-444.00','-445','Inclusive','branch','Inventory','','','','',''),('616922849273022329',3837,'61692284926','11','1.00','280','retail','0','2023-08-17 18:08:46','','','','0','Cash',0.00,'280','','','6','','1','2023-08-17 15:08:50','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-57.00','-58','Inclusive','branch','Inventory','','','','',''),('416922918310202032',3838,'41692291831','1','1.00','280','retail','0','2023-08-17 20:03:51','','','','0','Cash',0.00,'280','','','4','','1','2023-08-17 17:04:04','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-273.00','-274','Inclusive','branch','Inventory','','','','',''),('416922918402222032',3839,'41692291831','38','1.00','350','retail','0','2023-08-17 20:03:59','','','','0','Cash',0.00,'350','','','4','','1','2023-08-17 17:04:04','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-466.00','-467','Inclusive','branch','Inventory','','','','',''),('416922951332222032',3840,'41692295132','20','1.00','200','retail','0','2023-08-17 20:58:52','','','','0','Cash',0.00,'200','','','4','','1','2023-08-17 17:58:55','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-182.00','-183','Inclusive','branch','Inventory','','','','',''),('416922957962569322',3841,'41692295795','8','1.00','150','retail','0','2023-08-17 21:09:55','','','','0','Cash',0.00,'150','','','4','','1','2023-08-17 18:10:00','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-81.00','-82','Inclusive','branch','Inventory','','','','',''),('416922983733421300',3842,'41692298373','1','1.00','280','retail','0','2023-08-17 21:52:53','','','','0','Cash',0.00,'280','','','4','','1','2023-08-17 18:52:57','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-274.00','-275','Inclusive','branch','Inventory','','','','',''),('416923551950202032',3843,'41692355194','1','1.00','280','retail','0','2023-08-18 13:39:54','','','','0','Cash',0.00,'280','','','4','','1','2023-08-18 10:39:57','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-275.00','-276','Inclusive','branch','Inventory','','','','',''),('416923674574262432',3844,'41692367456','11','1.00','280','retail','0','2023-08-18 17:04:17','','','','0','Cash',0.00,'280','','','4','','1','2023-08-18 14:04:21','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-58.00','-59','Inclusive','branch','Inventory','','','','',''),('416923710054272432',3845,'41692371004','16','1.00','200','retail','0','2023-08-18 18:03:24','','','','0','Cash',0.00,'200','','','4','','1','2023-08-18 15:03:28','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-29.00','-30','Inclusive','branch','Inventory','','','','',''),('616923743982469322',3846,'61692374398','5','1.00','300','retail','0','2023-08-18 18:59:58','','','','0','Cash',0.00,'300','','','6','','1','2023-08-18 16:00:01','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-110.00','-111','Inclusive','branch','Inventory','','','','',''),('616923744104272432',3847,'61692374409','38','1.00','350','retail','0','2023-08-18 19:00:09','','','','0','Cash',0.00,'350','','','6','','1','2023-08-18 16:00:13','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-467.00','-468','Inclusive','branch','Inventory','','','','',''),('616923848374282432',3848,'61692384836','38','1.00','350','retail','0','2023-08-18 21:53:56','','','','0','Cash',0.00,'350','','','6','','1','2023-08-18 18:53:59','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-468.00','-469','Inclusive','branch','Inventory','','','','',''),('616923855794282432',3849,'61692385578','38','1.00','350','retail','0','2023-08-18 22:06:18','','','','0','Cash',0.00,'350','','','6','','1','2023-08-18 19:06:22','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-469.00','-470','Inclusive','branch','Inventory','','','','',''),('616923867060202032',3850,'61692386705','21','1.00','200','retail','0','2023-08-18 22:25:05','','','','0','Cash',0.00,'200','','','6','','1','2023-08-18 19:25:08','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-445.00','-446','Inclusive','branch','Inventory','','','','',''),('616923868172661322',3851,'61692386817','20','1.00','200','retail','0','2023-08-18 22:26:57','','','','0','Cash',0.00,'200','','','6','','1','2023-08-18 19:26:59','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-183.00','-184','Inclusive','branch','Inventory','','','','',''),('616923897159250932',3852,'61692389714','15','1.00','200','retail','0','2023-08-18 23:15:14','','','','0','Cash',0.00,'200','','','6','','1','2023-08-18 20:15:17','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-22.00','-23','Inclusive','branch','Inventory','','','','',''),('616923914313022334',3853,'61692391430','38','1.00','350','retail','0','2023-08-18 23:43:50','','','','0','Cash',0.00,'350','','','6','','1','2023-08-18 20:43:52','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-470.00','-471','Inclusive','branch','Inventory','','','','',''),('416924353192222032',3854,'41692435318','21','1.00','200','retail','0','2023-08-19 11:55:18','','','','0','Cash',0.00,'200','','','4','','1','2023-08-19 08:55:24','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-446.00','-447','Inclusive','branch','Inventory','','','','',''),('416924502682343302',3855,'41692450267','7','1.00','200','retail','0','2023-08-19 16:04:27','','','','0','Cash',0.00,'200','','','4','','1','2023-08-19 13:04:38','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-189.00','-190','Inclusive','branch','Inventory','','','','',''),('416924502744252432',3856,'41692450267','27','1.00','100','retail','0','2023-08-19 16:04:34','','','','0','Cash',0.00,'100','','','4','','1','2023-08-19 13:04:38','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-3.00','-4','Inclusive','branch','Inventory','','','','',''),('416924518094252432',3857,'41692451809','7','1.00','200','retail','0','2023-08-19 16:30:09','','','','0','Cash',0.00,'200','','','4','','1','2023-08-19 13:30:14','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-190.00','-191','Inclusive','branch','Inventory','','','','',''),('416924520853022380',3858,'41692452084','7','1.00','200','retail','0','2023-08-19 16:34:44','','','','0','Cash',0.00,'200','','','4','','1','2023-08-19 13:34:55','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-191.00','-192','Inclusive','branch','Inventory','','','','',''),('416924520924252432',3859,'41692452084','26','1.00','100','retail','0','2023-08-19 16:34:51','','','','0','Cash',0.00,'100','','','4','','1','2023-08-19 13:34:55','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-33.00','-34','Inclusive','branch','Inventory','','','','',''),('616924559425924564',3860,'61692455941','3','1.00','200','retail','0','2023-08-19 17:39:01','','','','0','Cash',0.00,'200','','','6','','1','2023-08-19 14:39:04','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-120.00','-121','Inclusive','branch','Inventory','','','','',''),('616924567752557294',3861,'61692456774','3','1.00','200','retail','0','2023-08-19 17:52:54','','','','0','Cash',0.00,'200','','','6','','1','2023-08-19 14:52:57','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-121.00','-122','Inclusive','branch','Inventory','','','','',''),('616924625630223663',3862,'61692462562','3','1.00','200','retail','0','2023-08-19 19:29:22','','','','0','Cash',0.00,'200','','','6','','1','2023-08-19 16:29:26','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-122.00','-123','Inclusive','branch','Inventory','','','','',''),('616924689023421300',3863,'61692468902','20','1.00','200','retail','0','2023-08-19 21:15:02','','','','0','Cash',0.00,'200','','','6','','1','2023-08-19 18:15:09','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-184.00','-185','Inclusive','branch','Inventory','','','','',''),('616924689073421300',3864,'61692468902','47','1.00','200','retail','0','2023-08-19 21:15:06','','','','0','Cash',0.00,'200','','','6','','1','2023-08-19 18:15:09','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','22.00','21','Inclusive','branch','Inventory','','','','',''),('616924759313022339',3865,'61692475931','20','1.00','200','retail','0','2023-08-19 23:12:11','','','','0','Cash',0.00,'200','','','6','','1','2023-08-19 20:12:13','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-185.00','-186','Inclusive','branch','Inventory','','','','',''),('616924780663421300',3866,'61692478066','38','1.00','350','retail','0','2023-08-19 23:47:46','','','','0','Cash',0.00,'350','','','6','','1','2023-08-19 20:47:48','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-471.00','-472','Inclusive','branch','Inventory','','','','',''),('416925362422664322',3867,'41692536241','4','1.00','150','retail','0','2023-08-20 15:57:21','','','','0','Cash',0.00,'150','','','4','','1','2023-08-20 12:57:26','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-45.00','-46','Inclusive','branch','Inventory','','','','',''),('416925407032222032',3868,'41692540702','20','1.00','200','retail','0','2023-08-20 17:11:42','','','','0','Cash',0.00,'200','','','4','','1','2023-08-20 14:11:48','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-186.00','-187','Inclusive','branch','Inventory','','','','',''),('416925486060202032',3869,'41692548605','21','1.00','200','retail','0','2023-08-20 19:23:25','','','','0','Cash',0.00,'200','','','4','','1','2023-08-20 16:23:36','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-447.00','-448','Inclusive','branch','Inventory','','','','',''),('416925493354242432',3870,'41692549334','20','1.00','200','retail','0','2023-08-20 19:35:34','','','','0','Cash',0.00,'200','','','4','','1','2023-08-20 16:35:39','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-187.00','-188','Inclusive','branch','Inventory','','','','',''),('416925561942222032',3871,'41692556193','6','1.00','280','retail','0','2023-08-20 21:29:53','','','','0','Cash',0.00,'280','','','4','','1','2023-08-20 18:30:40','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-28.00','-29','Inclusive','branch','Inventory','','','','',''),('416925562352222032',3872,'41692556193','1','1.00','280','retail','0','2023-08-20 21:30:34','','','','0','Cash',0.00,'280','','','4','','1','2023-08-20 18:30:40','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-276.00','-277','Inclusive','branch','Inventory','','','','',''),('416925985070202032',3873,'41692598507','7','1.00','200','retail','0','2023-08-21 09:15:07','','','','0','Cash',0.00,'200','','','4','','1','2023-08-21 06:15:10','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-192.00','-193','Inclusive','branch','Inventory','','','','',''),('416926017130202032',3874,'41692601713','21','1.00','200','retail','0','2023-08-21 10:08:33','','','','0','Cash',0.00,'200','','','4','','1','2023-08-21 07:08:37','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-448.00','-449','Inclusive','branch','Inventory','','','','',''),('416926085734202432',3875,'41692608572','23','1.00','250','retail','0','2023-08-21 12:02:52','','','','0','Cash',0.00,'250','','','4','','1','2023-08-21 09:02:56','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-171.00','-172','Inclusive','branch','Inventory','','','','',''),('416926258303421300',3876,'41692625830','1','1.00','280','retail','0','2023-08-21 16:50:30','','','','0','Cash',0.00,'280','','','4','','1','2023-08-21 13:50:38','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-277.00','-278','Inclusive','branch','Inventory','','','','',''),('616926259840202032',3877,'61692625983','1','1.00','280','retail','0','2023-08-21 16:53:03','','','','0','Cash',0.00,'280','','','6','','1','2023-08-21 13:53:07','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-278.00','-279','Inclusive','branch','Inventory','','','','',''),('616926389554232432',3878,'61692638955','3','1.00','200','retail','0','2023-08-21 20:29:15','','','','0','Cash',0.00,'200','','','6','','1','2023-08-21 17:29:17','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-123.00','-124','Inclusive','branch','Inventory','','','','',''),('616926948204926464',3879,'61692694819','54','1.00','350','retail','0','2023-08-22 12:00:19','','','','200','Cash',0.00,'350','','','6','','1','2023-08-22 09:00:23','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Service','1110','4000','5500','',''),('616927035054202432',3880,'61692703504','38','1.00','350','retail','0','2023-08-22 14:25:04','','','','0','Cash',0.00,'350','','','6','','1','2023-08-22 11:25:06','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-472.00','-473','Inclusive','branch','Inventory','','','','',''),('616927035163022315',3881,'61692703515','21','1.00','200','retail','0','2023-08-22 14:25:15','','','','0','Cash',0.00,'200','','','6','','1','2023-08-22 11:25:17','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-449.00','-450','Inclusive','branch','Inventory','','','','',''),('416927171562222032',3882,'41692717155','2','1.00','250','retail','0','2023-08-22 18:12:35','','','','0','Cash',0.00,'250','','','4','','1','2023-08-22 15:12:38','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-83.00','-84','Inclusive','branch','Inventory','','','','',''),('416927181642233083',3883,'41692718163','2','1.00','250','retail','0','2023-08-22 18:29:23','','','','0','Cash',0.00,'250','','','4','','1','2023-08-22 15:29:26','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-84.00','-85','Inclusive','branch','Inventory','','','','',''),('416927197380202032',3884,'41692719737','4','1.00','150','retail','0','2023-08-22 18:55:37','','','','0','Cash',0.00,'150','','','4','','1','2023-08-22 15:55:45','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-46.00','-47','Inclusive','branch','Inventory','','','','',''),('416927197429220932',3885,'41692719737','4','1.00','150','retail','0','2023-08-22 18:55:41','','','','0','Cash',0.00,'150','','','4','','1','2023-08-22 15:55:45','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-47.00','-48','Inclusive','branch','Inventory','','','','',''),('416927205560927044',3886,'41692720555','38','1.00','350','retail','0','2023-08-22 19:09:15','','','','0','Cash',0.00,'350','','','4','','1','2023-08-22 16:09:18','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-473.00','-474','Inclusive','branch','Inventory','','','','',''),('416927205670202032',3887,'41692720566','38','1.00','350','retail','0','2023-08-22 19:09:26','','','','0','Cash',0.00,'350','','','4','','1','2023-08-22 16:09:35','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-474.00','-475','Inclusive','branch','Inventory','','','','',''),('416927205733421300',3888,'41692720566','17','1.00','200','retail','0','2023-08-22 19:09:32','','','','0','Cash',0.00,'200','','','4','','1','2023-08-22 16:09:35','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-62.00','-63','Inclusive','branch','Inventory','','','','',''),('416927221003022301',3889,'41692722100','21','1.00','200','retail','0','2023-08-22 19:35:00','','','','0','Cash',0.00,'200','','','4','','1','2023-08-22 16:35:03','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-450.00','-451','Inclusive','branch','Inventory','','','','',''),('416927315209200932',3890,'41692731519','5','1.00','300','retail','0','2023-08-22 22:11:59','','','','0','Cash',0.00,'300','','','4','','1','2023-08-22 19:12:21','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-111.00','-112','Inclusive','branch','Inventory','','','','',''),('416927315493033437',3891,'41692731548','6','1.00','280','retail','0','2023-08-22 22:12:28','','','','0','Cash',0.00,'280','','','4','','1','2023-08-22 19:12:34','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-29.00','-30','Inclusive','branch','Inventory','','','','',''),('416927315702222032',3892,'41692731570','23','1.00','250','retail','0','2023-08-22 22:12:50','','','','0','Cash',0.00,'250','','','4','','1','2023-08-22 19:12:55','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-172.00','-173','Inclusive','branch','Inventory','','','','',''),('416927317821927144',3893,'41692731781','21','1.00','200','retail','0','2023-08-22 22:16:21','','','','0','Cash',0.00,'200','','','4','','1','2023-08-22 19:16:26','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-451.00','-452','Inclusive','branch','Inventory','','','','',''),('616928090610202032',3894,'61692809060','38','1.00','350','retail','0','2023-08-23 19:44:20','','','','0','Cash',0.00,'350','','','6','','1','2023-08-23 16:44:23','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-475.00','-476','Inclusive','branch','Inventory','','','','',''),('616928090709200932',3895,'61692809070','21','1.00','200','retail','0','2023-08-23 19:44:30','','','','0','Cash',0.00,'200','','','6','','1','2023-08-23 16:44:33','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-452.00','-453','Inclusive','branch','Inventory','','','','',''),('616928090793421300',3896,'61692809079','20','1.00','200','retail','0','2023-08-23 19:44:39','','','','0','Cash',0.00,'200','','','6','','1','2023-08-23 16:44:41','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-188.00','-189','Inclusive','branch','Inventory','','','','',''),('616928090884202432',3897,'61692809087','21','1.00','200','retail','0','2023-08-23 19:44:47','','','','0','Cash',0.00,'200','','','6','','1','2023-08-23 16:44:49','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-453.00','-454','Inclusive','branch','Inventory','','','','',''),('616928150444212432',3898,'61692815044','2','1.00','250','retail','0','2023-08-23 21:24:04','','','','0','Cash',0.00,'250','','','6','','1','2023-08-23 18:24:12','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-85.00','-86','Inclusive','branch','Inventory','','','','',''),('616928167819210932',3899,'61692816780','20','1.00','200','retail','0','2023-08-23 21:53:00','','','','0','Cash',0.00,'200','','','6','','1','2023-08-23 18:53:04','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-189.00','-190','Inclusive','branch','Inventory','','','','',''),('616928743000202032',3900,'61692874299','38','1.00','350','retail','0','2023-08-24 13:51:39','','','','0','Cash',0.00,'350','','','6','','1','2023-08-24 10:51:42','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-476.00','-477','Inclusive','branch','Inventory','','','','',''),('616928810029220932',3901,'61692881001','2','1.00','250','retail','0','2023-08-24 15:43:21','','','','0','Cash',0.00,'250','','','6','','1','2023-08-24 12:43:25','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-86.00','-87','Inclusive','branch','Inventory','','','','',''),('616928810162222032',3902,'61692881015','2','1.00','250','retail','0','2023-08-24 15:43:35','','','','0','Cash',0.00,'250','','','6','','1','2023-08-24 12:43:38','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-87.00','-88','Inclusive','branch','Inventory','','','','',''),('416928821793022371',3903,'41692882179','38','1.00','350','retail','0','2023-08-24 16:02:59','','','','0','Cash',0.00,'350','','','4','','1','2023-08-24 13:03:05','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-477.00','-478','Inclusive','branch','Inventory','','','','',''),('616928876404282432',3904,'61692887639','3','1.00','200','retail','0','2023-08-24 17:33:59','','','','0','Cash',0.00,'200','','','6','','1','2023-08-24 14:34:03','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-124.00','-125','Inclusive','branch','Inventory','','','','',''),('616928909674292432',3905,'61692890966','21','1.00','200','retail','0','2023-08-24 18:29:26','','','','0','Cash',0.00,'200','','','6','','1','2023-08-24 15:29:30','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-454.00','-455','Inclusive','branch','Inventory','','','','',''),('616928909792222032',3906,'61692890979','11','1.00','280','retail','0','2023-08-24 18:29:39','','','','0','Cash',0.00,'280','','','6','','1','2023-08-24 15:30:19','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-59.00','-60','Inclusive','branch','Inventory','','','','',''),('616928909910928064',3907,'61692890979','11','1.00','280','retail','0','2023-08-24 18:29:50','','','','0','Cash',0.00,'280','','','6','','1','2023-08-24 15:30:19','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-60.00','-61','Inclusive','branch','Inventory','','','','',''),('616928910153022310',3908,'61692890979','24','1.00','100','retail','0','2023-08-24 18:30:14','','','','0','Cash',0.00,'100','','','6','','1','2023-08-24 15:30:19','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-32.00','-33','Inclusive','branch','Inventory','','','','',''),('616928910662222032',3909,'61692891065','20','1.00','200','retail','0','2023-08-24 18:31:05','','','','0','Cash',0.00,'200','','','6','','1','2023-08-24 15:31:15','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-190.00','-191','Inclusive','branch','Inventory','','','','',''),('616928910731928164',3910,'61692891065','38','1.00','350','retail','0','2023-08-24 18:31:12','','','','0','Cash',0.00,'350','','','6','','1','2023-08-24 15:31:15','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-478.00','-479','Inclusive','branch','Inventory','','','','',''),('416928990092222032',3911,'41692899008','21','1.00','200','retail','0','2023-08-24 20:43:28','','','','0','Cash',0.00,'200','','','4','','1','2023-08-24 17:43:32','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-455.00','-456','Inclusive','branch','Inventory','','','','',''),('416928997589928944',3912,'41692899758','21','1.00','200','retail','0','2023-08-24 20:55:58','','','','0','Cash',0.00,'200','','','4','','1','2023-08-24 17:56:01','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-456.00','-457','Inclusive','branch','Inventory','','','','',''),('416929014113421300',3913,'41692901410','21','1.00','200','retail','0','2023-08-24 21:23:30','','','','0','Cash',0.00,'200','','','4','','1','2023-08-24 18:23:35','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-457.00','-458','Inclusive','branch','Inventory','','','','',''),('416931553765921544',3914,'41693155375','38','1.00','350','retail','0','2023-08-27 19:56:15','','','','0','Cash',0.00,'350','','','4','','1','2023-08-27 16:56:43','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-479.00','-480','Inclusive','branch','Inventory','','','','',''),('416931553773022373',3915,'41693155375','38','1.00','350','retail','0','2023-08-27 19:56:16','','','','0','Cash',0.00,'350','','','4','','1','2023-08-27 16:56:43','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-480.00','-481','Inclusive','branch','Inventory','','','','',''),('416931553970202033',3916,'41693155375','38','1.00','350','retail','0','2023-08-27 19:56:37','','','','0','Cash',0.00,'350','','','4','','1','2023-08-27 16:56:43','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-481.00','-482','Inclusive','branch','Inventory','','','','',''),('416931554192222032',3917,'41693155419','38','1.00','350','retail','0','2023-08-27 19:56:59','','','','0','Cash',0.00,'350','','','4','','1','2023-08-27 16:57:05','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-482.00','-483','Inclusive','branch','Inventory','','','','',''),('416931567482664332',3918,'41693156747','38','1.00','350','retail','0','2023-08-27 20:19:07','','','','0','Cash',0.00,'350','','','4','','1','2023-08-27 17:19:11','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-483.00','-484','Inclusive','branch','Inventory','','','','',''),('416931575793022375',3919,'41693157578','38','1.00','350','retail','0','2023-08-27 20:32:59','','','','0','Cash',0.00,'350','','','4','','1','2023-08-27 17:33:02','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-484.00','-485','Inclusive','branch','Inventory','','','','',''),('416931590059921944',3920,'41693159005','21','1.00','200','retail','0','2023-08-27 20:56:45','','','','0','Cash',0.00,'200','','','4','','1','2023-08-27 17:56:49','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-458.00','-459','Inclusive','branch','Inventory','','','','',''),('416931597654252432',3921,'41693159764','21','1.00','200','retail','0','2023-08-27 21:09:24','','','','0','Cash',0.00,'200','','','4','','1','2023-08-27 18:09:29','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-459.00','-460','Inclusive','branch','Inventory','','','','',''),('416931616463661233',3922,'41693161645','22','1.00','250','retail','0','2023-08-27 21:40:45','','','','0','Cash',0.00,'250','','','4','','1','2023-08-27 18:40:51','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-48.00','-49','Inclusive','branch','Inventory','','','','',''),('416931617051921144',3923,'41693161704','20','1.00','200','retail','0','2023-08-27 21:41:44','','','','0','Cash',0.00,'200','','','4','','1','2023-08-27 18:41:55','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-191.00','-192','Inclusive','branch','Inventory','','','','',''),('416931617532222032',3924,'41693161752','39','1.00','300','retail','0','2023-08-27 21:42:32','','','','0','Cash',0.00,'300','','','4','','1','2023-08-27 18:42:36','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-7.00','-8','Inclusive','branch','Inventory','','','','',''),('416932216942222032',3925,'41693221693','11','1.00','280','retail','0','2023-08-28 14:21:33','','','','0','Cash',0.00,'280','','','4','','1','2023-08-28 11:21:37','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-61.00','-62','Inclusive','branch','Inventory','','','','',''),('416932217113022317',3926,'41693221710','5','1.00','300','retail','0','2023-08-28 14:21:50','','','','0','Cash',0.00,'300','','','4','','1','2023-08-28 11:23:42','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-112.00','-113','Inclusive','branch','Inventory','','','','',''),('416932217283421300',3927,'41693221710','29','1.00','300','retail','0','2023-08-28 14:22:07','','','','0','Cash',0.00,'300','','','4','','1','2023-08-28 11:23:42','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-31.00','-32','Inclusive','branch','Inventory','','','','',''),('416932217310202033',3928,'41693221710','29','1.00','300','retail','0','2023-08-28 14:22:10','','','','0','Cash',0.00,'300','','','4','','1','2023-08-28 11:23:42','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-32.00','-33','Inclusive','branch','Inventory','','','','',''),('416932217630202033',3929,'41693221710','47','1.00','200','retail','0','2023-08-28 14:22:43','','','','0','Cash',0.00,'200','','','4','','1','2023-08-28 11:23:42','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','21.00','20','Inclusive','branch','Inventory','','','','',''),('416932217684222432',3930,'41693221710','47','1.00','200','retail','0','2023-08-28 14:22:47','','','','0','Cash',0.00,'200','','','4','','1','2023-08-28 11:23:42','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','20.00','19','Inclusive','branch','Inventory','','','','',''),('416932217983022397',3931,'41693221710','5','1.00','300','retail','0','2023-08-28 14:23:17','','','','0','Cash',0.00,'300','','','4','','1','2023-08-28 11:23:42','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-113.00','-114','Inclusive','branch','Inventory','','','','',''),('616932315052160332',3932,'61693231504','2','1.00','250','retail','0','2023-08-28 17:05:04','','','','0','Cash',0.00,'250','','','6','','1','2023-08-28 14:05:07','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-88.00','-89','Inclusive','branch','Inventory','','','','',''),('616932362052660332',3933,'61693236205','2','1.00','250','retail','0','2023-08-28 18:23:25','','','','0','Cash',0.00,'250','','','6','','1','2023-08-28 15:23:28','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-89.00','-90','Inclusive','branch','Inventory','','','','',''),('616932374077922764',3934,'61693237406','38','1.00','350','retail','0','2023-08-28 18:43:26','','','','0','Cash',0.00,'350','','','6','','1','2023-08-28 15:43:29','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-485.00','-486','Inclusive','branch','Inventory','','','','',''),('616932374173022314',3935,'61693237417','38','1.00','350','retail','0','2023-08-28 18:43:37','','','','0','Cash',0.00,'350','','','6','','1','2023-08-28 15:43:39','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-486.00','-487','Inclusive','branch','Inventory','','','','',''),('616932408982222032',3936,'61693240898','23','1.00','250','retail','0','2023-08-28 19:41:38','','','','0','Cash',0.00,'250','','','6','','1','2023-08-28 16:41:42','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-173.00','-174','Inclusive','branch','Inventory','','','','',''),('616932443872222032',3937,'61693244387','7','1.00','200','retail','0','2023-08-28 20:39:47','','','','0','Cash',0.00,'200','','','6','','1','2023-08-28 17:39:50','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-193.00','-194','Inclusive','branch','Inventory','','','','',''),('616932466192222032',3938,'61693246618','52','1.00','150','retail','0','2023-08-28 21:16:58','','','','200','Cash',0.00,'150','','','6','','1','2023-08-28 18:17:00','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('616932466273022326',3939,'61693246626','21','1.00','200','retail','0','2023-08-28 21:17:06','','','','0','Cash',0.00,'200','','','6','','1','2023-08-28 18:17:11','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-460.00','-461','Inclusive','branch','Inventory','','','','',''),('616932466524242432',3940,'61693246652','23','1.00','250','retail','0','2023-08-28 21:17:32','','','','0','Cash',0.00,'250','','','6','','1','2023-08-28 18:17:34','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-174.00','-175','Inclusive','branch','Inventory','','','','',''),('616932466664242432',3941,'61693246665','7','1.00','200','retail','0','2023-08-28 21:17:45','','','','0','Cash',0.00,'200','','','6','','1','2023-08-28 18:17:49','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-194.00','-195','Inclusive','branch','Inventory','','','','',''),('416932981821093203',3942,'41693298181','21','1.00','200','retail','0','2023-08-29 11:36:21','','','','0','Cash',0.00,'200','','','4','','1','2023-08-29 08:36:27','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-461.00','-462','Inclusive','branch','Inventory','','','','',''),('416933059193421300',3943,'41693305919','22','1.00','250','retail','0','2023-08-29 13:45:19','','','','0','Cash',0.00,'250','','','4','','1','2023-08-29 10:45:22','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-49.00','-50','Inclusive','branch','Inventory','','','','',''),('416933158315923544',3944,'41693315830','8','1.00','150','retail','0','2023-08-29 16:30:30','','','','0','Cash',0.00,'150','','','4','','1','2023-08-29 13:30:34','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-82.00','-83','Inclusive','branch','Inventory','','','','',''),('616933164392222032',3945,'61693316439','31','1.00','200','retail','0','2023-08-29 16:40:39','','','','0','Cash',0.00,'200','','','6','','1','2023-08-29 13:40:42','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-17.00','-18','Inclusive','branch','Inventory','','','','',''),('416933193752967332',3946,'41693319374','38','1.00','350','retail','0','2023-08-29 17:29:34','','','','0','Cash',0.00,'350','','','4','','1','2023-08-29 14:29:37','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-487.00','-488','Inclusive','branch','Inventory','','','','',''),('616933208652066332',3947,'61693320864','21','1.00','200','retail','0','2023-08-29 17:54:24','','','','0','Cash',0.00,'200','','','6','','1','2023-08-29 14:54:27','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-462.00','-463','Inclusive','branch','Inventory','','','','',''),('616933208774222432',3948,'61693320876','1','1.00','280','retail','0','2023-08-29 17:54:36','','','','0','Cash',0.00,'280','','','6','','1','2023-08-29 14:54:40','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-279.00','-280','Inclusive','branch','Inventory','','','','',''),('616933208990202033',3949,'61693320899','16','1.00','200','retail','0','2023-08-29 17:54:59','','','','0','Cash',0.00,'200','','','6','','1','2023-08-29 14:55:07','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-30.00','-31','Inclusive','branch','Inventory','','','','',''),('616933254163022314',3953,'61693325415','21','1.00','200','retail','0','2023-08-29 19:10:15','','','','0','Cash',0.00,'200','','','6','','1','2023-08-29 16:10:19','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-463.00','-464','Inclusive','branch','Inventory','','','','',''),('616933254309200932',3954,'61693325429','21','1.00','200','retail','0','2023-08-29 19:10:29','','','','0','Cash',0.00,'200','','','6','','1','2023-08-29 16:10:35','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-464.00','-465','Inclusive','branch','Inventory','','','','',''),('616933239343923364',3955,'61693323933','1','1.00','280','retail','0','2023-08-29 18:45:33','','','','0','Cash',0.00,'280','','','6','','1','2023-08-29 16:40:52','','1','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-280.00','-281','Inclusive','branch','Inventory','','','','',''),('616933239452222032',3956,'61693323933','47','1.00','200','retail','0','2023-08-29 18:45:45','','','','0','Cash',0.00,'200','','','6','','1','2023-08-29 16:40:52','','10','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','19.00','18','Inclusive','branch','Inventory','','','','',''),('616933239483923364',3957,'61693323933','47','1.00','200','retail','0','2023-08-29 18:45:47','','','','0','Cash',0.00,'200','','','6','','1','2023-08-29 16:40:52','','10','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','18.00','17','Inclusive','branch','Inventory','','','','',''),('616933272507923764',3958,'61693323933','2','1.00','250','retail','0','2023-08-29 19:40:49','','','','0','Cash',0.00,'250','','','6','','1','2023-08-29 16:40:52','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-90.00','-91','Inclusive','branch','Inventory','','','','',''),('616933290012222032',3959,'61693329001','38','1.00','350','retail','0','2023-08-29 20:10:01','','','','0','Cash',0.00,'350','','','6','','1','2023-08-29 17:10:04','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-488.00','-489','Inclusive','branch','Inventory','','','','',''),('616933302923421300',3960,'61693330291','17','1.00','200','retail','0','2023-08-29 20:31:31','','','','0','Cash',0.00,'200','','','6','','1','2023-08-29 17:31:34','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-63.00','-64','Inclusive','branch','Inventory','','','','',''),('616933325893022385',3961,'61693332588','21','1.00','200','retail','0','2023-08-29 21:09:48','','','','0','Cash',0.00,'200','','','6','','1','2023-08-29 18:09:51','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-465.00','-466','Inclusive','branch','Inventory','','','','',''),('616933325993022395',3962,'61693332598','20','1.00','200','retail','0','2023-08-29 21:09:58','','','','0','Cash',0.00,'200','','','6','','1','2023-08-29 18:10:00','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-192.00','-193','Inclusive','branch','Inventory','','','','',''),('616933360103022310',3963,'61693336009','38','1.00','350','retail','0','2023-08-29 22:06:49','','','','0','Cash',0.00,'350','','','6','','1','2023-08-29 19:06:52','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-489.00','-490','Inclusive','branch','Inventory','','','','',''),('616933360422664332',3964,'61693336041','21','1.00','200','retail','0','2023-08-29 22:07:21','','','','0','Cash',0.00,'200','','','6','','1','2023-08-29 19:07:25','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-466.00','-467','Inclusive','branch','Inventory','','','','',''),('616933373704232432',3965,'61693337369','7','1.00','200','retail','0','2023-08-29 22:29:29','','','','0','Cash',0.00,'200','','','6','','1','2023-08-29 19:29:32','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-195.00','-196','Inclusive','branch','Inventory','','','','',''),('616933769310202033',3966,'61693376930','54','1.00','350','retail','0','2023-08-30 09:28:50','','','','200','Cash',0.00,'350','','','6','','1','2023-08-30 06:29:05','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Service','1110','4000','5500','',''),('616933769416923664',3967,'61693376930','46','1.00','200','retail','0','2023-08-30 09:29:01','','','','0','Cash',0.00,'200','','','6','','1','2023-08-30 06:29:05','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','','','','',''),('616933789803022389',3968,'61693378980','11','1.00','280','retail','0','2023-08-30 10:03:00','','','','0','Cash',0.00,'280','','','6','','1','2023-08-30 07:03:08','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-62.00','-63','Inclusive','branch','Inventory','','','','',''),('616933789866322127',3969,'61693378980','21','1.00','200','retail','0','2023-08-30 10:03:05','','','','0','Cash',0.00,'200','','','6','','1','2023-08-30 07:03:08','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-467.00','-468','Inclusive','branch','Inventory','','','','',''),('616933804774282432',3970,'61693380476','11','1.00','280','retail','0','2023-08-30 10:27:56','','','','0','Cash',0.00,'280','','','6','','1','2023-08-30 07:28:06','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-63.00','-64','Inclusive','branch','Inventory','','','','',''),('616933804802222032',3971,'61693380476','1','1.00','280','retail','0','2023-08-30 10:27:59','','','','0','Cash',0.00,'280','','','6','','1','2023-08-30 07:28:06','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-281.00','-282','Inclusive','branch','Inventory','','','','',''),('616933832923421300',3972,'61693383291','38','1.00','350','retail','0','2023-08-30 11:14:51','','','','0','Cash',0.00,'350','','','6','','1','2023-08-30 08:14:57','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-490.00','-491','Inclusive','branch','Inventory','','','','',''),('616933832952222032',3973,'61693383291','38','1.00','350','retail','0','2023-08-30 11:14:54','','','','0','Cash',0.00,'350','','','6','','1','2023-08-30 08:14:57','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-491.00','-492','Inclusive','branch','Inventory','','','','',''),('616933833123022313',3974,'61693383311','15','1.00','200','retail','0','2023-08-30 11:15:11','','','','0','Cash',0.00,'200','','','6','','1','2023-08-30 08:15:26','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-23.00','-24','Inclusive','branch','Inventory','','','','',''),('616933833173022313',3975,'61693383311','21','1.00','200','retail','0','2023-08-30 11:15:16','','','','0','Cash',0.00,'200','','','6','','1','2023-08-30 08:15:26','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-468.00','-469','Inclusive','branch','Inventory','','','','',''),('616933833232222032',3976,'61693383311','47','1.00','200','retail','0','2023-08-30 11:15:22','','','','0','Cash',0.00,'200','','','6','','1','2023-08-30 08:15:26','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','17.00','16','Inclusive','branch','Inventory','','','','',''),('616933848442222032',3977,'61693384843','21','1.00','200','retail','0','2023-08-30 11:40:43','','','','0','Cash',0.00,'200','','','6','','1','2023-08-30 08:40:47','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-469.00','-470','Inclusive','branch','Inventory','','','','',''),('616934080032860332',3978,'61693408002','21','1.00','200','retail','0','2023-08-30 18:06:42','','','','0','Cash',0.00,'200','','','6','','1','2023-08-30 15:06:48','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-470.00','-471','Inclusive','branch','Inventory','','','','',''),('616934080050202033',3979,'61693408002','23','1.00','250','retail','0','2023-08-30 18:06:44','','','','0','Cash',0.00,'250','','','6','','1','2023-08-30 15:06:48','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-175.00','-176','Inclusive','branch','Inventory','','','','',''),('616934084962222032',3980,'61693408495','12','1.00','250','retail','0','2023-08-30 18:14:55','','','','0','Cash',0.00,'250','','','6','','1','2023-08-30 15:14:57','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-88.00','-89','Inclusive','branch','Inventory','','','','',''),('616934171029220932',3981,'61693417101','11','1.00','280','retail','0','2023-08-30 20:38:21','','','','0','Cash',0.00,'280','','','6','','1','2023-08-30 17:38:24','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-64.00','-65','Inclusive','branch','Inventory','','','','',''),('616934171174212432',3982,'61693417117','8','1.00','150','retail','0','2023-08-30 20:38:37','','','','0','Cash',0.00,'150','','','6','','1','2023-08-30 17:38:47','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-83.00','-84','Inclusive','branch','Inventory','','','','',''),('616934171243022321',3983,'61693417117','20','1.00','200','retail','0','2023-08-30 20:38:44','','','','0','Cash',0.00,'200','','','6','','1','2023-08-30 17:38:47','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-193.00','-194','Inclusive','branch','Inventory','','','','',''),('616934171603022361',3986,'61693417160','55','1.00','200','retail','0','2023-08-30 20:39:20','','','','150','Cash',0.00,'200','','','6','','1','2023-08-30 17:39:25','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','289.00','288','Inclusive','branch','Inventory','1110','4000','5500','',''),('616934171633421300',3987,'61693417160','21','1.00','200','retail','0','2023-08-30 20:39:23','','','','0','Cash',0.00,'200','','','6','','1','2023-08-30 17:39:25','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-471.00','-472','Inclusive','branch','Inventory','','','','',''),('616934174693421300',3991,'61693417468','21','1.00','200','retail','0','2023-08-30 20:44:28','','','','0','Cash',0.00,'200','','','6','','1','2023-08-30 17:44:31','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-472.00','-473','Inclusive','branch','Inventory','','','','',''),('616934171432222032',3992,'61693417143','2','1.00','250','retail','0','2023-08-30 20:39:03','','','','0','Cash',0.00,'250','','','6','','1','2023-08-30 17:46:04','','1','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-91.00','-92','Inclusive','branch','Inventory','','','','',''),('616934171512765332',3993,'61693417143','47','1.00','200','retail','0','2023-08-30 20:39:11','','','','0','Cash',0.00,'200','','','6','','1','2023-08-30 17:46:04','','10','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','16.00','15','Inclusive','branch','Inventory','','','','',''),('616934172183421300',3994,'61693417143','20','1.00','200','retail','0','2023-08-30 20:40:17','','','','0','Cash',0.00,'200','','','6','','1','2023-08-30 17:46:04','','2','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-194.00','-195','Inclusive','branch','Inventory','','','','',''),('616934175567924764',3995,'61693417143','20','1.00','200','retail','0','2023-08-30 20:45:55','','','','0','Cash',0.00,'200','','','6','','1','2023-08-30 17:46:04','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-195.00','-196','Inclusive','branch','Inventory','','','','',''),('616934208429220932',3996,'61693420841','1','1.00','280','retail','0','2023-08-30 21:40:41','','','','0','Cash',0.00,'280','','','6','','1','2023-08-30 18:40:47','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-282.00','-283','Inclusive','branch','Inventory','','','','',''),('616934208434222432',3997,'61693420841','1','1.00','280','retail','0','2023-08-30 21:40:43','','','','0','Cash',0.00,'280','','','6','','1','2023-08-30 18:40:47','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-283.00','-284','Inclusive','branch','Inventory','','','','',''),('616934208452064332',3998,'61693420841','1','1.00','280','retail','0','2023-08-30 21:40:45','','','','0','Cash',0.00,'280','','','6','','1','2023-08-30 18:40:47','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-284.00','-285','Inclusive','branch','Inventory','','','','',''),('616934762322663332',3999,'61693476232','38','1.00','350','retail','0','2023-08-31 13:03:52','','','','0','Cash',0.00,'350','','','6','','1','2023-08-31 10:04:16','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-492.00','-493','Inclusive','branch','Inventory','','','','',''),('616934762342222032',4000,'61693476232','38','1.00','350','retail','0','2023-08-31 13:03:53','','','','0','Cash',0.00,'350','','','6','','1','2023-08-31 10:04:16','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-493.00','-494','Inclusive','branch','Inventory','','','','',''),('616934762423022342',4001,'61693476232','16','1.00','200','retail','0','2023-08-31 13:04:01','','','','0','Cash',0.00,'200','','','6','','1','2023-08-31 10:04:16','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-31.00','-32','Inclusive','branch','Inventory','','','','',''),('616934762522222032',4002,'61693476232','12','1.00','250','retail','0','2023-08-31 13:04:12','','','','0','Cash',0.00,'250','','','6','','1','2023-08-31 10:04:16','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-89.00','-90','Inclusive','branch','Inventory','','','','',''),('616934762709200932',4003,'61693476269','21','1.00','200','retail','0','2023-08-31 13:04:29','','','','0','Cash',0.00,'200','','','6','','1','2023-08-31 10:04:40','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-473.00','-474','Inclusive','branch','Inventory','','','','',''),('616934762776924664',4004,'61693476269','46','1.00','200','retail','0','2023-08-31 13:04:36','','','','0','Cash',0.00,'200','','','6','','1','2023-08-31 10:04:40','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','','','','',''),('616934819313022339',4005,'61693481931','38','1.00','350','retail','0','2023-08-31 14:38:51','','','','0','Cash',0.00,'350','','','6','','1','2023-08-31 11:39:03','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-494.00','-495','Inclusive','branch','Inventory','','','','',''),('616934819403022349',4006,'61693481931','21','1.00','200','retail','0','2023-08-31 14:38:59','','','','0','Cash',0.00,'200','','','6','','1','2023-08-31 11:39:03','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-474.00','-475','Inclusive','branch','Inventory','','','','',''),('616934829602222032',4007,'61693482959','17','1.00','200','retail','0','2023-08-31 14:55:59','','','','0','Cash',0.00,'200','','','6','','1','2023-08-31 11:56:09','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-64.00','-65','Inclusive','branch','Inventory','','','','',''),('616934829660202033',4008,'61693482959','7','1.00','200','retail','0','2023-08-31 14:56:05','','','','0','Cash',0.00,'200','','','6','','1','2023-08-31 11:56:09','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-196.00','-197','Inclusive','branch','Inventory','','','','',''),('416934972823022382',4009,'41693497281','3','1.00','200','retail','0','2023-08-31 18:54:41','','','','0','Cash',0.00,'200','','','4','','1','2023-08-31 15:54:51','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-125.00','-126','Inclusive','branch','Inventory','','','','',''),('416934985884292432',4010,'41693498587','21','1.00','200','retail','0','2023-08-31 19:16:27','','','','0','Cash',0.00,'200','','','4','','1','2023-08-31 16:16:38','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-475.00','-476','Inclusive','branch','Inventory','','','','',''),('416934986424220334',4011,'41693498641','5','1.00','300','retail','0','2023-08-31 19:17:21','','','','0','Cash',0.00,'300','','','4','','1','2023-08-31 16:17:24','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-114.00','-115','Inclusive','branch','Inventory','','','','',''),('416935062682666332',4012,'41693506267','39','1.00','300','retail','0','2023-08-31 21:24:27','','','','0','Cash',0.00,'300','','','4','','1','2023-08-31 18:24:31','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-8.00','-9','Inclusive','branch','Inventory','','','','',''),('416935085350202033',4013,'41693508535','3','1.00','200','retail','0','2023-08-31 22:02:15','','','','0','Cash',0.00,'200','','','4','','1','2023-08-31 19:02:20','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-126.00','-127','Inclusive','branch','Inventory','','','','',''),('416935759244272432',4014,'41693575924','3','1.00','200','retail','0','2023-09-01 16:45:24','','','','0','Cash',0.00,'200','','','4','','1','2023-09-01 13:45:28','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-127.00','-128','Inclusive','branch','Inventory','','','','',''),('616935871019210932',4015,'61693587101','1','1.00','280','retail','0','2023-09-01 19:51:41','','','','0','Cash',0.00,'280','','','6','','1','2023-09-01 16:51:44','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-285.00','-286','Inclusive','branch','Inventory','','','','',''),('616935871133421300',4016,'61693587113','1','1.00','280','retail','0','2023-09-01 19:51:53','','','','0','Cash',0.00,'280','','','6','','1','2023-09-01 16:52:02','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-286.00','-287','Inclusive','branch','Inventory','','','','',''),('616935871303421300',4017,'61693587129','23','1.00','250','retail','0','2023-09-01 19:52:09','','','','0','Cash',0.00,'250','','','6','','1','2023-09-01 16:52:18','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-176.00','-177','Inclusive','branch','Inventory','','','','',''),('616935871353022331',4018,'61693587129','47','1.00','200','retail','0','2023-09-01 19:52:14','','','','0','Cash',0.00,'200','','','6','','1','2023-09-01 16:52:18','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','15.00','14','Inclusive','branch','Inventory','','','','',''),('616935954002222032',4019,'61693595399','3','1.00','200','retail','0','2023-09-01 22:09:59','','','','0','Cash',0.00,'200','','','6','','1','2023-09-01 19:10:02','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-128.00','-129','Inclusive','branch','Inventory','','','','',''),('616935954183022314',4020,'61693595417','38','1.00','350','retail','0','2023-09-01 22:10:17','','','','0','Cash',0.00,'350','','','6','','1','2023-09-01 19:10:20','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-495.00','-496','Inclusive','branch','Inventory','','','','',''),('616935978150202033',4021,'61693597814','1','1.00','280','retail','0','2023-09-01 22:50:14','','','','0','Cash',0.00,'280','','','6','','1','2023-09-01 19:50:19','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-287.00','-288','Inclusive','branch','Inventory','','','','',''),('616935978160202033',4022,'61693597814','1','1.00','280','retail','0','2023-09-01 22:50:16','','','','0','Cash',0.00,'280','','','6','','1','2023-09-01 19:50:19','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-288.00','-289','Inclusive','branch','Inventory','','','','',''),('416936474973022394',4023,'41693647497','20','1.00','200','retail','0','2023-09-02 12:38:17','','','','0','Cash',0.00,'200','','','4','','1','2023-09-02 09:38:34','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-196.00','-197','Inclusive','branch','Inventory','','','','',''),('416936475104242432',4024,'41693647497','7','1.00','200','retail','0','2023-09-02 12:38:29','','','','0','Cash',0.00,'200','','','4','','1','2023-09-02 09:38:34','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-197.00','-198','Inclusive','branch','Inventory','','','','',''),('416936519543532040',4025,'41693651953','12','1.00','250','retail','0','2023-09-02 13:52:33','','','','0','Cash',0.00,'250','','','4','','1','2023-09-02 10:53:33','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-90.00','-91','Inclusive','branch','Inventory','','','','',''),('416936530224252432',4026,'41693653020','38','1.00','350','retail','0','2023-09-02 14:10:21','','','','0','Cash',0.00,'350','','','4','','1','2023-09-02 11:10:29','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-496.00','-497','Inclusive','branch','Inventory','','','','',''),('616936674302763332',4027,'61693667429','15','1.00','200','retail','0','2023-09-02 18:10:29','','','','0','Cash',0.00,'200','','','6','','1','2023-09-02 15:10:37','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-24.00','-25','Inclusive','branch','Inventory','','','','',''),('616936747819210932',4028,'61693674780','21','1.00','200','retail','0','2023-09-02 20:13:00','','','','0','Cash',0.00,'200','','','6','','1','2023-09-02 17:13:04','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-476.00','-477','Inclusive','branch','Inventory','','','','',''),('616936753375926564',4029,'61693675337','7','1.00','200','retail','0','2023-09-02 20:22:17','','','','0','Cash',0.00,'200','','','6','','1','2023-09-02 17:22:25','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-198.00','-199','Inclusive','branch','Inventory','','','','',''),('616936753423022343',4030,'61693675337','24','1.00','100','retail','0','2023-09-02 20:22:22','','','','0','Cash',0.00,'100','','','6','','1','2023-09-02 17:22:25','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-33.00','-34','Inclusive','branch','Inventory','','','','',''),('616936771430202033',4031,'61693677142','38','1.00','350','retail','0','2023-09-02 20:52:22','','','','0','Cash',0.00,'350','','','6','','1','2023-09-02 17:52:29','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-497.00','-498','Inclusive','branch','Inventory','','','','',''),('416937614680202033',4032,'41693761467','38','1.00','350','retail','0','2023-09-03 20:17:47','','','','0','Cash',0.00,'350','','','4','','1','2023-09-03 17:17:51','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-498.00','-499','Inclusive','branch','Inventory','','','','',''),('416937632530202033',4033,'41693763252','21','1.00','200','retail','0','2023-09-03 20:47:32','','','','0','Cash',0.00,'200','','','4','','1','2023-09-03 17:47:35','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-477.00','-478','Inclusive','branch','Inventory','','','','',''),('416937637582304336',4034,'41693763757','3','1.00','200','retail','0','2023-09-03 20:55:57','','','','0','Cash',0.00,'200','','','4','','1','2023-09-03 17:56:00','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-129.00','-130','Inclusive','branch','Inventory','','','','',''),('416938154600401396',4035,'41693815459','11','1.00','280','retail','0','2023-09-04 11:17:39','','','','0','Cash',0.00,'280','','','4','','1','2023-09-04 08:17:43','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-65.00','-66','Inclusive','branch','Inventory','','','','',''),('416938345600202033',4036,'41693834559','1','1.00','280','retail','0','2023-09-04 16:35:59','','','','0','Cash',0.00,'280','','','4','','1','2023-09-04 13:36:03','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-289.00','-290','Inclusive','branch','Inventory','','','','',''),('616938419211928164',4037,'61693841920','17','1.00','200','retail','0','2023-09-04 18:38:40','','','','0','Cash',0.00,'200','','','6','','1','2023-09-04 15:38:44','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-65.00','-66','Inclusive','branch','Inventory','','','','',''),('616938454223022324',4038,'61693845422','11','1.00','280','retail','0','2023-09-04 19:37:02','','','','0','Cash',0.00,'280','','','6','','1','2023-09-04 16:37:06','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-66.00','-67','Inclusive','branch','Inventory','','','','',''),('616938490800202033',4039,'61693849080','38','1.00','350','retail','0','2023-09-04 20:38:00','','','','0','Cash',0.00,'350','','','6','','1','2023-09-04 17:38:03','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-499.00','-500','Inclusive','branch','Inventory','','','','',''),('616938532342222032',4040,'61693853233','21','1.00','200','retail','0','2023-09-04 21:47:13','','','','0','Cash',0.00,'200','','','6','','1','2023-09-04 18:47:16','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-478.00','-479','Inclusive','branch','Inventory','','','','',''),('616938989703421300',4041,'61693898969','21','1.00','200','retail','0','2023-09-05 10:29:29','','','','0','Cash',0.00,'200','','','6','','1','2023-09-05 07:29:33','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-479.00','-480','Inclusive','branch','Inventory','','','','',''),('616938989792222032',4042,'61693898979','21','1.00','200','retail','0','2023-09-05 10:29:39','','','','0','Cash',0.00,'200','','','6','','1','2023-09-05 07:29:41','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-480.00','-481','Inclusive','branch','Inventory','','','','',''),('416939262573022352',4043,'41693926256','4','1.00','150','retail','0','2023-09-05 18:04:16','','','','0','Cash',0.00,'150','','','4','','1','2023-09-05 15:04:29','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-48.00','-49','Inclusive','branch','Inventory','','','','',''),('416939262626929644',4044,'41693926256','4','1.00','150','retail','0','2023-09-05 18:04:21','','','','0','Cash',0.00,'150','','','4','','1','2023-09-05 15:04:29','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-49.00','-50','Inclusive','branch','Inventory','','','','',''),('416939262646929644',4045,'41693926256','4','1.00','150','retail','0','2023-09-05 18:04:24','','','','0','Cash',0.00,'150','','','4','','1','2023-09-05 15:04:29','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-50.00','-51','Inclusive','branch','Inventory','','','','',''),('416939290229929944',4046,'41693929021','22','1.00','250','retail','0','2023-09-05 18:50:22','','','','0','Cash',0.00,'250','','','4','','1','2023-09-05 15:50:24','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-50.00','-51','Inclusive','branch','Inventory','','','','',''),('416939361171093903',4047,'41693936116','22','1.00','250','retail','0','2023-09-05 20:48:36','','','','0','Cash',0.00,'250','','','4','','1','2023-09-05 17:48:40','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-51.00','-52','Inclusive','branch','Inventory','','','','',''),('416939377989280932',4048,'41693937798','11','1.00','280','retail','0','2023-09-05 21:16:38','','','','0','Cash',0.00,'280','','','4','','1','2023-09-05 18:17:08','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-67.00','-68','Inclusive','branch','Inventory','','','','',''),('416939378209200932',4049,'41693937798','23','1.00','250','retail','0','2023-09-05 21:16:59','','','','0','Cash',0.00,'250','','','4','','1','2023-09-05 18:17:08','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-177.00','-178','Inclusive','branch','Inventory','','','','',''),('416939378433022348',4050,'41693937843','5','1.00','300','retail','0','2023-09-05 21:17:23','','','','0','Cash',0.00,'300','','','4','','1','2023-09-05 18:17:25','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-115.00','-116','Inclusive','branch','Inventory','','','','',''),('416939379162222032',4051,'41693937916','21','1.00','200','retail','0','2023-09-05 21:18:36','','','','0','Cash',0.00,'200','','','4','','1','2023-09-05 18:18:39','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-481.00','-482','Inclusive','branch','Inventory','','','','',''),('416939380060233023',4052,'41693938005','20','1.00','200','retail','0','2023-09-05 21:20:05','','','','0','Cash',0.00,'200','','','4','','1','2023-09-05 18:20:10','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-197.00','-198','Inclusive','branch','Inventory','','','','',''),('616940163290202034',4053,'61694016328','3','1.00','200','retail','0','2023-09-06 19:05:28','','','','0','Cash',0.00,'200','','','6','','1','2023-09-06 16:05:37','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-130.00','-131','Inclusive','branch','Inventory','','','','',''),('616940163359250932',4054,'61694016328','26','1.00','100','retail','0','2023-09-06 19:05:34','','','','0','Cash',0.00,'100','','','6','','1','2023-09-06 16:05:37','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-34.00','-35','Inclusive','branch','Inventory','','','','',''),('616940163480202034',4055,'61694016347','21','1.00','200','retail','0','2023-09-06 19:05:47','','','','0','Cash',0.00,'200','','','6','','1','2023-09-06 16:05:50','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-482.00','-483','Inclusive','branch','Inventory','','','','',''),('616940201960920064',4056,'61694020196','1','1.00','280','retail','0','2023-09-06 20:09:56','','','','0','Cash',0.00,'280','','','6','','1','2023-09-06 17:09:58','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-290.00','-291','Inclusive','branch','Inventory','','','','',''),('616940223579270932',4057,'61694022356','17','1.00','200','retail','0','2023-09-06 20:45:56','','','','0','Cash',0.00,'200','','','6','','1','2023-09-06 17:45:58','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-66.00','-67','Inclusive','branch','Inventory','','','','',''),('616940223752920264',4058,'61694022374','21','1.00','200','retail','0','2023-09-06 20:46:14','','','','0','Cash',0.00,'200','','','6','','1','2023-09-06 17:46:17','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-483.00','-484','Inclusive','branch','Inventory','','','','',''),('616940707812222032',4059,'61694070780','7','1.00','200','retail','0','2023-09-07 10:13:00','','','','0','Cash',0.00,'200','','','6','','1','2023-09-07 07:13:04','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-199.00','-200','Inclusive','branch','Inventory','','','','',''),('616940761292222032',4060,'61694076128','21','1.00','200','retail','0','2023-09-07 11:42:08','','','','0','Cash',0.00,'200','','','6','','1','2023-09-07 08:42:12','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-484.00','-485','Inclusive','branch','Inventory','','','','',''),('616940872884282432',4061,'61694087288','38','1.00','350','retail','0','2023-09-07 14:48:08','','','','0','Cash',0.00,'350','','','6','','1','2023-09-07 11:48:11','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-500.00','-501','Inclusive','branch','Inventory','','','','',''),('616940912113022312',4062,'61694091210','11','1.00','280','retail','0','2023-09-07 15:53:30','','','','0','Cash',0.00,'280','','','6','','1','2023-09-07 12:53:39','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-68.00','-69','Inclusive','branch','Inventory','','','','',''),('416940916101920144',4063,'41694091609','17','1.00','200','retail','0','2023-09-07 16:00:09','','','','0','Cash',0.00,'200','','','4','','1','2023-09-07 13:00:13','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-67.00','-68','Inclusive','branch','Inventory','','','','',''),('416940917412164342',4064,'41694091741','58','1.00','30','retail','0','2023-09-07 16:02:21','','','','15','Cash',0.00,'30','','','4','','1','2023-09-07 13:02:24','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','55.00','54','Inclusive','branch','Service','1110','4000','5500','',''),('416940951265920544',4065,'41694095126','1','1.00','280','retail','0','2023-09-07 16:58:46','','','','0','Cash',0.00,'280','','','4','','1','2023-09-07 13:58:49','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-291.00','-292','Inclusive','branch','Inventory','','','','',''),('616940958502565342',4066,'61694095849','20','1.00','200','retail','0','2023-09-07 17:10:49','','','','0','Cash',0.00,'200','','','6','','1','2023-09-07 14:10:51','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-198.00','-199','Inclusive','branch','Inventory','','','','',''),('416940967422222032',4067,'41694096741','52','1.00','150','retail','0','2023-09-07 17:25:41','','','','200','Cash',0.00,'150','','','4','','1','2023-09-07 14:25:46','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416941023202222032',4068,'41694102320','20','1.00','200','retail','0','2023-09-07 18:58:40','','','','0','Cash',0.00,'200','','','4','','1','2023-09-07 15:58:46','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-199.00','-200','Inclusive','branch','Inventory','','','','',''),('416941023392222032',4069,'41694102338','21','1.00','200','retail','0','2023-09-07 18:58:58','','','','0','Cash',0.00,'200','','','4','','1','2023-09-07 15:59:02','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-485.00','-486','Inclusive','branch','Inventory','','','','',''),('416941049093421300',4070,'41694104908','21','1.00','200','retail','0','2023-09-07 19:41:48','','','','0','Cash',0.00,'200','','','4','','1','2023-09-07 16:41:53','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-486.00','-487','Inclusive','branch','Inventory','','','','',''),('416941062162661342',4071,'41694106216','15','1.00','200','retail','0','2023-09-07 20:03:36','','','','0','Cash',0.00,'200','','','4','','1','2023-09-07 17:03:51','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-25.00','-26','Inclusive','branch','Inventory','','','','',''),('416941062246921644',4072,'41694106216','1','1.00','280','retail','0','2023-09-07 20:03:43','','','','0','Cash',0.00,'280','','','4','','1','2023-09-07 17:03:51','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-292.00','-293','Inclusive','branch','Inventory','','','','',''),('416941072352333320',4073,'41694107234','58','1.00','30','retail','0','2023-09-07 20:20:34','','','','15','Cash',0.00,'30','','','4','','1','2023-09-07 17:20:38','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','55.00','54','Inclusive','branch','Service','1110','4000','5500','',''),('416941084862868342',4074,'41694108486','1','1.00','280','retail','0','2023-09-07 20:41:26','','','','0','Cash',0.00,'280','','','4','','1','2023-09-07 17:41:34','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-293.00','-294','Inclusive','branch','Inventory','','','','',''),('416941084928921844',4075,'41694108486','20','1.00','200','retail','0','2023-09-07 20:41:31','','','','0','Cash',0.00,'200','','','4','','1','2023-09-07 17:41:34','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-200.00','-201','Inclusive','branch','Inventory','','','','',''),('416941106560921044',4076,'41694110655','3','1.00','200','retail','0','2023-09-07 21:17:35','','','','0','Cash',0.00,'200','','','4','','1','2023-09-07 18:17:43','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-131.00','-132','Inclusive','branch','Inventory','','','','',''),('416941106592222032',4077,'41694110655','3','1.00','200','retail','0','2023-09-07 21:17:38','','','','0','Cash',0.00,'200','','','4','','1','2023-09-07 18:17:43','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-132.00','-133','Inclusive','branch','Inventory','','','','',''),('416941126384212432',4078,'41694112638','8','1.00','150','retail','0','2023-09-07 21:50:38','','','','0','Cash',0.00,'150','','','4','','1','2023-09-07 18:50:42','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-84.00','-85','Inclusive','branch','Inventory','','','','',''),('616941558193421300',4079,'61694155819','20','1.00','200','retail','0','2023-09-08 09:50:19','','','','0','Cash',0.00,'200','','','6','','1','2023-09-08 06:50:22','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-201.00','-202','Inclusive','branch','Inventory','','','','',''),('616941645004262432',4080,'61694164499','11','1.00','280','retail','0','2023-09-08 12:14:59','','','','0','Cash',0.00,'280','','','6','','1','2023-09-08 09:15:02','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-69.00','-70','Inclusive','branch','Inventory','','','','',''),('616941676934262432',4081,'61694167692','12','1.00','250','retail','0','2023-09-08 13:08:12','','','','0','Cash',0.00,'250','','','6','','1','2023-09-08 10:08:18','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-91.00','-92','Inclusive','branch','Inventory','','','','',''),('616941676950202034',4082,'61694167692','12','1.00','250','retail','0','2023-09-08 13:08:15','','','','0','Cash',0.00,'250','','','6','','1','2023-09-08 10:08:18','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-92.00','-93','Inclusive','branch','Inventory','','','','',''),('616941732219210932',4083,'61694173219','21','1.00','200','retail','0','2023-09-08 14:40:19','','','','0','Cash',0.00,'200','','','6','','1','2023-09-08 11:40:23','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-487.00','-488','Inclusive','branch','Inventory','','','','',''),('616941732323421300',4084,'61694173231','21','1.00','200','retail','0','2023-09-08 14:40:31','','','','0','Cash',0.00,'200','','','6','','1','2023-09-08 11:40:35','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-488.00','-489','Inclusive','branch','Inventory','','','','',''),('616941759829220932',4085,'61694175981','7','1.00','200','retail','0','2023-09-08 15:26:21','','','','0','Cash',0.00,'200','','','6','','1','2023-09-08 12:26:33','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-200.00','-201','Inclusive','branch','Inventory','','','','',''),('616941759912222032',4086,'61694175981','26','1.00','100','retail','0','2023-09-08 15:26:30','','','','0','Cash',0.00,'100','','','6','','1','2023-09-08 12:26:33','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-35.00','-36','Inclusive','branch','Inventory','','','','',''),('616941766673421300',4087,'61694176667','38','1.00','350','retail','0','2023-09-08 15:37:47','','','','0','Cash',0.00,'350','','','6','','1','2023-09-08 12:37:51','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-501.00','-502','Inclusive','branch','Inventory','','','','',''),('416941844454921444',4088,'41694184444','11','1.00','280','retail','0','2023-09-08 17:47:24','','','','0','Cash',0.00,'280','','','4','','1','2023-09-08 14:47:29','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-70.00','-71','Inclusive','branch','Inventory','','','','',''),('416941844460346242',4089,'41694184444','11','1.00','280','retail','0','2023-09-08 17:47:25','','','','0','Cash',0.00,'280','','','4','','1','2023-09-08 14:47:29','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-71.00','-72','Inclusive','branch','Inventory','','','','',''),('416941844914282432',4090,'41694184490','23','1.00','250','retail','0','2023-09-08 17:48:10','','','','0','Cash',0.00,'250','','','4','','1','2023-09-08 14:48:56','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-178.00','-179','Inclusive','branch','Inventory','','','','',''),('416941844993022394',4091,'41694184490','23','1.00','250','retail','0','2023-09-08 17:48:19','','','','0','Cash',0.00,'250','','','4','','1','2023-09-08 14:48:56','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-179.00','-180','Inclusive','branch','Inventory','','','','',''),('416941845870202034',4092,'41694184587','21','1.00','200','retail','0','2023-09-08 17:49:47','','','','0','Cash',0.00,'200','','','4','','1','2023-09-08 14:49:50','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-489.00','-490','Inclusive','branch','Inventory','','','','',''),('416941846233022326',4093,'41694184623','38','1.00','350','retail','0','2023-09-08 17:50:23','','','','0','Cash',0.00,'350','','','4','','1','2023-09-08 14:50:29','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-502.00','-503','Inclusive','branch','Inventory','','','','',''),('416941846419210932',4094,'41694184641','1','1.00','280','retail','0','2023-09-08 17:50:41','','','','0','Cash',0.00,'280','','','4','','1','2023-09-08 14:50:45','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-294.00','-295','Inclusive','branch','Inventory','','','','',''),('416941886524644432',4095,'41694188651','20','1.00','200','retail','0','2023-09-08 18:57:31','','','','0','Cash',0.00,'200','','','4','','1','2023-09-08 15:57:36','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-202.00','-203','Inclusive','branch','Inventory','','','','',''),('416941903273022323',4096,'41694190327','40','1.00','600','retail','0','2023-09-08 19:25:27','','','','0','Cash',0.00,'600','','','4','','1','2023-09-08 16:25:45','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-35.00','-36','Inclusive','branch','Inventory','','','','',''),('416941936072360342',4097,'41694193606','1','1.00','280','retail','0','2023-09-08 20:20:06','','','','0','Cash',0.00,'280','','','4','','1','2023-09-08 17:20:12','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-295.00','-296','Inclusive','branch','Inventory','','','','',''),('416941936083022306',4098,'41694193606','1','1.00','280','retail','0','2023-09-08 20:20:08','','','','0','Cash',0.00,'280','','','4','','1','2023-09-08 17:20:12','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-296.00','-297','Inclusive','branch','Inventory','','','','',''),('416941936223022326',4099,'41694193621','23','1.00','250','retail','0','2023-09-08 20:20:21','','','','0','Cash',0.00,'250','','','4','','1','2023-09-08 17:20:26','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-180.00','-181','Inclusive','branch','Inventory','','','','',''),('416941939270202034',4100,'41694193927','7','1.00','200','retail','0','2023-09-08 20:25:27','','','','0','Cash',0.00,'200','','','4','','1','2023-09-08 17:25:30','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-201.00','-202','Inclusive','branch','Inventory','','','','',''),('416941941724921444',4101,'41694194171','4','1.00','150','retail','0','2023-09-08 20:29:31','','','','0','Cash',0.00,'150','','','4','','1','2023-09-08 17:29:35','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-51.00','-52','Inclusive','branch','Inventory','','','','',''),('416941949964921444',4102,'41694194996','12','1.00','250','retail','0','2023-09-08 20:43:16','','','','0','Cash',0.00,'250','','','4','','1','2023-09-08 17:43:21','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-93.00','-94','Inclusive','branch','Inventory','','','','',''),('416941974117921744',4103,'41694197410','1','1.00','280','retail','0','2023-09-08 21:23:30','','','','0','Cash',0.00,'280','','','4','','1','2023-09-08 18:26:18','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-297.00','-298','Inclusive','branch','Inventory','','','','',''),('416941974383421300',4104,'41694197410','2','1.00','250','retail','0','2023-09-08 21:23:58','','','','0','Cash',0.00,'250','','','4','','1','2023-09-08 18:26:18','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-92.00','-93','Inclusive','branch','Inventory','','','','',''),('416942012660202034',4105,'41694201266','38','1.00','350','retail','0','2023-09-08 22:27:46','','','','0','Cash',0.00,'350','','','4','','1','2023-09-08 19:27:49','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-503.00','-504','Inclusive','branch','Inventory','','','','',''),('416942013022160342',4106,'41694201301','22','1.00','250','retail','0','2023-09-08 22:28:21','','','','0','Cash',0.00,'250','','','4','','1','2023-09-08 19:28:25','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-52.00','-53','Inclusive','branch','Inventory','','','','',''),('416942013569260932',4107,'41694201355','11','1.00','280','retail','0','2023-09-08 22:29:15','','','','0','Cash',0.00,'280','','','4','','1','2023-09-08 19:29:22','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-72.00','-73','Inclusive','branch','Inventory','','','','',''),('416942013699290932',4108,'41694201368','1','1.00','280','retail','0','2023-09-08 22:29:28','','','','0','Cash',0.00,'280','','','4','','1','2023-09-08 19:29:32','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-298.00','-299','Inclusive','branch','Inventory','','','','',''),('616942465743421300',4109,'61694246574','21','1.00','200','retail','0','2023-09-09 11:02:54','','','','0','Cash',0.00,'200','','','6','','1','2023-09-09 08:02:57','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-490.00','-491','Inclusive','branch','Inventory','','','','',''),('616942465852668342',4110,'61694246585','54','1.00','350','retail','0','2023-09-09 11:03:05','','','','200','Cash',0.00,'350','','','6','','1','2023-09-09 08:03:07','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Service','1110','4000','5500','',''),('616942525982922264',4111,'61694252597','21','1.00','200','retail','0','2023-09-09 12:43:17','','','','0','Cash',0.00,'200','','','6','','1','2023-09-09 09:43:20','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-491.00','-492','Inclusive','branch','Inventory','','','','',''),('616942532580202034',4112,'61694253258','23','1.00','250','retail','0','2023-09-09 12:54:18','','','','0','Cash',0.00,'250','','','6','','1','2023-09-09 09:54:23','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-181.00','-182','Inclusive','branch','Inventory','','','','',''),('616942532603922364',4113,'61694253258','23','1.00','250','retail','0','2023-09-09 12:54:20','','','','0','Cash',0.00,'250','','','6','','1','2023-09-09 09:54:23','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-182.00','-183','Inclusive','branch','Inventory','','','','',''),('616942590859250932',4114,'61694259084','40','1.00','600','retail','0','2023-09-09 14:31:24','','','','0','Cash',0.00,'600','','','6','','1','2023-09-09 11:31:26','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-36.00','-37','Inclusive','branch','Inventory','','','','',''),('616942590959250932',4115,'61694259095','11','1.00','280','retail','0','2023-09-09 14:31:35','','','','0','Cash',0.00,'280','','','6','','1','2023-09-09 11:31:37','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-73.00','-74','Inclusive','branch','Inventory','','','','',''),('616942622534262432',4116,'61694262252','1','1.00','280','retail','0','2023-09-09 15:24:12','','','','0','Cash',0.00,'280','','','6','','1','2023-09-09 12:24:15','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-299.00','-300','Inclusive','branch','Inventory','','','','',''),('616942622662922264',4117,'61694262265','20','1.00','200','retail','0','2023-09-09 15:24:25','','','','0','Cash',0.00,'200','','','6','','1','2023-09-09 12:24:46','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-203.00','-204','Inclusive','branch','Inventory','','','','',''),('616942622693022362',4118,'61694262265','17','1.00','200','retail','0','2023-09-09 15:24:28','','','','0','Cash',0.00,'200','','','6','','1','2023-09-09 12:24:46','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-68.00','-69','Inclusive','branch','Inventory','','','','',''),('616942622762222032',4119,'61694262265','47','1.00','200','retail','0','2023-09-09 15:24:35','','','','0','Cash',0.00,'200','','','6','','1','2023-09-09 12:24:46','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','14.00','13','Inclusive','branch','Inventory','','','','',''),('616942622822922264',4120,'61694262265','47','1.00','200','retail','0','2023-09-09 15:24:42','','','','0','Cash',0.00,'200','','','6','','1','2023-09-09 12:24:46','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','13.00','12','Inclusive','branch','Inventory','','','','',''),('416942646390202034',4121,'41694264638','16','1.00','200','retail','0','2023-09-09 16:03:58','','','','0','Cash',0.00,'200','','','4','','1','2023-09-09 13:04:09','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-32.00','-33','Inclusive','branch','Inventory','','','','',''),('416942646462222032',4122,'41694264638','11','1.00','280','retail','0','2023-09-09 16:04:05','','','','0','Cash',0.00,'280','','','4','','1','2023-09-09 13:04:09','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-74.00','-75','Inclusive','branch','Inventory','','','','',''),('616942660842668342',4123,'61694266083','38','1.00','350','retail','0','2023-09-09 16:28:03','','','','0','Cash',0.00,'350','','','6','','1','2023-09-09 13:28:07','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-504.00','-505','Inclusive','branch','Inventory','','','','',''),('416942662923421300',4124,'41694266292','38','1.00','350','retail','0','2023-09-09 16:31:32','','','','0','Cash',0.00,'350','','','4','','1','2023-09-09 13:31:42','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-505.00','-506','Inclusive','branch','Inventory','','','','',''),('616942673282762342',4125,'61694267327','22','1.00','250','retail','0','2023-09-09 16:48:47','','','','0','Cash',0.00,'250','','','6','','1','2023-09-09 13:48:52','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-53.00','-54','Inclusive','branch','Inventory','','','','',''),('616942673303022333',4126,'61694267327','52','1.00','150','retail','0','2023-09-09 16:48:49','','','','200','Cash',0.00,'150','','','6','','1','2023-09-09 13:48:52','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416942686870202034',4127,'41694268687','21','1.00','200','retail','0','2023-09-09 17:11:27','','','','0','Cash',0.00,'200','','','4','','1','2023-09-09 14:11:31','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-492.00','-493','Inclusive','branch','Inventory','','','','',''),('416942713183421300',4128,'41694271318','38','1.00','350','retail','0','2023-09-09 17:55:18','','','','0','Cash',0.00,'350','','','4','','1','2023-09-09 14:55:21','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-506.00','-507','Inclusive','branch','Inventory','','','','',''),('416942727413421300',4129,'41694272741','38','1.00','350','retail','0','2023-09-09 18:19:01','','','','0','Cash',0.00,'350','','','4','','1','2023-09-09 15:19:05','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-507.00','-508','Inclusive','branch','Inventory','','','','',''),('616942727812922264',4130,'61694272781','52','1.00','150','retail','0','2023-09-09 18:19:41','','','','200','Cash',0.00,'150','','','6','','1','2023-09-09 15:20:01','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('616942727992269342',4131,'61694272781','2','1.00','250','retail','0','2023-09-09 18:19:58','','','','0','Cash',0.00,'250','','','6','','1','2023-09-09 15:20:01','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-93.00','-94','Inclusive','branch','Inventory','','','','',''),('416942729492222032',4132,'41694272948','1','1.00','280','retail','0','2023-09-09 18:22:29','','','','0','Cash',0.00,'280','','','4','','1','2023-09-09 15:22:35','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-300.00','-301','Inclusive','branch','Inventory','','','','',''),('416942729523330232',4133,'41694272948','1','1.00','280','retail','0','2023-09-09 18:22:31','','','','0','Cash',0.00,'280','','','4','','1','2023-09-09 15:22:35','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-301.00','-302','Inclusive','branch','Inventory','','','','',''),('416942776623022366',4134,'41694277661','11','1.00','280','retail','0','2023-09-09 19:41:01','','','','0','Cash',0.00,'280','','','4','','1','2023-09-09 16:41:05','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-75.00','-76','Inclusive','branch','Inventory','','','','',''),('416942796839922944',4135,'41694279682','38','1.00','350','retail','0','2023-09-09 20:14:42','','','','0','Cash',0.00,'350','','','4','','1','2023-09-09 17:14:45','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-508.00','-509','Inclusive','branch','Inventory','','','','',''),('416942821012420302',4136,'41694282100','7','1.00','200','retail','0','2023-09-09 20:55:00','','','','0','Cash',0.00,'200','','','4','','1','2023-09-09 17:55:05','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-202.00','-203','Inclusive','branch','Inventory','','','','',''),('416942827863282223',4137,'41694282785','11','1.00','280','retail','0','2023-09-09 21:06:25','','','','0','Cash',0.00,'280','','','4','','1','2023-09-09 18:06:29','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-76.00','-77','Inclusive','branch','Inventory','','','','',''),('416942842214282432',4138,'41694284220','3','1.00','200','retail','0','2023-09-09 21:30:20','','','','0','Cash',0.00,'200','','','4','','1','2023-09-09 18:30:26','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-133.00','-134','Inclusive','branch','Inventory','','','','',''),('416942863992222032',4139,'41694286398','3','1.00','200','retail','0','2023-09-09 22:06:38','','','','0','Cash',0.00,'200','','','4','','1','2023-09-09 19:07:58','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-134.00','-135','Inclusive','branch','Inventory','','','','',''),('416942864020823022',4140,'41694286398','3','1.00','200','retail','0','2023-09-09 22:06:41','','','','0','Cash',0.00,'200','','','4','','1','2023-09-09 19:07:58','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-135.00','-136','Inclusive','branch','Inventory','','','','',''),('416943427972269342',4141,'41694342796','11','1.00','280','retail','0','2023-09-10 13:46:36','','','','0','Cash',0.00,'280','','','4','','1','2023-09-10 10:46:40','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-77.00','-78','Inclusive','branch','Inventory','','','','',''),('416943456472564342',4142,'41694345646','21','1.00','200','retail','0','2023-09-10 14:34:06','','','','0','Cash',0.00,'200','','','4','','1','2023-09-10 11:34:26','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-493.00','-494','Inclusive','branch','Inventory','','','','',''),('416943456524242432',4143,'41694345646','17','1.00','200','retail','0','2023-09-10 14:34:12','','','','0','Cash',0.00,'200','','','4','','1','2023-09-10 11:34:26','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-69.00','-70','Inclusive','branch','Inventory','','','','',''),('416943458729220932',4144,'41694345871','4','1.00','150','retail','0','2023-09-10 14:37:51','','','','0','Cash',0.00,'150','','','4','','1','2023-09-10 11:37:55','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-52.00','-53','Inclusive','branch','Inventory','','','','',''),('416943474139230932',4145,'41694347412','11','1.00','280','retail','0','2023-09-10 15:03:32','','','','0','Cash',0.00,'280','','','4','','1','2023-09-10 12:03:51','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-78.00','-79','Inclusive','branch','Inventory','','','','',''),('416943474207923744',4146,'41694347412','61','1.00','150','retail','0','2023-09-10 15:03:39','','','','100','Cash',0.00,'150','','','4','','1','2023-09-10 12:03:51','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Service','1110','4000','5500','',''),('416943616572035367',4147,'41694361656','38','1.00','350','retail','0','2023-09-10 19:00:56','','','','0','Cash',0.00,'350','','','4','','1','2023-09-10 16:01:04','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-509.00','-510','Inclusive','branch','Inventory','','','','',''),('416943616601923144',4148,'41694361656','38','1.00','350','retail','0','2023-09-10 19:01:00','','','','0','Cash',0.00,'350','','','4','','1','2023-09-10 16:01:04','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-510.00','-511','Inclusive','branch','Inventory','','','','',''),('416943655725923544',4149,'41694365571','3','1.00','200','retail','0','2023-09-10 20:06:11','','','','0','Cash',0.00,'200','','','4','','1','2023-09-10 17:06:14','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-136.00','-137','Inclusive','branch','Inventory','','','','',''),('416943675702767342',4150,'41694367569','42','1.00','600','retail','0','2023-09-10 20:39:29','','','','0','Cash',0.00,'600','','','4','','1','2023-09-10 18:32:06','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','22.00','21','Inclusive','branch','Inventory','','','','',''),('416943675734262432',4151,'41694367569','42','1.00','600','retail','0','2023-09-10 20:39:32','','','','0','Cash',0.00,'600','','','4','','1','2023-09-10 18:32:06','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','21.00','20','Inclusive','branch','Inventory','','','','',''),('416944273662766342',4152,'41694427365','54','1.00','350','retail','0','2023-09-11 13:16:05','','','','200','Cash',0.00,'350','','','4','','1','2023-09-11 10:41:19','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Service','1110','4000','5500','',''),('416944273707924744',4153,'41694427365','54','1.00','350','retail','0','2023-09-11 13:16:09','','','','200','Cash',0.00,'350','','','4','','1','2023-09-11 10:41:19','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Service','1110','4000','5500','',''),('416944410089280932',4154,'41694441007','3','1.00','200','retail','0','2023-09-11 17:03:27','','','','0','Cash',0.00,'200','','','4','','1','2023-09-11 14:03:31','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-137.00','-138','Inclusive','branch','Inventory','','','','',''),('416945218602166342',4155,'41694521860','3','1.00','200','retail','0','2023-09-12 15:31:00','','','','0','Cash',0.00,'200','','','4','','1','2023-09-12 12:31:03','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-138.00','-139','Inclusive','branch','Inventory','','','','',''),('616945305382063342',4156,'61694530537','21','1.00','200','retail','0','2023-09-12 17:55:37','','','','0','Cash',0.00,'200','','','6','','1','2023-09-12 14:55:39','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-494.00','-495','Inclusive','branch','Inventory','','','','',''),('616945305582065342',4157,'61694530557','52','1.00','150','retail','0','2023-09-12 17:55:57','','','','200','Cash',0.00,'150','','','6','','1','2023-09-12 14:56:01','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('616945316872327022',4158,'61694531686','1','1.00','280','retail','0','2023-09-12 18:14:46','','','','0','Cash',0.00,'280','','','6','','1','2023-09-12 15:14:49','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-302.00','-303','Inclusive','branch','Inventory','','','','',''),('616945335493022345',4159,'61694533549','52','1.00','150','retail','0','2023-09-12 18:45:49','','','','200','Cash',0.00,'150','','','6','','1','2023-09-12 15:45:51','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('616945335663022365',4160,'61694533566','52','1.00','150','retail','0','2023-09-12 18:46:06','','','','200','Cash',0.00,'150','','','6','','1','2023-09-12 15:46:10','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('616945335683421300',4161,'61694533566','21','1.00','200','retail','0','2023-09-12 18:46:08','','','','0','Cash',0.00,'200','','','6','','1','2023-09-12 15:46:10','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-495.00','-496','Inclusive','branch','Inventory','','','','',''),('616945372929153263',4163,'61694537291','52','1.00','150','retail','0','2023-09-12 19:48:11','','','','200','Cash',0.00,'150','','','6','','1','2023-09-12 17:36:56','','2','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('616945402063022302',4164,'61694537291','52','1.00','150','retail','0','2023-09-12 20:36:46','','','','200','Cash',0.00,'150','','','6','','1','2023-09-12 17:36:56','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('616945402123421300',4165,'61694537291','58','1.00','30','retail','0','2023-09-12 20:36:52','','','','15','Cash',0.00,'30','','','6','','1','2023-09-12 17:36:56','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','55.00','54','Inclusive','branch','Service','1110','4000','5500','',''),('616945421012925264',4166,'61694542100','21','1.00','200','retail','0','2023-09-12 21:08:20','','','','0','Cash',0.00,'200','','','6','','1','2023-09-12 18:08:23','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-496.00','-497','Inclusive','branch','Inventory','','','','',''),('616945421104242432',4167,'61694542109','20','1.00','200','retail','0','2023-09-12 21:08:29','','','','0','Cash',0.00,'200','','','6','','1','2023-09-12 18:08:32','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-204.00','-205','Inclusive','branch','Inventory','','','','',''),('616945428884033835',4168,'61694542887','4','1.00','150','retail','0','2023-09-12 21:21:27','','','','0','Cash',0.00,'150','','','6','','1','2023-09-12 18:21:30','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-53.00','-54','Inclusive','branch','Inventory','','','','',''),('616945433574242432',4169,'61694543356','20','1.00','200','retail','0','2023-09-12 21:29:16','','','','0','Cash',0.00,'200','','','6','','1','2023-09-12 18:29:18','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-205.00','-206','Inclusive','branch','Inventory','','','','',''),('616945440643421300',4170,'61694544064','52','1.00','150','retail','0','2023-09-12 21:41:04','','','','200','Cash',0.00,'150','','','6','','1','2023-09-12 18:41:06','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('616945963763707222',4171,'61694596375','30','1.00','330','retail','0','2023-09-13 12:12:55','','','','0','Cash',0.00,'330','','','6','','1','2023-09-13 09:13:04','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-14.00','-15','Inclusive','branch','Inventory','','','','',''),('616945963826925664',4172,'61694596375','24','1.00','100','retail','0','2023-09-13 12:13:01','','','','0','Cash',0.00,'100','','','6','','1','2023-09-13 09:13:04','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-34.00','-35','Inclusive','branch','Inventory','','','','',''),('616945964270202034',4173,'61694596427','21','1.00','200','retail','0','2023-09-13 12:13:47','','','','0','Cash',0.00,'200','','','6','','1','2023-09-13 09:13:49','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-497.00','-498','Inclusive','branch','Inventory','','','','',''),('616945973144292432',4174,'61694597313','12','1.00','250','retail','0','2023-09-13 12:28:33','','','','0','Cash',0.00,'250','','','6','','1','2023-09-13 09:28:36','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-94.00','-95','Inclusive','branch','Inventory','','','','',''),('616945988488925864',4175,'61694598848','9','1.00','200','retail','0','2023-09-13 12:54:08','','','','0','Cash',0.00,'200','','','6','','1','2023-09-13 09:54:23','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-9.00','-10','Inclusive','branch','Inventory','','','','',''),('616945988514292432',4176,'61694598848','9','1.00','200','retail','0','2023-09-13 12:54:10','','','','0','Cash',0.00,'200','','','6','','1','2023-09-13 09:54:23','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-10.00','-11','Inclusive','branch','Inventory','','','','',''),('616945988583421300',4177,'61694598848','26','1.00','100','retail','0','2023-09-13 12:54:17','','','','0','Cash',0.00,'100','','','6','','1','2023-09-13 09:54:23','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-36.00','-37','Inclusive','branch','Inventory','','','','',''),('616945988598925864',4178,'61694598848','26','1.00','100','retail','0','2023-09-13 12:54:18','','','','0','Cash',0.00,'100','','','6','','1','2023-09-13 09:54:23','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-37.00','-38','Inclusive','branch','Inventory','','','','',''),('616946195019926964',4179,'61694619501','17','1.00','200','retail','0','2023-09-13 18:38:21','','','','0','Cash',0.00,'200','','','6','','1','2023-09-13 15:38:43','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-70.00','-71','Inclusive','branch','Inventory','','','','',''),('616946195053421300',4180,'61694619501','17','1.00','200','retail','0','2023-09-13 18:38:24','','','','0','Cash',0.00,'200','','','6','','1','2023-09-13 15:38:43','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-71.00','-72','Inclusive','branch','Inventory','','','','',''),('616946195112961342',4181,'61694619501','58','1.00','30','retail','0','2023-09-13 18:38:30','','','','15','Cash',0.00,'30','','','6','','1','2023-09-13 15:38:43','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','55.00','54','Inclusive','branch','Service','1110','4000','5500','',''),('616946195172222032',4182,'61694619501','58','1.00','30','retail','0','2023-09-13 18:38:36','','','','15','Cash',0.00,'30','','','6','','1','2023-09-13 15:38:43','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','55.00','54','Inclusive','branch','Service','1110','4000','5500','',''),('616946195344212432',4183,'61694619533','21','1.00','200','retail','0','2023-09-13 18:38:53','','','','0','Cash',0.00,'200','','','6','','1','2023-09-13 15:38:56','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-498.00','-499','Inclusive','branch','Inventory','','','','',''),('616946238003421300',4184,'61694623799','38','1.00','350','retail','0','2023-09-13 19:49:59','','','','0','Cash',0.00,'350','','','6','','1','2023-09-13 16:50:02','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-511.00','-512','Inclusive','branch','Inventory','','','','',''),('616946274843421300',4185,'61694627484','9','1.00','200','retail','0','2023-09-13 20:51:24','','','','0','Cash',0.00,'200','','','6','','1','2023-09-13 17:51:26','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-11.00','-12','Inclusive','branch','Inventory','','','','',''),('616946275043421300',4186,'61694627504','11','1.00','280','retail','0','2023-09-13 20:51:44','','','','0','Cash',0.00,'280','','','6','','1','2023-09-13 17:51:49','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-79.00','-80','Inclusive','branch','Inventory','','','','',''),('616946275952222032',4187,'61694627595','20','1.00','200','retail','0','2023-09-13 20:53:15','','','','0','Cash',0.00,'200','','','6','','1','2023-09-13 17:53:18','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-206.00','-207','Inclusive','branch','Inventory','','','','',''),('616946787989280932',4188,'61694678798','21','1.00','200','retail','0','2023-09-14 11:06:38','','','','0','Cash',0.00,'200','','','6','','1','2023-09-14 08:06:40','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-499.00','-500','Inclusive','branch','Inventory','','','','',''),('616946842693022362',4189,'61694684269','3','1.00','200','retail','0','2023-09-14 12:37:49','','','','0','Cash',0.00,'200','','','6','','1','2023-09-14 09:37:52','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-139.00','-140','Inclusive','branch','Inventory','','','','',''),('616946869432222032',4190,'61694686943','5','1.00','300','retail','0','2023-09-14 13:22:23','','','','0','Cash',0.00,'300','','','6','','1','2023-09-14 10:22:25','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-116.00','-117','Inclusive','branch','Inventory','','','','',''),('416947133062222032',4191,'41694713305','44','1.00','500','retail','0','2023-09-14 20:41:45','','','','0','Cash',0.00,'500','','','4','','1','2023-09-14 17:42:02','','9','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','20.00','19','Inclusive','branch','Inventory','','','','',''),('416947133194212432',4192,'41694713305','29','1.00','300','retail','0','2023-09-14 20:41:58','','','','0','Cash',0.00,'300','','','4','','1','2023-09-14 17:42:02','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-33.00','-34','Inclusive','branch','Inventory','','','','',''),('416947182609200932',4193,'41694718259','3','1.00','200','retail','0','2023-09-14 22:04:19','','','','0','Cash',0.00,'200','','','4','','1','2023-09-14 19:04:39','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-140.00','-141','Inclusive','branch','Inventory','','','','',''),('416947182703330232',4194,'41694718259','21','1.00','200','retail','0','2023-09-14 22:04:29','','','','0','Cash',0.00,'200','','','4','','1','2023-09-14 19:04:39','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-500.00','-501','Inclusive','branch','Inventory','','','','',''),('416947723434272432',4195,'41694772343','38','1.00','350','retail','0','2023-09-15 13:05:43','','','','0','Cash',0.00,'350','','','4','','1','2023-09-15 10:05:47','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-512.00','-513','Inclusive','branch','Inventory','','','','',''),('616947911479270932',4196,'61694791146','55','1.00','200','retail','0','2023-09-15 18:19:06','','','','150','Cash',0.00,'200','','','6','','1','2023-09-15 15:19:09','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','288.00','287','Inclusive','branch','Inventory','1110','4000','5500','',''),('616947911642222032',4197,'61694791163','38','1.00','350','retail','0','2023-09-15 18:19:23','','','','0','Cash',0.00,'350','','','6','','1','2023-09-15 15:19:27','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-513.00','-514','Inclusive','branch','Inventory','','','','',''),('616947968010202034',4198,'61694796801','21','1.00','200','retail','0','2023-09-15 19:53:21','','','','0','Cash',0.00,'200','','','6','','1','2023-09-15 16:53:26','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-501.00','-502','Inclusive','branch','Inventory','','','','',''),('616947968044292432',4199,'61694796801','21','1.00','200','retail','0','2023-09-15 19:53:23','','','','0','Cash',0.00,'200','','','6','','1','2023-09-15 16:53:26','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-502.00','-503','Inclusive','branch','Inventory','','','','',''),('616948034149240932',4200,'61694803413','54','1.00','350','retail','0','2023-09-15 21:43:33','','','','200','Cash',0.00,'350','','','6','','1','2023-09-15 18:43:36','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Service','1110','4000','5500','',''),('616948038874202432',4201,'61694803886','38','1.00','350','retail','0','2023-09-15 21:51:26','','','','0','Cash',0.00,'350','','','6','','1','2023-09-15 18:51:29','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-514.00','-515','Inclusive','branch','Inventory','','','','',''),('616948058433400394',4202,'61694805842','9','1.00','200','retail','0','2023-09-15 22:24:02','','','','0','Cash',0.00,'200','','','6','','1','2023-09-15 19:24:06','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-12.00','-13','Inclusive','branch','Inventory','','','','',''),('616948083882222032',4203,'61694808388','3','1.00','200','retail','0','2023-09-15 23:06:28','','','','0','Cash',0.00,'200','','','6','','1','2023-09-15 20:06:31','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-141.00','-142','Inclusive','branch','Inventory','','','','',''),('616948084750202034',4204,'61694808475','21','1.00','200','retail','0','2023-09-15 23:07:55','','','','0','Cash',0.00,'200','','','6','','1','2023-09-15 20:07:57','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-503.00','-504','Inclusive','branch','Inventory','','','','',''),('616948085228928864',4205,'61694808522','1','1.00','280','retail','0','2023-09-15 23:08:42','','','','0','Cash',0.00,'280','','','6','','1','2023-09-15 20:08:46','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-303.00','-304','Inclusive','branch','Inventory','','','','',''),('616948085232862342',4206,'61694808522','1','1.00','280','retail','0','2023-09-15 23:08:43','','','','0','Cash',0.00,'280','','','6','','1','2023-09-15 20:08:46','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-304.00','-305','Inclusive','branch','Inventory','','','','',''),('616948090189928964',4207,'61694809017','12','1.00','250','retail','0','2023-09-15 23:16:57','','','','0','Cash',0.00,'250','','','6','','1','2023-09-15 20:17:00','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-95.00','-96','Inclusive','branch','Inventory','','','','',''),('416948504173421300',4208,'41694850414','20','1.00','200','retail','0','2023-09-16 10:46:57','','','','0','Cash',0.00,'200','','','4','','1','2023-09-16 07:47:08','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-209.00','-210','Inclusive','branch','Inventory','','','','',''),('416948539732367342',4209,'41694853972','21','1.00','200','retail','0','2023-09-16 11:46:12','','','','0','Cash',0.00,'200','','','4','','1','2023-09-16 08:46:27','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-504.00','-505','Inclusive','branch','Inventory','','','','',''),('416948550932222032',4210,'41694855093','4','1.00','150','retail','0','2023-09-16 12:04:53','','','','0','Cash',0.00,'150','','','4','','1','2023-09-16 09:04:59','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-54.00','-55','Inclusive','branch','Inventory','','','','',''),('416948551195928544',4211,'41694855118','4','1.00','150','retail','0','2023-09-16 12:05:18','','','','0','Cash',0.00,'150','','','4','','1','2023-09-16 09:05:25','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-55.00','-56','Inclusive','branch','Inventory','','','','',''),('416948726232262342',4212,'41694872622','1','1.00','280','retail','0','2023-09-16 16:57:02','','','','0','Cash',0.00,'280','','','4','','1','2023-09-16 13:57:09','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-305.00','-306','Inclusive','branch','Inventory','','','','',''),('616948775107928764',4213,'61694877510','17','1.00','200','retail','0','2023-09-16 18:18:30','','','','0','Cash',0.00,'200','','','6','','1','2023-09-16 15:18:32','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-72.00','-73','Inclusive','branch','Inventory','','','','',''),('616948775209200932',4214,'61694877519','17','1.00','200','retail','0','2023-09-16 18:18:39','','','','0','Cash',0.00,'200','','','6','','1','2023-09-16 15:18:42','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-73.00','-74','Inclusive','branch','Inventory','','','','',''),('616948775363022335',4215,'61694877535','3','1.00','200','retail','0','2023-09-16 18:18:55','','','','0','Cash',0.00,'200','','','6','','1','2023-09-16 15:18:59','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-142.00','-143','Inclusive','branch','Inventory','','','','',''),('616948824322263342',4216,'61694882431','52','1.00','150','retail','0','2023-09-16 19:40:31','','','','200','Cash',0.00,'150','','','6','','1','2023-09-16 16:40:34','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('616948869113421300',4218,'61694886911','17','1.00','200','retail','0','2023-09-16 20:55:11','','','','0','Cash',0.00,'200','','','6','','1','2023-09-16 17:55:17','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-74.00','-75','Inclusive','branch','Inventory','','','','',''),('616948869140202034',4219,'61694886911','17','1.00','200','retail','0','2023-09-16 20:55:13','','','','0','Cash',0.00,'200','','','6','','1','2023-09-16 17:55:17','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-75.00','-76','Inclusive','branch','Inventory','','','','',''),('616948869852222032',4220,'61694886985','1','1.00','280','retail','0','2023-09-16 20:56:25','','','','0','Cash',0.00,'280','','','6','','1','2023-09-16 17:56:40','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-306.00','-307','Inclusive','branch','Inventory','','','','',''),('616948869873022389',4221,'61694886985','1','1.00','280','retail','0','2023-09-16 20:56:26','','','','0','Cash',0.00,'280','','','6','','1','2023-09-16 17:56:40','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-307.00','-308','Inclusive','branch','Inventory','','','','',''),('616948869940202034',4222,'61694886985','26','1.00','100','retail','0','2023-09-16 20:56:34','','','','0','Cash',0.00,'100','','','6','','1','2023-09-16 17:56:40','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-38.00','-39','Inclusive','branch','Inventory','','','','',''),('616948869969260932',4223,'61694886985','26','1.00','100','retail','0','2023-09-16 20:56:35','','','','0','Cash',0.00,'100','','','6','','1','2023-09-16 17:56:40','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-39.00','-40','Inclusive','branch','Inventory','','','','',''),('616948886900202034',4224,'61694888689','16','1.00','200','retail','0','2023-09-16 21:24:49','','','','0','Cash',0.00,'200','','','6','','1','2023-09-16 18:24:54','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-33.00','-34','Inclusive','branch','Inventory','','','','',''),('616948846543421300',4225,'61694884653','38','1.00','350','retail','0','2023-09-16 20:17:33','','','','0','Cash',0.00,'350','','','6','','1','2023-09-16 18:25:15','','7','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-515.00','-516','Inclusive','branch','Inventory','','','','',''),('616948887129220932',4226,'61694884653','38','1.00','350','retail','0','2023-09-16 21:25:11','','','','0','Cash',0.00,'350','','','6','','1','2023-09-16 18:25:15','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-516.00','-517','Inclusive','branch','Inventory','','','','',''),('616948896529928964',4227,'61694889651','3','1.00','200','retail','0','2023-09-16 21:40:51','','','','0','Cash',0.00,'200','','','6','','1','2023-09-16 18:40:54','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-143.00','-144','Inclusive','branch','Inventory','','','','',''),('616948907902069342',4228,'61694890790','54','1.00','350','retail','0','2023-09-16 21:59:50','','','','200','Cash',0.00,'350','','','6','','1','2023-09-16 19:00:07','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Service','1110','4000','5500','',''),('616948918551928164',4229,'61694891855','1','1.00','280','retail','0','2023-09-16 22:17:35','','','','0','Cash',0.00,'280','','','6','','1','2023-09-16 19:17:47','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-308.00','-309','Inclusive','branch','Inventory','','','','',''),('616948918573022358',4230,'61694891855','11','1.00','280','retail','0','2023-09-16 22:17:36','','','','0','Cash',0.00,'280','','','6','','1','2023-09-16 19:17:47','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-80.00','-81','Inclusive','branch','Inventory','','','','',''),('616948918619210932',4231,'61694891855','25','1.00','100','retail','0','2023-09-16 22:17:41','','','','0','Cash',0.00,'100','','','6','','1','2023-09-16 19:17:47','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','0.00','-1','Inclusive','branch','Inventory','','','','',''),('616948947044292432',4232,'61694894704','21','1.00','200','retail','0','2023-09-16 23:05:04','','','','0','Cash',0.00,'200','','','6','','1','2023-09-16 20:05:08','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-505.00','-506','Inclusive','branch','Inventory','','','','',''),('616948947503421300',4233,'61694894750','20','1.00','200','retail','0','2023-09-16 23:05:50','','','','0','Cash',0.00,'200','','','6','','1','2023-09-16 20:05:52','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-208.00','-209','Inclusive','branch','Inventory','','','','',''),('416949373587929744',4234,'41694937358','52','1.00','150','retail','0','2023-09-17 10:55:58','','','','200','Cash',0.00,'150','','','4','','1','2023-09-17 07:56:01','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416949375872768342',4235,'41694937586','3','1.00','200','retail','0','2023-09-17 10:59:46','','','','0','Cash',0.00,'200','','','4','','1','2023-09-17 07:59:50','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-144.00','-145','Inclusive','branch','Inventory','','','','',''),('616949637762222032',4236,'61694963776','7','1.00','200','retail','0','2023-09-17 18:16:16','','','','0','Cash',0.00,'200','','','6','','1','2023-09-17 15:17:12','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-203.00','-204','Inclusive','branch','Inventory','','','','',''),('616949637824262432',4237,'61694963776','26','1.00','100','retail','0','2023-09-17 18:16:21','','','','0','Cash',0.00,'100','','','6','','1','2023-09-17 15:17:12','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-40.00','-41','Inclusive','branch','Inventory','','','','',''),('616949638202222032',4238,'61694963776','1','1.00','280','retail','0','2023-09-17 18:17:00','','','','0','Cash',0.00,'280','','','6','','1','2023-09-17 15:17:12','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-309.00','-310','Inclusive','branch','Inventory','','','','',''),('616949638282222032',4239,'61694963776','23','1.00','250','retail','0','2023-09-17 18:17:07','','','','0','Cash',0.00,'250','','','6','','1','2023-09-17 15:17:12','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-183.00','-184','Inclusive','branch','Inventory','','','','',''),('616949638400202034',4240,'61694963839','11','1.00','280','retail','0','2023-09-17 18:17:19','','','','0','Cash',0.00,'280','','','6','','1','2023-09-17 15:17:22','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-81.00','-82','Inclusive','branch','Inventory','','','','',''),('616949638493929364',4241,'61694963849','38','1.00','350','retail','0','2023-09-17 18:17:29','','','','0','Cash',0.00,'350','','','6','','1','2023-09-17 15:17:31','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-517.00','-518','Inclusive','branch','Inventory','','','','',''),('616949638592222032',4242,'61694963859','38','1.00','350','retail','0','2023-09-17 18:17:39','','','','0','Cash',0.00,'350','','','6','','1','2023-09-17 15:17:44','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-518.00','-519','Inclusive','branch','Inventory','','','','',''),('616949638602222032',4243,'61694963859','38','1.00','350','retail','0','2023-09-17 18:17:40','','','','0','Cash',0.00,'350','','','6','','1','2023-09-17 15:17:44','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-519.00','-520','Inclusive','branch','Inventory','','','','',''),('616949682543022352',4244,'61694968253','21','1.00','200','retail','0','2023-09-17 19:30:53','','','','0','Cash',0.00,'200','','','6','','1','2023-09-17 16:30:58','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-506.00','-507','Inclusive','branch','Inventory','','','','',''),('616949705430202034',4245,'61694970542','3','1.00','200','retail','0','2023-09-17 20:09:02','','','','0','Cash',0.00,'200','','','6','','1','2023-09-17 17:09:06','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-145.00','-146','Inclusive','branch','Inventory','','','','',''),('616950319394232432',4246,'61695031938','21','1.00','200','retail','0','2023-09-18 13:12:18','','','','0','Cash',0.00,'200','','','6','','1','2023-09-18 10:12:21','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-507.00','-508','Inclusive','branch','Inventory','','','','',''),('416950515152343302',4247,'41695051514','38','1.00','350','retail','0','2023-09-18 18:38:34','','','','0','Cash',0.00,'350','','','4','','1','2023-09-18 15:38:46','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-520.00','-521','Inclusive','branch','Inventory','','','','',''),('416950515200202035',4248,'41695051514','38','1.00','350','retail','0','2023-09-18 18:38:40','','','','0','Cash',0.00,'350','','','4','','1','2023-09-18 15:38:46','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-521.00','-522','Inclusive','branch','Inventory','','','','',''),('416950598123022318',4249,'41695059811','21','1.00','200','retail','0','2023-09-18 20:56:51','','','','0','Cash',0.00,'200','','','4','','1','2023-09-18 17:56:55','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-508.00','-509','Inclusive','branch','Inventory','','','','',''),('616951099869260932',4250,'61695109985','7','1.00','200','retail','0','2023-09-19 10:53:05','','','','0','Cash',0.00,'200','','','6','','1','2023-09-19 07:53:09','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-204.00','-205','Inclusive','branch','Inventory','','','','',''),('616951100050202035',4251,'61695110005','46','1.00','200','retail','0','2023-09-19 10:53:25','','','','0','Cash',0.00,'200','','','6','','1','2023-09-19 07:53:43','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','','','','',''),('616951100082060352',4252,'61695110005','46','1.00','200','retail','0','2023-09-19 10:53:28','','','','0','Cash',0.00,'200','','','6','','1','2023-09-19 07:53:43','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','','','','',''),('616951100113421300',4253,'61695110005','46','1.00','200','retail','0','2023-09-19 10:53:30','','','','0','Cash',0.00,'200','','','6','','1','2023-09-19 07:53:43','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','','','','',''),('616951100133022310',4254,'61695110005','46','1.00','200','retail','0','2023-09-19 10:53:33','','','','0','Cash',0.00,'200','','','6','','1','2023-09-19 07:53:43','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','','','','',''),('616951165686223080',4255,'61695116567','7','1.00','200','retail','0','2023-09-19 12:42:47','','','','0','Cash',0.00,'200','','','6','','1','2023-09-19 09:42:54','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-205.00','-206','Inclusive','branch','Inventory','','','','',''),('616951193293022323',4256,'61695119328','21','1.00','200','retail','0','2023-09-19 13:28:48','','','','0','Cash',0.00,'200','','','6','','1','2023-09-19 10:28:54','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-509.00','-510','Inclusive','branch','Inventory','','','','',''),('616951194663022364',4257,'61695119465','21','1.00','200','retail','0','2023-09-19 13:31:05','','','','0','Cash',0.00,'200','','','6','','1','2023-09-19 10:31:13','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-510.00','-511','Inclusive','branch','Inventory','','','','',''),('616951220183421300',4258,'61695122018','29','1.00','300','retail','0','2023-09-19 14:13:38','','','','0','Cash',0.00,'300','','','6','','1','2023-09-19 11:13:42','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-34.00','-35','Inclusive','branch','Inventory','','','','',''),('416951288308921844',4259,'41695128830','38','1.00','350','retail','0','2023-09-19 16:07:10','','','','0','Cash',0.00,'350','','','4','','1','2023-09-19 13:07:13','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-522.00','-523','Inclusive','branch','Inventory','','','','',''),('416951370162222032',4260,'41695137015','8','1.00','150','retail','0','2023-09-19 18:23:35','','','','0','Cash',0.00,'150','','','4','','1','2023-09-19 15:23:43','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-85.00','-86','Inclusive','branch','Inventory','','','','',''),('416951370193022310',4261,'41695137015','7','1.00','200','retail','0','2023-09-19 18:23:38','','','','0','Cash',0.00,'200','','','4','','1','2023-09-19 15:23:43','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-206.00','-207','Inclusive','branch','Inventory','','','','',''),('416951408073022308',4262,'41695140807','38','1.00','350','retail','0','2023-09-19 19:26:47','','','','0','Cash',0.00,'350','','','4','','1','2023-09-19 16:26:50','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-523.00','-524','Inclusive','branch','Inventory','','','','',''),('416951426983022396',4263,'41695142698','21','1.00','200','retail','0','2023-09-19 19:58:18','','','','0','Cash',0.00,'200','','','4','','1','2023-09-19 16:58:24','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-511.00','-512','Inclusive','branch','Inventory','','','','',''),('416951427019210932',4264,'41695142698','21','1.00','200','retail','0','2023-09-19 19:58:20','','','','0','Cash',0.00,'200','','','4','','1','2023-09-19 16:58:24','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-512.00','-513','Inclusive','branch','Inventory','','','','',''),('416951480504242432',4265,'41695148049','29','1.00','300','retail','0','2023-09-19 21:27:29','','','','0','Cash',0.00,'300','','','4','','1','2023-09-19 18:27:33','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-35.00','-36','Inclusive','branch','Inventory','','','','',''),('416951510601921144',4266,'41695151059','5','1.00','300','retail','0','2023-09-19 22:17:39','','','','0','Cash',0.00,'300','','','4','','1','2023-09-19 19:17:42','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-117.00','-118','Inclusive','branch','Inventory','','','','',''),('416951518433421300',4267,'41695151843','23','1.00','250','retail','0','2023-09-19 22:30:43','','','','0','Cash',0.00,'250','','','4','','1','2023-09-19 19:30:47','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-184.00','-185','Inclusive','branch','Inventory','','','','',''),('616951990304292432',4268,'61695199029','12','1.00','250','retail','0','2023-09-20 11:37:09','','','','0','Cash',0.00,'250','','','6','','1','2023-09-20 08:37:13','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-96.00','-97','Inclusive','branch','Inventory','','','','',''),('616952015113421300',4269,'61695201511','38','1.00','350','retail','0','2023-09-20 12:18:31','','','','0','Cash',0.00,'350','','','6','','1','2023-09-20 09:18:33','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-524.00','-525','Inclusive','branch','Inventory','','','','',''),('616952093619922964',4270,'61695209361','52','1.00','150','retail','0','2023-09-20 14:29:21','','','','200','Cash',0.00,'150','','','6','','1','2023-09-20 11:29:24','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('616952230920202035',4271,'61695223091','1','1.00','280','retail','0','2023-09-20 18:18:11','','','','0','Cash',0.00,'280','','','6','','1','2023-09-20 15:18:14','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-310.00','-311','Inclusive','branch','Inventory','','','','',''),('616952231043022301',4272,'61695223103','12','1.00','250','retail','0','2023-09-20 18:18:23','','','','0','Cash',0.00,'250','','','6','','1','2023-09-20 15:18:27','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-97.00','-98','Inclusive','branch','Inventory','','','','',''),('616952231159250932',4273,'61695223114','3','1.00','200','retail','0','2023-09-20 18:18:34','','','','0','Cash',0.00,'200','','','6','','1','2023-09-20 15:18:38','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-146.00','-147','Inclusive','branch','Inventory','','','','',''),('616952255670202035',4274,'61695225566','38','1.00','350','retail','0','2023-09-20 18:59:26','','','','0','Cash',0.00,'350','','','6','','1','2023-09-20 15:59:30','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-525.00','-526','Inclusive','branch','Inventory','','','','',''),('616952255682222032',4275,'61695225566','38','1.00','350','retail','0','2023-09-20 18:59:27','','','','0','Cash',0.00,'350','','','6','','1','2023-09-20 15:59:30','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-526.00','-527','Inclusive','branch','Inventory','','','','',''),('616952255779270932',4276,'61695225576','20','1.00','200','retail','0','2023-09-20 18:59:36','','','','0','Cash',0.00,'200','','','6','','1','2023-09-20 15:59:39','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-209.00','-210','Inclusive','branch','Inventory','','','','',''),('616952255880202035',4277,'61695225587','3','1.00','200','retail','0','2023-09-20 18:59:47','','','','0','Cash',0.00,'200','','','6','','1','2023-09-20 15:59:53','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-147.00','-148','Inclusive','branch','Inventory','','','','',''),('616952300889280932',4278,'61695230087','21','1.00','200','retail','0','2023-09-20 20:14:47','','','','0','Cash',0.00,'200','','','6','','1','2023-09-20 17:14:52','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-513.00','-514','Inclusive','branch','Inventory','','','','',''),('616952301099290932',4279,'61695230109','2','1.00','250','retail','0','2023-09-20 20:15:09','','','','0','Cash',0.00,'250','','','6','','1','2023-09-20 17:15:12','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-94.00','-95','Inclusive','branch','Inventory','','','','',''),('616952325513022355',4280,'61695232551','7','1.00','200','retail','0','2023-09-20 20:55:51','','','','0','Cash',0.00,'200','','','6','','1','2023-09-20 17:55:57','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-207.00','-208','Inclusive','branch','Inventory','','','','',''),('616952325543421300',4281,'61695232551','7','1.00','200','retail','0','2023-09-20 20:55:53','','','','0','Cash',0.00,'200','','','6','','1','2023-09-20 17:55:57','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-208.00','-209','Inclusive','branch','Inventory','','','','',''),('616952325652266352',4282,'61695232564','21','1.00','200','retail','0','2023-09-20 20:56:04','','','','0','Cash',0.00,'200','','','6','','1','2023-09-20 17:56:07','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-514.00','-515','Inclusive','branch','Inventory','','','','',''),('616952355349240932',4283,'61695235534','52','1.00','150','retail','0','2023-09-20 21:45:34','','','','200','Cash',0.00,'150','','','6','','1','2023-09-20 18:45:41','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('616952355385922564',4284,'61695235534','7','1.00','200','retail','0','2023-09-20 21:45:38','','','','0','Cash',0.00,'200','','','6','','1','2023-09-20 18:45:41','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-209.00','-210','Inclusive','branch','Inventory','','','','',''),('616952813462222032',4285,'61695281346','40','1.00','600','retail','0','2023-09-21 10:29:06','','','','0','Cash',0.00,'600','','','6','','1','2023-09-21 07:29:08','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-37.00','-38','Inclusive','branch','Inventory','','','','',''),('616952813572222032',4286,'61695281356','12','1.00','250','retail','0','2023-09-21 10:29:16','','','','0','Cash',0.00,'250','','','6','','1','2023-09-21 07:29:19','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-98.00','-99','Inclusive','branch','Inventory','','','','',''),('616952904820202035',4287,'61695290481','22','1.00','250','retail','0','2023-09-21 13:01:21','','','','0','Cash',0.00,'250','','','6','','1','2023-09-21 10:01:24','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-54.00','-55','Inclusive','branch','Inventory','','','','',''),('616952930874292432',4288,'61695293086','3','1.00','200','retail','0','2023-09-21 13:44:46','','','','0','Cash',0.00,'200','','','6','','1','2023-09-21 10:44:49','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-148.00','-149','Inclusive','branch','Inventory','','','','',''),('416953090373022330',4289,'41695309036','7','1.00','200','retail','0','2023-09-21 18:10:36','','','','0','Cash',0.00,'200','','','4','','1','2023-09-21 15:11:06','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-210.00','-211','Inclusive','branch','Inventory','','','','',''),('416953090489280932',4290,'41695309036','20','1.00','200','retail','0','2023-09-21 18:10:47','','','','0','Cash',0.00,'200','','','4','','1','2023-09-21 15:11:06','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-210.00','-211','Inclusive','branch','Inventory','','','','',''),('416953090579923944',4291,'41695309036','20','1.00','200','retail','0','2023-09-21 18:10:57','','','','0','Cash',0.00,'200','','','4','','1','2023-09-21 15:11:06','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-211.00','-212','Inclusive','branch','Inventory','','','','',''),('416953116982169352',4292,'41695311697','1','1.00','280','retail','0','2023-09-21 18:54:57','','','','0','Cash',0.00,'280','','','4','','1','2023-09-21 15:55:03','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-311.00','-312','Inclusive','branch','Inventory','','','','',''),('416953190653310123',4293,'41695319064','21','1.00','200','retail','0','2023-09-21 20:57:44','','','','0','Cash',0.00,'200','','','4','','1','2023-09-21 17:57:48','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-515.00','-516','Inclusive','branch','Inventory','','','','',''),('616953879230202035',4294,'61695387922','11','1.00','280','retail','0','2023-09-22 16:05:22','','','','0','Cash',0.00,'280','','','6','','1','2023-09-22 13:05:26','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-82.00','-83','Inclusive','branch','Inventory','','','','',''),('416953888252862352',4295,'41695388824','3','1.00','200','retail','0','2023-09-22 16:20:24','','','','0','Cash',0.00,'200','','','4','','1','2023-09-22 13:20:28','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-149.00','-150','Inclusive','branch','Inventory','','','','',''),('416953904889280932',4296,'41695390487','23','1.00','250','retail','0','2023-09-22 16:48:07','','','','0','Cash',0.00,'250','','','4','','1','2023-09-22 13:48:10','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-185.00','-186','Inclusive','branch','Inventory','','','','',''),('416953958595923544',4297,'41695395859','23','1.00','250','retail','0','2023-09-22 18:17:39','','','','0','Cash',0.00,'250','','','4','','1','2023-09-22 15:17:45','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-186.00','-187','Inclusive','branch','Inventory','','','','',''),('416953961333022331',4298,'41695396133','23','1.00','250','retail','0','2023-09-22 18:22:13','','','','0','Cash',0.00,'250','','','4','','1','2023-09-22 15:22:19','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-187.00','-188','Inclusive','branch','Inventory','','','','',''),('416954015392333320',4299,'41695401538','21','1.00','200','retail','0','2023-09-22 19:52:18','','','','0','Cash',0.00,'200','','','4','','1','2023-09-22 16:52:22','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-516.00','-517','Inclusive','branch','Inventory','','','','',''),('416954096609924944',4300,'41695409660','21','1.00','200','retail','0','2023-09-22 22:07:40','','','','0','Cash',0.00,'200','','','4','','1','2023-09-22 19:07:42','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-517.00','-518','Inclusive','branch','Inventory','','','','',''),('416954096863421300',4301,'41695409685','21','1.00','200','retail','0','2023-09-22 22:08:05','','','','0','Cash',0.00,'200','','','4','','1','2023-09-22 19:08:09','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-518.00','-519','Inclusive','branch','Inventory','','','','',''),('416954111813421300',4302,'41695411180','8','1.00','150','retail','0','2023-09-22 22:33:00','','','','0','Cash',0.00,'150','','','4','','1','2023-09-22 19:33:05','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-86.00','-87','Inclusive','branch','Inventory','','','','',''),('616954550712506336',4303,'61695455070','13','1.00','280','retail','0','2023-09-23 10:44:30','','','','0','Cash',0.00,'280','','','6','','1','2023-09-23 07:45:10','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-5.00','-6','Inclusive','branch','Inventory','','','','',''),('616954550732222032',4304,'61695455070','13','1.00','280','retail','0','2023-09-23 10:44:33','','','','0','Cash',0.00,'280','','','6','','1','2023-09-23 07:45:10','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-6.00','-7','Inclusive','branch','Inventory','','','','',''),('616954550764252432',4305,'61695455070','6','1.00','280','retail','0','2023-09-23 10:44:35','','','','0','Cash',0.00,'280','','','6','','1','2023-09-23 07:45:10','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-30.00','-31','Inclusive','branch','Inventory','','','','',''),('616954550943421300',4306,'61695455070','47','1.00','200','retail','0','2023-09-23 10:44:53','','','','0','Cash',0.00,'200','','','6','','1','2023-09-23 07:45:10','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','','','','',''),('616954551042222032',4307,'61695455070','47','1.00','200','retail','0','2023-09-23 10:45:03','','','','0','Cash',0.00,'200','','','6','','1','2023-09-23 07:45:10','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','','','','',''),('616954636883924364',4308,'61695463688','38','1.00','350','retail','0','2023-09-23 13:08:08','','','','0','Cash',0.00,'350','','','6','','1','2023-09-23 10:08:14','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-527.00','-528','Inclusive','branch','Inventory','','','','',''),('616954637044406390',4309,'61695463703','52','1.00','150','retail','0','2023-09-23 13:08:23','','','','200','Cash',0.00,'150','','','6','','1','2023-09-23 10:08:26','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416954767262662352',4310,'41695476726','12','1.00','250','retail','0','2023-09-23 16:45:26','','','','0','Cash',0.00,'250','','','4','','1','2023-09-23 13:45:28','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-99.00','-100','Inclusive','branch','Inventory','','','','',''),('416954790859250932',4311,'41695479084','12','1.00','250','retail','0','2023-09-23 17:24:44','','','','0','Cash',0.00,'250','','','4','','1','2023-09-23 14:34:04','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-100.00','-101','Inclusive','branch','Inventory','','','','',''),('416954796942222032',4312,'41695479693','12','1.00','250','retail','0','2023-09-23 17:34:53','','','','0','Cash',0.00,'250','','','4','','1','2023-09-23 14:35:03','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-101.00','-102','Inclusive','branch','Inventory','','','','',''),('416954797002222032',4313,'41695479693','26','1.00','100','retail','0','2023-09-23 17:34:59','','','','0','Cash',0.00,'100','','','4','','1','2023-09-23 14:35:03','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-41.00','-42','Inclusive','branch','Inventory','','','','',''),('416954828592222032',4314,'41695482858','4','1.00','150','retail','0','2023-09-23 18:27:39','','','','0','Cash',0.00,'150','','','4','','1','2023-09-23 15:27:43','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-56.00','-57','Inclusive','branch','Inventory','','','','',''),('416954953460202035',4315,'41695495346','54','1.00','350','retail','0','2023-09-23 21:55:46','','','','200','Cash',0.00,'350','','','4','','1','2023-09-23 18:55:53','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Service','1110','4000','5500','',''),('416954953974292432',4316,'41695495397','1','1.00','280','retail','0','2023-09-23 21:56:37','','','','0','Cash',0.00,'280','','','4','','1','2023-09-23 18:56:48','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-312.00','-313','Inclusive','branch','Inventory','','','','',''),('416954954009200932',4317,'41695495397','1','1.00','280','retail','0','2023-09-23 21:56:40','','','','0','Cash',0.00,'280','','','4','','1','2023-09-23 18:56:48','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-313.00','-314','Inclusive','branch','Inventory','','','','',''),('416954954210202035',4318,'41695495420','5','1.00','300','retail','0','2023-09-23 21:57:00','','','','0','Cash',0.00,'300','','','4','','1','2023-09-23 18:57:03','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-118.00','-119','Inclusive','branch','Inventory','','','','',''),('416955508494252432',4319,'41695550848','21','1.00','200','retail','0','2023-09-24 13:20:48','','','','0','Cash',0.00,'200','','','4','','1','2023-09-24 10:20:51','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-519.00','-520','Inclusive','branch','Inventory','','','','',''),('416955627620202035',4320,'41695562761','55','1.00','200','retail','0','2023-09-24 16:39:21','','','','150','Cash',0.00,'200','','','4','','1','2023-09-24 13:39:24','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','287.00','286','Inclusive','branch','Inventory','1110','4000','5500','',''),('416955679492764352',4321,'41695567948','1','1.00','280','retail','0','2023-09-24 18:05:48','','','','0','Cash',0.00,'280','','','4','','1','2023-09-24 15:05:57','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-314.00','-315','Inclusive','branch','Inventory','','','','',''),('416955679543421300',4322,'41695567948','21','1.00','200','retail','0','2023-09-24 18:05:53','','','','0','Cash',0.00,'200','','','4','','1','2023-09-24 15:05:57','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-520.00','-521','Inclusive','branch','Inventory','','','','',''),('416955700333421300',4323,'41695570032','52','1.00','150','retail','0','2023-09-24 18:40:32','','','','200','Cash',0.00,'150','','','4','','1','2023-09-24 15:40:42','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416955700392222032',4324,'41695570032','7','1.00','200','retail','0','2023-09-24 18:40:39','','','','0','Cash',0.00,'200','','','4','','1','2023-09-24 15:40:42','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-211.00','-212','Inclusive','branch','Inventory','','','','',''),('416955816372163352',4325,'41695581636','1','1.00','280','retail','0','2023-09-24 21:53:56','','','','0','Cash',0.00,'280','','','4','','1','2023-09-24 18:54:02','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-315.00','-316','Inclusive','branch','Inventory','','','','',''),('416955816383421300',4326,'41695581636','1','1.00','280','retail','0','2023-09-24 21:53:58','','','','0','Cash',0.00,'280','','','4','','1','2023-09-24 18:54:02','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-316.00','-317','Inclusive','branch','Inventory','','','','',''),('416955816509200932',4327,'41695581650','22','1.00','250','retail','0','2023-09-24 21:54:10','','','','0','Cash',0.00,'250','','','4','','1','2023-09-24 18:54:20','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-55.00','-56','Inclusive','branch','Inventory','','','','',''),('416956318123022318',4328,'41695631811','1','1.00','280','retail','0','2023-09-25 11:50:11','','','','0','Cash',0.00,'280','','','4','','1','2023-09-25 08:50:15','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-317.00','-318','Inclusive','branch','Inventory','','','','',''),('416956343632466352',4329,'41695634362','1','1.00','280','retail','0','2023-09-25 12:32:42','','','','0','Cash',0.00,'280','','','4','','1','2023-09-25 09:32:45','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-318.00','-319','Inclusive','branch','Inventory','','','','',''),('416956399913421300',4330,'41695639991','46','1.00','200','retail','0','2023-09-25 14:06:31','','','','0','Cash',0.00,'200','','','4','','1','2023-09-25 11:06:38','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','','','','',''),('416956399953022399',4331,'41695639991','46','1.00','200','retail','0','2023-09-25 14:06:34','','','','0','Cash',0.00,'200','','','4','','1','2023-09-25 11:06:38','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','','','','',''),('416956413062222032',4332,'41695641305','38','1.00','350','retail','0','2023-09-25 14:28:25','','','','0','Cash',0.00,'350','','','4','','1','2023-09-25 11:28:28','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-528.00','-529','Inclusive','branch','Inventory','','','','',''),('416956472209200932',4333,'41695647220','52','1.00','150','retail','0','2023-09-25 16:07:00','','','','200','Cash',0.00,'150','','','4','','1','2023-09-25 13:07:06','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416956477413022347',4334,'41695647741','8','1.00','150','retail','0','2023-09-25 16:15:41','','','','0','Cash',0.00,'150','','','4','','1','2023-09-25 13:15:44','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-87.00','-88','Inclusive','branch','Inventory','','','','',''),('416956491809926944',4335,'41695649180','20','1.00','200','retail','0','2023-09-25 16:39:40','','','','0','Cash',0.00,'200','','','4','','1','2023-09-25 13:39:43','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-212.00','-213','Inclusive','branch','Inventory','','','','',''),('416956491994223623',4336,'41695649198','20','1.00','200','retail','0','2023-09-25 16:39:58','','','','0','Cash',0.00,'200','','','4','','1','2023-09-25 13:40:02','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-213.00','-214','Inclusive','branch','Inventory','','','','',''),('416956506634252432',4337,'41695650662','3','1.00','200','retail','0','2023-09-25 17:04:22','','','','0','Cash',0.00,'200','','','4','','1','2023-09-25 14:04:25','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-150.00','-151','Inclusive','branch','Inventory','','','','',''),('616956654362563352',4338,'61695665435','54','1.00','350','retail','0','2023-09-25 21:10:35','','','','200','Cash',0.00,'350','','','6','','1','2023-09-25 18:10:41','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Service','1110','4000','5500','',''),('616956679543421300',4339,'61695667953','54','1.00','350','retail','0','2023-09-25 21:52:33','','','','200','Cash',0.00,'350','','','6','','1','2023-09-25 18:52:37','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Service','1110','4000','5500','',''),('416957139673022369',4340,'41695713966','21','1.00','200','retail','0','2023-09-26 10:39:27','','','','0','Cash',0.00,'200','','','4','','1','2023-09-26 07:50:13','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-521.00','-522','Inclusive','branch','Inventory','','','','',''),('416957139723421300',4341,'41695713966','46','1.00','200','retail','0','2023-09-26 10:39:31','','','','0','Cash',0.00,'200','','','4','','1','2023-09-26 07:50:13','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','','','','',''),('416957152010202035',4342,'41695715200','21','1.00','200','retail','0','2023-09-26 11:00:00','','','','0','Cash',0.00,'200','','','4','','1','2023-09-26 08:00:04','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-522.00','-523','Inclusive','branch','Inventory','','','','',''),('616957405319210932',4343,'61695740530','38','1.00','350','retail','0','2023-09-26 18:02:10','','','','0','Cash',0.00,'350','','','6','','1','2023-09-26 15:02:16','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-529.00','-530','Inclusive','branch','Inventory','','','','',''),('616957418102222032',4344,'61695741809','38','1.00','350','retail','0','2023-09-26 18:23:29','','','','0','Cash',0.00,'350','','','6','','1','2023-09-26 15:23:33','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-530.00','-531','Inclusive','branch','Inventory','','','','',''),('616957418119210932',4345,'61695741809','38','1.00','350','retail','0','2023-09-26 18:23:30','','','','0','Cash',0.00,'350','','','6','','1','2023-09-26 15:23:33','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-531.00','-532','Inclusive','branch','Inventory','','','','',''),('616957423372263352',4346,'61695742336','21','1.00','200','retail','0','2023-09-26 18:32:16','','','','0','Cash',0.00,'200','','','6','','1','2023-09-26 15:32:19','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-523.00','-524','Inclusive','branch','Inventory','','','','',''),('616957446003421300',4347,'61695744599','11','1.00','280','retail','0','2023-09-26 19:09:59','','','','0','Cash',0.00,'280','','','6','','1','2023-09-26 16:10:02','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-83.00','-84','Inclusive','branch','Inventory','','','','',''),('616957486829220932',4348,'61695748682','11','1.00','280','retail','0','2023-09-26 20:18:02','','','','0','Cash',0.00,'280','','','6','','1','2023-09-26 17:18:23','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-84.00','-85','Inclusive','branch','Inventory','','','','',''),('616957486888927864',4349,'61695748682','15','1.00','200','retail','0','2023-09-26 20:18:08','','','','0','Cash',0.00,'200','','','6','','1','2023-09-26 17:18:23','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-26.00','-27','Inclusive','branch','Inventory','','','','',''),('616957500913022390',4350,'61695750091','7','1.00','200','retail','0','2023-09-26 20:41:31','','','','0','Cash',0.00,'200','','','6','','1','2023-09-26 17:41:34','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-212.00','-213','Inclusive','branch','Inventory','','','','',''),('616957537099290932',4351,'61695753708','21','1.00','200','retail','0','2023-09-26 21:41:48','','','','0','Cash',0.00,'200','','','6','','1','2023-09-26 18:41:51','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-524.00','-525','Inclusive','branch','Inventory','','','','',''),('616958014582165352',4352,'61695801457','54','1.00','350','retail','0','2023-09-27 10:57:37','','','','200','Cash',0.00,'350','','','6','','1','2023-09-27 07:57:41','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Service','1110','4000','5500','',''),('616958015049240932',4353,'61695801504','21','1.00','200','retail','0','2023-09-27 10:58:24','','','','0','Cash',0.00,'200','','','6','','1','2023-09-27 07:58:27','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-525.00','-526','Inclusive','branch','Inventory','','','','',''),('616958190513022350',4354,'61695819051','1','1.00','280','retail','0','2023-09-27 15:50:51','','','','0','Cash',0.00,'280','','','6','','1','2023-09-27 12:50:55','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-319.00','-320','Inclusive','branch','Inventory','','','','',''),('616958262690202035',4355,'61695826268','1','1.00','280','retail','0','2023-09-27 17:51:08','','','','0','Cash',0.00,'280','','','6','','1','2023-09-27 14:51:12','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-320.00','-321','Inclusive','branch','Inventory','','','','',''),('616958270513421300',4356,'61695827051','7','1.00','200','retail','0','2023-09-27 18:04:11','','','','0','Cash',0.00,'200','','','6','','1','2023-09-27 15:04:13','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-213.00','-214','Inclusive','branch','Inventory','','','','',''),('616958270672766352',4357,'61695827066','54','1.00','350','retail','0','2023-09-27 18:04:26','','','','200','Cash',0.00,'350','','','6','','1','2023-09-27 15:04:34','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Service','1110','4000','5500','',''),('616958343923022393',4358,'61695834391','54','1.00','350','retail','0','2023-09-27 20:06:31','','','','200','Cash',0.00,'350','','','6','','1','2023-09-27 17:06:34','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Service','1110','4000','5500','',''),('616958847572222032',4359,'61695884756','21','1.00','200','retail','0','2023-09-28 10:05:56','','','','0','Cash',0.00,'200','','','6','','1','2023-09-28 07:06:00','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-526.00','-527','Inclusive','branch','Inventory','','','','',''),('616958905733022375',4360,'61695890572','3','1.00','200','retail','0','2023-09-28 11:42:52','','','','0','Cash',0.00,'200','','','6','','1','2023-09-28 08:42:54','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-151.00','-152','Inclusive','branch','Inventory','','','','',''),('616958929764292432',4361,'61695892976','11','1.00','280','retail','0','2023-09-28 12:22:56','','','','0','Cash',0.00,'280','','','6','','1','2023-09-28 09:22:58','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-85.00','-86','Inclusive','branch','Inventory','','','','',''),('616959124683421300',4362,'61695912467','20','1.00','200','retail','0','2023-09-28 17:47:47','','','','0','Cash',0.00,'200','','','6','','1','2023-09-28 14:47:52','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-214.00','-215','Inclusive','branch','Inventory','','','','',''),('616959124694212432',4363,'61695912467','20','1.00','200','retail','0','2023-09-28 17:47:49','','','','0','Cash',0.00,'200','','','6','','1','2023-09-28 14:47:52','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-215.00','-216','Inclusive','branch','Inventory','','','','',''),('416959129103330232',4364,'41695912909','38','1.00','350','retail','0','2023-09-28 17:55:09','','','','0','Cash',0.00,'350','','','4','','1','2023-09-28 14:55:13','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-532.00','-533','Inclusive','branch','Inventory','','','','',''),('416959200279270932',4365,'41695920026','15','1.00','200','retail','0','2023-09-28 19:53:46','','','','0','Cash',0.00,'200','','','4','','1','2023-09-28 16:53:50','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-27.00','-28','Inclusive','branch','Inventory','','','','',''),('416959249049240932',4366,'41695924903','38','1.00','350','retail','0','2023-09-28 21:15:03','','','','0','Cash',0.00,'350','','','4','','1','2023-09-28 18:21:24','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-533.00','-534','Inclusive','branch','Inventory','','','','',''),('416959260463421300',4367,'41695926045','1','1.00','280','retail','0','2023-09-28 21:34:05','','','','0','Cash',0.00,'280','','','4','','1','2023-09-28 18:34:09','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-321.00','-322','Inclusive','branch','Inventory','','','','',''),('416959265499290932',4368,'41695926549','6','1.00','280','retail','0','2023-09-28 21:42:29','','','','0','Cash',0.00,'280','','','4','','1','2023-09-28 18:42:33','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-31.00','-32','Inclusive','branch','Inventory','','','','',''),('416959285223421300',4369,'41695928521','38','1.00','350','retail','0','2023-09-28 22:15:21','','','','0','Cash',0.00,'350','','','4','','1','2023-09-28 19:15:26','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-534.00','-535','Inclusive','branch','Inventory','','','','',''),('416959673494262432',4370,'41695967349','1','1.00','280','retail','0','2023-09-29 09:02:29','','','','0','Cash',0.00,'280','','','4','','1','2023-09-29 06:02:43','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-322.00','-323','Inclusive','branch','Inventory','','','','',''),('416959695780661220',4371,'41695969577','23','1.00','250','retail','0','2023-09-29 09:39:37','','','','0','Cash',0.00,'250','','','4','','1','2023-09-29 06:39:41','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-188.00','-189','Inclusive','branch','Inventory','','','','',''),('416959739612366352',4372,'41695973960','21','1.00','200','retail','0','2023-09-29 10:52:40','','','','0','Cash',0.00,'200','','','4','','1','2023-09-29 07:52:43','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-527.00','-528','Inclusive','branch','Inventory','','','','',''),('416959945034292432',4373,'41695994502','38','1.00','350','retail','0','2023-09-29 16:35:02','','','','0','Cash',0.00,'350','','','4','','1','2023-09-29 13:35:05','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-535.00','-536','Inclusive','branch','Inventory','','','','',''),('616959963486929664',4374,'61695996348','12','1.00','250','retail','0','2023-09-29 17:05:48','','','','0','Cash',0.00,'250','','','6','','1','2023-09-29 14:06:00','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-102.00','-103','Inclusive','branch','Inventory','','','','',''),('616959963576929664',4375,'61695996348','7','1.00','200','retail','0','2023-09-29 17:05:56','','','','0','Cash',0.00,'200','','','6','','1','2023-09-29 14:06:00','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-214.00','-215','Inclusive','branch','Inventory','','','','',''),('616960003083022303',4376,'61696000307','38','1.00','350','retail','0','2023-09-29 18:11:47','','','','0','Cash',0.00,'350','','','6','','1','2023-09-29 15:11:51','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-536.00','-537','Inclusive','branch','Inventory','','','','',''),('616960003219210932',4377,'61696000320','21','1.00','200','retail','0','2023-09-29 18:12:00','','','','0','Cash',0.00,'200','','','6','','1','2023-09-29 15:12:04','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-528.00','-529','Inclusive','branch','Inventory','','','','',''),('616960003382363302',4378,'61696000337','28','1.00','300','retail','0','2023-09-29 18:12:17','','','','0','Cash',0.00,'300','','','6','','1','2023-09-29 15:12:26','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-3.00','-4','Inclusive','branch','Inventory','','','','',''),('616960003432064362',4379,'61696000337','26','1.00','100','retail','0','2023-09-29 18:12:23','','','','0','Cash',0.00,'100','','','6','','1','2023-09-29 15:12:26','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-42.00','-43','Inclusive','branch','Inventory','','','','',''),('616960003550202036',4380,'61696000355','29','1.00','300','retail','0','2023-09-29 18:12:35','','','','0','Cash',0.00,'300','','','6','','1','2023-09-29 15:12:43','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-36.00','-37','Inclusive','branch','Inventory','','','','',''),('616960003610920064',4381,'61696000355','24','1.00','100','retail','0','2023-09-29 18:12:40','','','','0','Cash',0.00,'100','','','6','','1','2023-09-29 15:12:43','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-35.00','-36','Inclusive','branch','Inventory','','','','',''),('616960018923421300',4382,'61696001891','7','1.00','200','retail','0','2023-09-29 18:38:11','','','','0','Cash',0.00,'200','','','6','','1','2023-09-29 15:38:19','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-215.00','-216','Inclusive','branch','Inventory','','','','',''),('616960018971920164',4383,'61696001891','12','1.00','250','retail','0','2023-09-29 18:38:16','','','','0','Cash',0.00,'250','','','6','','1','2023-09-29 15:38:19','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-103.00','-104','Inclusive','branch','Inventory','','','','',''),('616960023040202036',4384,'61696002303','46','1.00','200','retail','0','2023-09-29 18:45:03','','','','0','Cash',0.00,'200','','','6','','1','2023-09-29 15:45:08','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','','','','',''),('616960023059250932',4385,'61696002303','46','1.00','200','retail','0','2023-09-29 18:45:05','','','','0','Cash',0.00,'200','','','6','','1','2023-09-29 15:45:08','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','','','','',''),('616960044739230932',4386,'61696004473','12','1.00','250','retail','0','2023-09-29 19:21:13','','','','0','Cash',0.00,'250','','','6','','1','2023-09-29 16:21:27','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-104.00','-105','Inclusive','branch','Inventory','','','','',''),('616960044824202432',4387,'61696004473','25','1.00','100','retail','0','2023-09-29 19:21:21','','','','0','Cash',0.00,'100','','','6','','1','2023-09-29 16:21:27','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-1.00','-2','Inclusive','branch','Inventory','','','','',''),('616960075812301330',4388,'61696007580','55','1.00','200','retail','0','2023-09-29 20:13:00','','','','150','Cash',0.00,'200','','','6','','1','2023-09-29 17:13:04','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','286.00','285','Inclusive','branch','Inventory','1110','4000','5500','',''),('616960138610233613',4390,'61696013860','20','1.00','200','retail','0','2023-09-29 21:57:40','','','','0','Cash',0.00,'200','','','6','','1','2023-09-29 18:57:43','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-216.00','-217','Inclusive','branch','Inventory','','','','',''),('616960111591920164',4391,'61696011158','21','1.00','200','retail','0','2023-09-29 21:12:38','','','','0','Cash',0.00,'200','','','6','','1','2023-09-29 19:27:12','','2','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-529.00','-530','Inclusive','branch','Inventory','','','','',''),('616960156290202036',4392,'61696011158','21','1.00','200','retail','0','2023-09-29 22:27:09','','','','0','Cash',0.00,'200','','','6','','1','2023-09-29 19:27:12','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-530.00','-531','Inclusive','branch','Inventory','','','','',''),('416960594549240932',4393,'41696059453','21','1.00','200','retail','0','2023-09-30 10:37:33','','','','0','Cash',0.00,'200','','','4','','1','2023-09-30 07:37:37','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-531.00','-532','Inclusive','branch','Inventory','','','','',''),('416960674229220932',4394,'41696067422','30','1.00','330','retail','0','2023-09-30 12:50:22','','','','0','Cash',0.00,'330','','','4','','1','2023-09-30 09:50:52','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-15.00','-16','Inclusive','branch','Inventory','','','','',''),('416960674667920744',4395,'41696067465','42','1.00','600','retail','0','2023-09-30 12:51:05','','','','0','Cash',0.00,'600','','','4','','1','2023-09-30 09:51:11','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','20.00','19','Inclusive','branch','Inventory','','','','',''),('416960707959250932',4396,'41696070794','5','1.00','300','retail','0','2023-09-30 13:46:34','','','','0','Cash',0.00,'300','','','4','','1','2023-09-30 10:46:46','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-119.00','-120','Inclusive','branch','Inventory','','','','',''),('616960815770310823',4397,'61696081576','7','1.00','200','retail','0','2023-09-30 16:46:16','','','','0','Cash',0.00,'200','','','6','','1','2023-09-30 13:46:19','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-216.00','-217','Inclusive','branch','Inventory','','','','',''),('416960819639230932',4398,'41696081963','7','1.00','200','retail','0','2023-09-30 16:52:43','','','','0','Cash',0.00,'200','','','4','','1','2023-09-30 13:52:45','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-217.00','-218','Inclusive','branch','Inventory','','','','',''),('616960910100202036',4399,'61696091010','21','1.00','200','retail','0','2023-09-30 19:23:30','','','','0','Cash',0.00,'200','','','6','','1','2023-09-30 16:23:33','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-532.00','-533','Inclusive','branch','Inventory','','','','',''),('616960999219920964',4400,'61696099921','20','1.00','200','retail','0','2023-09-30 21:52:01','','','','0','Cash',0.00,'200','','','6','','1','2023-09-30 18:52:03','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-217.00','-218','Inclusive','branch','Inventory','','','','',''),('416961450699290932',4401,'41696145068','8','1.00','150','retail','0','2023-10-01 10:24:28','','','','0','Cash',0.00,'150','','','4','','1','2023-10-01 07:24:35','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-88.00','-89','Inclusive','branch','Inventory','','','','',''),('416961570433022340',4402,'41696157043','11','1.00','280','retail','0','2023-10-01 13:44:03','','','','0','Cash',0.00,'280','','','4','','1','2023-10-01 10:44:06','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-86.00','-87','Inclusive','branch','Inventory','','','','',''),('416961571003022301',4403,'41696157099','1','1.00','280','retail','0','2023-10-01 13:44:59','','','','0','Cash',0.00,'280','','','4','','1','2023-10-01 10:45:05','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-323.00','-324','Inclusive','branch','Inventory','','','','',''),('416961571022760362',4404,'41696157099','1','1.00','280','retail','0','2023-10-01 13:45:02','','','','0','Cash',0.00,'280','','','4','','1','2023-10-01 10:45:05','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-324.00','-325','Inclusive','branch','Inventory','','','','',''),('416961682559250932',4405,'41696168254','53','1.00','200','retail','0','2023-10-01 16:50:54','','','','150','Cash',0.00,'200','','','4','','1','2023-10-01 13:51:44','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','44.00','43','Inclusive','branch','Inventory','1110','4000','5500','',''),('416961682933022392',4406,'41696168254','21','1.00','200','retail','0','2023-10-01 16:51:32','','','','0','Cash',0.00,'200','','','4','','1','2023-10-01 13:51:44','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-533.00','-534','Inclusive','branch','Inventory','','','','',''),('416961725722921244',4407,'41696172571','5','1.00','300','retail','0','2023-10-01 18:02:51','','','','0','Cash',0.00,'300','','','4','','1','2023-10-01 15:02:57','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-120.00','-121','Inclusive','branch','Inventory','','','','',''),('416961725743022375',4408,'41696172571','5','1.00','300','retail','0','2023-10-01 18:02:54','','','','0','Cash',0.00,'300','','','4','','1','2023-10-01 15:02:57','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-121.00','-122','Inclusive','branch','Inventory','','','','',''),('416961725860202036',4409,'41696172585','2','1.00','250','retail','0','2023-10-01 18:03:05','','','','0','Cash',0.00,'250','','','4','','1','2023-10-01 15:03:08','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-95.00','-96','Inclusive','branch','Inventory','','','','',''),('416961742944921444',4410,'41696174293','21','1.00','200','retail','0','2023-10-01 18:31:33','','','','0','Cash',0.00,'200','','','4','','1','2023-10-01 15:31:51','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-534.00','-535','Inclusive','branch','Inventory','','','','',''),('416961780784272432',4411,'41696178077','16','1.00','200','retail','0','2023-10-01 19:34:37','','','','0','Cash',0.00,'200','','','4','','1','2023-10-01 16:34:40','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-34.00','-35','Inclusive','branch','Inventory','','','','',''),('416961790733421300',4412,'41696179072','21','1.00','200','retail','0','2023-10-01 19:51:12','','','','0','Cash',0.00,'200','','','4','','1','2023-10-01 16:51:15','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-535.00','-536','Inclusive','branch','Inventory','','','','',''),('416962326953421300',4413,'41696232695','21','1.00','200','retail','0','2023-10-02 10:44:55','','','','0','Cash',0.00,'200','','','4','','1','2023-10-02 07:44:58','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-536.00','-537','Inclusive','branch','Inventory','','','','',''),('416962476114242432',4414,'41696247611','8','1.00','150','retail','0','2023-10-02 14:53:31','','','','0','Cash',0.00,'150','','','4','','1','2023-10-02 11:53:34','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-89.00','-90','Inclusive','branch','Inventory','','','','',''),('616962579563421300',4415,'61696257955','1','1.00','280','retail','0','2023-10-02 17:45:55','','','','0','Cash',0.00,'280','','','6','','1','2023-10-02 14:45:58','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-325.00','-326','Inclusive','branch','Inventory','','','','',''),('616962589413022349',4416,'61696258940','12','1.00','250','retail','0','2023-10-02 18:02:21','','','','0','Cash',0.00,'250','','','6','','1','2023-10-02 15:02:24','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-105.00','-106','Inclusive','branch','Inventory','','','','',''),('616962651759250932',4417,'61696265174','20','1.00','200','retail','0','2023-10-02 19:46:14','','','','0','Cash',0.00,'200','','','6','','1','2023-10-02 16:46:17','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-218.00','-219','Inclusive','branch','Inventory','','','','',''),('616963247232222032',4418,'61696324722','7','1.00','200','retail','0','2023-10-03 12:18:42','','','','0','Cash',0.00,'200','','','6','','1','2023-10-03 09:18:46','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-218.00','-219','Inclusive','branch','Inventory','','','','',''),('416963451592222032',4419,'41696345158','11','1.00','280','retail','0','2023-10-03 17:59:18','','','','0','Cash',0.00,'280','','','4','','1','2023-10-03 14:59:29','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-87.00','-88','Inclusive','branch','Inventory','','','','',''),('416963451664242432',4420,'41696345158','26','1.00','100','retail','0','2023-10-03 17:59:26','','','','0','Cash',0.00,'100','','','4','','1','2023-10-03 14:59:29','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-43.00','-44','Inclusive','branch','Inventory','','','','',''),('416963451762567362',4421,'41696345175','38','1.00','350','retail','0','2023-10-03 17:59:35','','','','0','Cash',0.00,'350','','','4','','1','2023-10-03 14:59:38','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-537.00','-538','Inclusive','branch','Inventory','','','','',''),('416963493403421300',4422,'41696349339','21','1.00','200','retail','0','2023-10-03 19:08:59','','','','0','Cash',0.00,'200','','','4','','1','2023-10-03 16:09:02','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-537.00','-538','Inclusive','branch','Inventory','','','','',''),('416963502029220932',4423,'41696350202','1','1.00','280','retail','0','2023-10-03 19:23:22','','','','0','Cash',0.00,'280','','','4','','1','2023-10-03 16:29:43','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-326.00','-327','Inclusive','branch','Inventory','','','','',''),('416963505780202036',4424,'41696350202','26','1.00','100','retail','0','2023-10-03 19:29:37','','','','0','Cash',0.00,'100','','','4','','1','2023-10-03 16:29:43','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-44.00','-45','Inclusive','branch','Inventory','','','','',''),('416963509104252432',4425,'41696350909','38','1.00','350','retail','0','2023-10-03 19:35:09','','','','0','Cash',0.00,'350','','','4','','1','2023-10-03 16:35:14','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-538.00','-539','Inclusive','branch','Inventory','','','','',''),('416963578202222032',4426,'41696357819','7','1.00','200','retail','0','2023-10-03 21:30:19','','','','0','Cash',0.00,'200','','','4','','1','2023-10-03 18:30:22','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-219.00','-220','Inclusive','branch','Inventory','','','','',''),('616964050182561362',4427,'61696405017','11','1.00','280','retail','0','2023-10-04 10:36:57','','','','0','Cash',0.00,'280','','','6','','1','2023-10-04 07:37:05','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-88.00','-89','Inclusive','branch','Inventory','','','','',''),('616964050514202432',4428,'61696405051','21','1.00','200','retail','0','2023-10-04 10:37:31','','','','0','Cash',0.00,'200','','','6','','1','2023-10-04 07:37:33','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-538.00','-539','Inclusive','branch','Inventory','','','','',''),('616964296973421300',4429,'61696429696','12','1.00','250','retail','0','2023-10-04 17:28:17','','','','0','Cash',0.00,'250','','','6','','1','2023-10-04 14:28:36','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-106.00','-107','Inclusive','branch','Inventory','','','','',''),('616964296994222432',4430,'61696429696','12','1.00','250','retail','0','2023-10-04 17:28:18','','','','0','Cash',0.00,'250','','','6','','1','2023-10-04 14:28:36','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-107.00','-108','Inclusive','branch','Inventory','','','','',''),('616964297009924964',4431,'61696429696','12','1.00','250','retail','0','2023-10-04 17:28:19','','','','0','Cash',0.00,'250','','','6','','1','2023-10-04 14:28:36','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-108.00','-109','Inclusive','branch','Inventory','','','','',''),('616964297044222432',4432,'61696429696','47','1.00','200','retail','0','2023-10-04 17:28:24','','','','0','Cash',0.00,'200','','','6','','1','2023-10-04 14:28:36','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','10.00','9','Inclusive','branch','Inventory','','','','',''),('616964297053022307',4433,'61696429696','47','1.00','200','retail','0','2023-10-04 17:28:25','','','','0','Cash',0.00,'200','','','6','','1','2023-10-04 14:28:36','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','','','','',''),('616964297079270932',4434,'61696429696','47','1.00','200','retail','0','2023-10-04 17:28:26','','','','0','Cash',0.00,'200','','','6','','1','2023-10-04 14:28:36','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','8.00','7','Inclusive','branch','Inventory','','','','',''),('616964304363022334',4435,'61696430435','12','1.00','250','retail','0','2023-10-04 17:40:35','','','','0','Cash',0.00,'250','','','6','','1','2023-10-04 14:40:39','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-109.00','-110','Inclusive','branch','Inventory','','','','',''),('616964320312924264',4437,'61696432030','21','1.00','200','retail','0','2023-10-04 18:07:10','','','','0','Cash',0.00,'200','','','6','','1','2023-10-04 15:42:25','','2','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-539.00','-540','Inclusive','branch','Inventory','','','','',''),('616964341422222032',4438,'61696432030','21','1.00','200','retail','0','2023-10-04 18:42:22','','','','0','Cash',0.00,'200','','','6','','1','2023-10-04 15:42:25','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-540.00','-541','Inclusive','branch','Inventory','','','','',''),('616964972903421300',4439,'61696497289','21','1.00','200','retail','0','2023-10-05 12:14:49','','','','0','Cash',0.00,'200','','','6','','1','2023-10-05 09:14:52','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-541.00','-542','Inclusive','branch','Inventory','','','','',''),('616965058753022378',4440,'61696505874','11','1.00','280','retail','0','2023-10-05 14:37:54','','','','0','Cash',0.00,'280','','','6','','1','2023-10-05 11:37:56','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-89.00','-90','Inclusive','branch','Inventory','','','','',''),('616965087039230932',4441,'61696508702','1','1.00','280','retail','0','2023-10-05 15:25:02','','','','0','Cash',0.00,'280','','','6','','1','2023-10-05 12:25:27','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-327.00','-328','Inclusive','branch','Inventory','','','','',''),('616965087418925864',4442,'61696508740','38','1.00','350','retail','0','2023-10-05 15:25:40','','','','0','Cash',0.00,'350','','','6','','1','2023-10-05 12:25:44','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-539.00','-540','Inclusive','branch','Inventory','','','','',''),('616965087428925864',4443,'61696508740','38','1.00','350','retail','0','2023-10-05 15:25:41','','','','0','Cash',0.00,'350','','','6','','1','2023-10-05 12:25:44','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-540.00','-541','Inclusive','branch','Inventory','','','','',''),('616965100819210932',4444,'61696510081','40','1.00','600','retail','0','2023-10-05 15:48:01','','','','0','Cash',0.00,'600','','','6','','1','2023-10-05 12:48:03','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-38.00','-39','Inclusive','branch','Inventory','','','','',''),('416965116750202036',4445,'41696511675','26','1.00','100','retail','0','2023-10-05 16:14:35','','','','0','Cash',0.00,'100','','','4','','1','2023-10-05 13:14:49','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-45.00','-46','Inclusive','branch','Inventory','','','','',''),('416965192873022382',4446,'41696519286','23','1.00','250','retail','0','2023-10-05 18:21:26','','','','0','Cash',0.00,'250','','','4','','1','2023-10-05 15:21:31','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-189.00','-190','Inclusive','branch','Inventory','','','','',''),('416965267960202036',4447,'41696526795','21','1.00','200','retail','0','2023-10-05 20:26:35','','','','0','Cash',0.00,'200','','','4','','1','2023-10-05 17:26:38','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-542.00','-543','Inclusive','branch','Inventory','','','','',''),('416965309882442290',4448,'41696530987','38','1.00','350','retail','0','2023-10-05 21:36:27','','','','0','Cash',0.00,'350','','','4','','1','2023-10-05 18:36:31','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-541.00','-542','Inclusive','branch','Inventory','','','','',''),('416965328053421300',4449,'41696532805','40','1.00','600','retail','0','2023-10-05 22:06:45','','','','0','Cash',0.00,'600','','','4','','1','2023-10-05 19:06:49','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-39.00','-40','Inclusive','branch','Inventory','','','','',''),('616965779917925764',4450,'61696577991','1','1.00','280','retail','0','2023-10-06 10:39:51','','','','0','Cash',0.00,'280','','','6','','1','2023-10-06 07:39:56','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-328.00','-329','Inclusive','branch','Inventory','','','','',''),('616965779933421300',4451,'61696577991','1','1.00','280','retail','0','2023-10-06 10:39:52','','','','0','Cash',0.00,'280','','','6','','1','2023-10-06 07:39:56','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-329.00','-330','Inclusive','branch','Inventory','','','','',''),('616965780110202036',4452,'61696578011','12','1.00','250','retail','0','2023-10-06 10:40:11','','','','0','Cash',0.00,'250','','','6','','1','2023-10-06 07:40:19','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-110.00','-111','Inclusive','branch','Inventory','','','','',''),('616965780173421300',4453,'61696578011','21','1.00','200','retail','0','2023-10-06 10:40:16','','','','0','Cash',0.00,'200','','','6','','1','2023-10-06 07:40:19','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-543.00','-544','Inclusive','branch','Inventory','','','','',''),('616965799689280932',4454,'61696579968','50','1.00','800','retail','0','2023-10-06 11:12:48','','','','650','Cash',0.00,'800','','','6','','1','2023-10-06 08:12:51','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','None Inventory','1110','4000','5500','',''),('616966016401926164',4455,'61696601639','3','1.00','200','retail','0','2023-10-06 17:13:59','','','','0','Cash',0.00,'200','','','6','','1','2023-10-06 14:14:02','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-152.00','-153','Inclusive','branch','Inventory','','','','',''),('416966043340202036',4456,'41696604333','38','1.00','350','retail','0','2023-10-06 17:58:53','','','41696612664','0','Cash',0.00,'350','','','4','','1','2023-10-06 17:18:00','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-542.00','-543','Inclusive','branch','Inventory','','','','',''),('416966075207926744',4457,'41696607519','21','1.00','200','retail','0','2023-10-06 18:51:59','','','','0','Cash',0.00,'200','','','4','','1','2023-10-06 15:52:02','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-544.00','-545','Inclusive','branch','Inventory','','','','',''),('416966116044212432',4458,'41696611604','53','1.00','200','retail','0','2023-10-06 20:00:04','','','','150','Cash',0.00,'200','','','4','','1','2023-10-06 17:00:12','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','43.00','42','Inclusive','branch','Inventory','1110','4000','5500','',''),('416966126513421300',4459,'41696612650','38','1.00','350','retail','0','2023-10-06 20:17:30','','','41696612664','0','Cash',0.00,'350','','','4','','1','2023-10-06 17:17:59','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-543.00','-544','Inclusive','branch','Inventory','','','','',''),('416966175582222032',4460,'41696617557','8','1.00','150','retail','0','2023-10-06 21:39:17','','','','0','Cash',0.00,'150','','','4','','1','2023-10-06 18:39:21','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-90.00','-91','Inclusive','branch','Inventory','','','','',''),('416966197434212432',4461,'41696619742','38','1.00','350','retail','0','2023-10-06 22:15:42','','','','0','Cash',0.00,'350','','','4','','1','2023-10-06 19:15:45','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-544.00','-545','Inclusive','branch','Inventory','','','','',''),('616966668000202036',4462,'61696666799','21','1.00','200','retail','0','2023-10-07 11:19:59','','','','0','Cash',0.00,'200','','','6','','1','2023-10-07 08:20:03','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-545.00','-546','Inclusive','branch','Inventory','','','','',''),('616966681643022361',4463,'61696668164','2','1.00','250','retail','0','2023-10-07 11:42:44','','','','0','Cash',0.00,'250','','','6','','1','2023-10-07 08:43:03','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-96.00','-97','Inclusive','branch','Inventory','','','','',''),('616966681698926864',4464,'61696668164','11','1.00','280','retail','0','2023-10-07 11:42:48','','','','0','Cash',0.00,'280','','','6','','1','2023-10-07 08:43:03','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-90.00','-91','Inclusive','branch','Inventory','','','','',''),('616966681768926864',4465,'61696668164','25','1.00','100','retail','0','2023-10-07 11:42:55','','','','0','Cash',0.00,'100','','','6','','1','2023-10-07 08:43:03','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-2.00','-3','Inclusive','branch','Inventory','','','','',''),('616966681779270932',4466,'61696668164','24','1.00','100','retail','0','2023-10-07 11:42:57','','','','0','Cash',0.00,'100','','','6','','1','2023-10-07 08:43:03','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-36.00','-37','Inclusive','branch','Inventory','','','','',''),('616966834953926364',4467,'61696683495','21','1.00','200','retail','0','2023-10-07 15:58:15','','','','0','Cash',0.00,'200','','','6','','1','2023-10-07 12:58:18','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-546.00','-547','Inclusive','branch','Inventory','','','','',''),('616966901730926064',4468,'61696690172','29','1.00','300','retail','0','2023-10-07 17:49:32','','','','0','Cash',0.00,'300','','','6','','1','2023-10-07 14:49:42','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-37.00','-38','Inclusive','branch','Inventory','','','','',''),('616966901792067362',4469,'61696690172','24','1.00','100','retail','0','2023-10-07 17:49:38','','','','0','Cash',0.00,'100','','','6','','1','2023-10-07 14:49:42','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-37.00','-38','Inclusive','branch','Inventory','','','','',''),('416966919930661220',4470,'41696691992','7','1.00','200','retail','0','2023-10-07 18:19:52','','','','0','Cash',0.00,'200','','','4','','1','2023-10-07 15:20:02','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-220.00','-221','Inclusive','branch','Inventory','','','','',''),('416966919962169362',4471,'41696691992','4','1.00','150','retail','0','2023-10-07 18:19:55','','','','0','Cash',0.00,'150','','','4','','1','2023-10-07 15:20:02','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-57.00','-58','Inclusive','branch','Inventory','','','','',''),('416966939659250932',4472,'41696693964','23','1.00','250','retail','0','2023-10-07 18:52:44','','','','0','Cash',0.00,'250','','','4','','1','2023-10-07 15:52:47','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-190.00','-191','Inclusive','branch','Inventory','','','','',''),('416966974409200932',4473,'41696697439','20','1.00','200','retail','0','2023-10-07 19:50:39','','','','0','Cash',0.00,'200','','','4','','1','2023-10-07 16:50:42','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-219.00','-220','Inclusive','branch','Inventory','','','','',''),('416967039290202036',4474,'41696703928','21','1.00','200','retail','0','2023-10-07 21:38:49','','','','0','Cash',0.00,'200','','','4','','1','2023-10-07 18:38:52','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-547.00','-548','Inclusive','branch','Inventory','','','','',''),('416968348722467362',4475,'41696834871','1','1.00','280','retail','0','2023-10-09 10:01:11','','','','0','Cash',0.00,'280','','','4','','1','2023-10-09 07:01:17','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-330.00','-331','Inclusive','branch','Inventory','','','','',''),('416968349638308640',4476,'41696834962','1','1.00','280','retail','0','2023-10-09 10:02:42','','','','0','Cash',0.00,'280','','','4','','1','2023-10-09 07:03:07','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-331.00','-332','Inclusive','branch','Inventory','','','','',''),('416968358453421300',4477,'41696835844','21','1.00','200','retail','0','2023-10-09 10:17:24','','','','0','Cash',0.00,'200','','','4','','1','2023-10-09 07:17:43','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-548.00','-549','Inclusive','branch','Inventory','','','','',''),('416968358575928544',4478,'41696835844','21','1.00','200','retail','0','2023-10-09 10:17:37','','','','0','Cash',0.00,'200','','','4','','1','2023-10-09 07:17:43','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-549.00','-550','Inclusive','branch','Inventory','','','','',''),('416968481562222032',4479,'41696848155','9','1.00','200','retail','0','2023-10-09 13:42:35','','','','0','Cash',0.00,'200','','','4','','1','2023-10-09 10:43:04','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-13.00','-14','Inclusive','branch','Inventory','','','','',''),('416968481799290932',4480,'41696848155','11','1.00','280','retail','0','2023-10-09 13:42:59','','','','0','Cash',0.00,'280','','','4','','1','2023-10-09 10:43:04','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-91.00','-92','Inclusive','branch','Inventory','','','','',''),('416968483363421300',4481,'41696848335','11','1.00','280','retail','0','2023-10-09 13:45:35','','','','0','Cash',0.00,'280','','','4','','1','2023-10-09 10:45:56','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-92.00','-93','Inclusive','branch','Inventory','','','','',''),('416968483443421300',4482,'41696848335','4','1.00','150','retail','0','2023-10-09 13:45:43','','','','0','Cash',0.00,'150','','','4','','1','2023-10-09 10:45:56','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-58.00','-59','Inclusive','branch','Inventory','','','','',''),('616968661253022321',4483,'61696866124','21','1.00','200','retail','0','2023-10-09 18:42:04','','','','0','Cash',0.00,'200','','','6','','1','2023-10-09 15:42:07','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-550.00','-551','Inclusive','branch','Inventory','','','','',''),('616968667773421300',4484,'61696866776','21','1.00','200','retail','0','2023-10-09 18:52:56','','','','0','Cash',0.00,'200','','','6','','1','2023-10-09 15:52:59','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-551.00','-552','Inclusive','branch','Inventory','','','','',''),('616968676370202036',4485,'61696867637','38','1.00','350','retail','0','2023-10-09 19:07:17','','','','0','Cash',0.00,'350','','','6','','1','2023-10-09 16:07:20','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-545.00','-546','Inclusive','branch','Inventory','','','','',''),('416969238254222432',4486,'41696923824','21','1.00','200','retail','0','2023-10-10 10:43:44','','','','0','Cash',0.00,'200','','','4','','1','2023-10-10 07:43:53','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-552.00','-553','Inclusive','branch','Inventory','','','','',''),('416969238432364362',4487,'41696923842','21','1.00','200','retail','0','2023-10-10 10:44:02','','','','0','Cash',0.00,'200','','','4','','1','2023-10-10 07:44:05','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-553.00','-554','Inclusive','branch','Inventory','','','','',''),('416969239223421300',4488,'41696923921','11','1.00','280','retail','0','2023-10-10 10:45:21','','','','0','Cash',0.00,'280','','','4','','1','2023-10-10 07:45:29','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-93.00','-94','Inclusive','branch','Inventory','','','','',''),('416969260032660362',4489,'41696926003','11','1.00','280','retail','0','2023-10-10 11:20:03','','','','0','Cash',0.00,'280','','','4','','1','2023-10-10 08:39:08','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-94.00','-95','Inclusive','branch','Inventory','','','','',''),('416969260112661362',4490,'41696926003','46','1.00','200','retail','0','2023-10-10 11:20:10','','','','0','Cash',0.00,'200','','','4','','1','2023-10-10 08:39:08','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','0.00','-1','Inclusive','branch','Inventory','','','','',''),('416969260140202036',4491,'41696926003','46','1.00','200','retail','0','2023-10-10 11:20:14','','','','0','Cash',0.00,'200','','','4','','1','2023-10-10 08:39:08','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-1.00','-2','Inclusive','branch','Inventory','','','','',''),('416969428492264362',4492,'41696942848','21','1.00','200','retail','0','2023-10-10 16:00:48','','','','0','Cash',0.00,'200','','','4','','1','2023-10-10 13:00:53','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-554.00','-555','Inclusive','branch','Inventory','','','','',''),('616969643664262432',4493,'61696964366','3','1.00','200','retail','0','2023-10-10 21:59:26','','','','0','Cash',0.00,'200','','','6','','1','2023-10-10 18:59:29','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-153.00','-154','Inclusive','branch','Inventory','','','','',''),('616970218542165372',4494,'61697021853','38','1.00','350','retail','0','2023-10-11 13:57:34','','','','0','Cash',0.00,'350','','','6','','1','2023-10-11 10:57:36','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-546.00','-547','Inclusive','branch','Inventory','','','','',''),('616970246223473300',4495,'61697024621','17','1.00','200','retail','0','2023-10-11 14:43:41','','','','0','Cash',0.00,'200','','','6','','1','2023-10-11 11:43:44','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-76.00','-77','Inclusive','branch','Inventory','','','','',''),('616970322130202037',4496,'61697032212','12','1.00','250','retail','0','2023-10-11 16:50:12','','','','0','Cash',0.00,'250','','','6','','1','2023-10-11 13:50:17','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-111.00','-112','Inclusive','branch','Inventory','','','','',''),('616970322162920264',4497,'61697032212','1','1.00','280','retail','0','2023-10-11 16:50:15','','','','0','Cash',0.00,'280','','','6','','1','2023-10-11 13:50:17','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-332.00','-333','Inclusive','branch','Inventory','','','','',''),('616970396569260932',4498,'61697039656','38','1.00','350','retail','0','2023-10-11 18:54:16','','','','0','Cash',0.00,'350','','','6','','1','2023-10-11 15:54:18','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-547.00','-548','Inclusive','branch','Inventory','','','','',''),('616970396812968372',4499,'61697039681','8','1.00','150','retail','0','2023-10-11 18:54:41','','','','0','Cash',0.00,'150','','','6','','1','2023-10-11 15:54:44','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-91.00','-92','Inclusive','branch','Inventory','','','','',''),('616970427062260372',4500,'61697042705','21','1.00','200','retail','0','2023-10-11 19:45:05','','','','0','Cash',0.00,'200','','','6','','1','2023-10-11 16:45:08','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-555.00','-556','Inclusive','branch','Inventory','','','','',''),('616970427194242432',4501,'61697042718','5','1.00','300','retail','0','2023-10-11 19:45:18','','','','0','Cash',0.00,'300','','','6','','1','2023-10-11 16:45:24','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-122.00','-123','Inclusive','branch','Inventory','','','','',''),('616971001512222032',4502,'61697100150','17','1.00','200','retail','0','2023-10-12 11:42:30','','','','0','Cash',0.00,'200','','','6','','1','2023-10-12 08:42:34','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-77.00','-78','Inclusive','branch','Inventory','','','','',''),('616971029372921264',4503,'61697102937','29','1.00','300','retail','0','2023-10-12 12:28:57','','','','0','Cash',0.00,'300','','','6','','1','2023-10-12 09:29:14','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-38.00','-39','Inclusive','branch','Inventory','','','','',''),('616971029429220932',4504,'61697102937','24','1.00','100','retail','0','2023-10-12 12:29:02','','','','0','Cash',0.00,'100','','','6','','1','2023-10-12 09:29:14','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-38.00','-39','Inclusive','branch','Inventory','','','','',''),('616971057782222032',4505,'61697105777','17','1.00','200','retail','0','2023-10-12 13:16:17','','','','0','Cash',0.00,'200','','','6','','1','2023-10-12 10:16:31','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-78.00','-79','Inclusive','branch','Inventory','','','','',''),('616971150593032202',4506,'61697115058','23','1.00','250','retail','0','2023-10-12 15:50:58','','','','0','Cash',0.00,'250','','','6','','1','2023-10-12 12:51:01','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-191.00','-192','Inclusive','branch','Inventory','','','','',''),('616971196073421300',4507,'61697119607','11','1.00','280','retail','0','2023-10-12 17:06:47','','','','0','Cash',0.00,'280','','','6','','1','2023-10-12 14:06:49','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-95.00','-96','Inclusive','branch','Inventory','','','','',''),('616971196182222032',4508,'61697119617','20','1.00','200','retail','0','2023-10-12 17:06:57','','','','0','Cash',0.00,'200','','','6','','1','2023-10-12 14:07:01','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-220.00','-221','Inclusive','branch','Inventory','','','','',''),('416971341962222032',4509,'41697134195','1','1.00','280','retail','0','2023-10-12 21:09:55','','','','0','Cash',0.00,'280','','','4','','1','2023-10-12 18:10:38','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-333.00','-334','Inclusive','branch','Inventory','','','','',''),('416971341984921444',4510,'41697134195','1','1.00','280','retail','0','2023-10-12 21:09:58','','','','0','Cash',0.00,'280','','','4','','1','2023-10-12 18:10:38','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-334.00','-335','Inclusive','branch','Inventory','','','','',''),('416971342124232432',4511,'41697134195','1','1.00','280','retail','0','2023-10-12 21:10:11','','','','0','Cash',0.00,'280','','','4','','1','2023-10-12 18:10:38','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-335.00','-336','Inclusive','branch','Inventory','','','','',''),('416971342262462372',4512,'41697134195','52','1.00','150','retail','0','2023-10-12 21:10:26','','','','200','Cash',0.00,'150','','','4','','1','2023-10-12 18:10:38','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416971342303421300',4513,'41697134195','23','1.00','250','retail','0','2023-10-12 21:10:30','','','','0','Cash',0.00,'250','','','4','','1','2023-10-12 18:10:38','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-192.00','-193','Inclusive','branch','Inventory','','','','',''),('416971356614232432',4514,'41697135660','20','1.00','200','retail','0','2023-10-12 21:34:20','','','','0','Cash',0.00,'200','','','4','','1','2023-10-12 18:34:24','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-221.00','-222','Inclusive','branch','Inventory','','','','',''),('416971356975921544',4515,'41697135697','53','1.00','200','retail','0','2023-10-12 21:34:57','','','','150','Cash',0.00,'200','','','4','','1','2023-10-12 18:35:03','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','42.00','41','Inclusive','branch','Inventory','1110','4000','5500','',''),('416971784000202037',4516,'41697178399','5','1.00','300','retail','0','2023-10-13 09:26:39','','','','0','Cash',0.00,'300','','','4','','1','2023-10-13 06:26:45','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-123.00','-124','Inclusive','branch','Inventory','','','','',''),('416971784024272432',4517,'41697178399','5','1.00','300','retail','0','2023-10-13 09:26:42','','','','0','Cash',0.00,'300','','','4','','1','2023-10-13 06:26:45','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-124.00','-125','Inclusive','branch','Inventory','','','','',''),('416971819344223040',4518,'41697181933','52','1.00','150','retail','0','2023-10-13 10:25:33','','','','200','Cash',0.00,'150','','','4','','1','2023-10-13 07:25:41','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416971822332263372',4519,'41697182232','28','1.00','300','retail','0','2023-10-13 10:30:32','','','','0','Cash',0.00,'300','','','4','','1','2023-10-13 07:30:45','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-4.00','-5','Inclusive','branch','Inventory','','','','',''),('416971823262262372',4520,'41697182326','23','1.00','250','retail','0','2023-10-13 10:32:06','','','','0','Cash',0.00,'250','','','4','','1','2023-10-13 07:32:09','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-193.00','-194','Inclusive','branch','Inventory','','','','',''),('416971829863022389',4521,'41697182985','54','1.00','350','retail','0','2023-10-13 10:43:05','','','','200','Cash',0.00,'350','','','4','','1','2023-10-13 07:43:54','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Service','1110','4000','5500','',''),('416971830293022320',4522,'41697182985','46','1.00','200','retail','0','2023-10-13 10:43:49','','','','0','Cash',0.00,'200','','','4','','1','2023-10-13 07:43:54','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-2.00','-3','Inclusive','branch','Inventory','','','','',''),('416971952513022352',4523,'41697195250','16','1.00','200','retail','0','2023-10-13 14:07:30','','','','0','Cash',0.00,'200','','','4','','1','2023-10-13 11:07:39','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-35.00','-36','Inclusive','branch','Inventory','','','','',''),('416971953455921544',4524,'41697195344','13','1.00','280','retail','0','2023-10-13 14:09:04','','','','0','Cash',0.00,'280','','','4','','1','2023-10-13 11:09:20','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-7.00','-8','Inclusive','branch','Inventory','','','','',''),('616972084872868372',4525,'61697208486','1','1.00','280','retail','0','2023-10-13 17:48:06','','','','0','Cash',0.00,'280','','','6','','1','2023-10-13 14:48:09','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-336.00','-337','Inclusive','branch','Inventory','','','','',''),('416972680293022320',4526,'41697268028','21','1.00','200','retail','0','2023-10-14 10:20:28','','','','0','Cash',0.00,'200','','','4','','1','2023-10-14 07:20:33','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-556.00','-557','Inclusive','branch','Inventory','','','','',''),('616973005900202037',4527,'61697300589','11','1.00','280','retail','0','2023-10-14 19:23:09','','','','0','Cash',0.00,'280','','','6','','1','2023-10-14 16:23:14','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-96.00','-97','Inclusive','branch','Inventory','','','','',''),('616973086614202432',4528,'61697308661','38','1.00','350','retail','0','2023-10-14 21:37:41','','','','0','Cash',0.00,'350','','','6','','1','2023-10-14 18:37:44','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-548.00','-549','Inclusive','branch','Inventory','','','','',''),('616973110922169372',4529,'61697311091','5','1.00','300','retail','0','2023-10-14 22:18:11','','','','0','Cash',0.00,'300','','','6','','1','2023-10-14 19:18:14','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-125.00','-126','Inclusive','branch','Inventory','','','','',''),('616973120500202037',4530,'61697312050','21','1.00','200','retail','0','2023-10-14 22:34:10','','','','0','Cash',0.00,'200','','','6','','1','2023-10-14 19:34:13','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-557.00','-558','Inclusive','branch','Inventory','','','','',''),('416973540812222032',4531,'41697354081','7','1.00','200','retail','0','2023-10-15 10:14:41','','','','0','Cash',0.00,'200','','','4','','1','2023-10-15 07:14:43','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-221.00','-222','Inclusive','branch','Inventory','','','','',''),('416973541152222032',4532,'41697354115','1','1.00','280','retail','0','2023-10-15 10:15:15','','','','0','Cash',0.00,'280','','','4','','1','2023-10-15 07:15:21','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-337.00','-338','Inclusive','branch','Inventory','','','','',''),('416973548643022368',4533,'41697354864','1','1.00','280','retail','0','2023-10-15 10:27:44','','','','0','Cash',0.00,'280','','','4','','1','2023-10-15 07:27:51','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-338.00','-339','Inclusive','branch','Inventory','','','','',''),('416973641981093303',4534,'41697364197','2','1.00','250','retail','0','2023-10-15 13:03:17','','','','0','Cash',0.00,'250','','','4','','1','2023-10-15 10:03:36','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-97.00','-98','Inclusive','branch','Inventory','','','','',''),('416973642043022302',4535,'41697364197','21','1.00','200','retail','0','2023-10-15 13:03:24','','','','0','Cash',0.00,'200','','','4','','1','2023-10-15 10:03:36','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-558.00','-559','Inclusive','branch','Inventory','','','','',''),('416973642109200932',4536,'41697364197','38','1.00','350','retail','0','2023-10-15 13:03:30','','','','0','Cash',0.00,'350','','','4','','1','2023-10-15 10:03:36','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-549.00','-550','Inclusive','branch','Inventory','','','','',''),('416973642133421000',4537,'41697364197','38','1.00','350','retail','0','2023-10-15 13:03:32','','','','0','Cash',0.00,'350','','','4','','1','2023-10-15 10:03:36','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-550.00','-551','Inclusive','branch','Inventory','','','','',''),('416973684689280932',4538,'41697368467','38','1.00','350','retail','0','2023-10-15 14:14:27','','','','0','Cash',0.00,'350','','','4','','1','2023-10-15 11:14:35','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-551.00','-552','Inclusive','branch','Inventory','','','','',''),('416973886438923844',4539,'41697388642','21','1.00','200','retail','0','2023-10-15 19:50:42','','','','0','Cash',0.00,'200','','','4','','1','2023-10-15 16:51:04','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-559.00','-560','Inclusive','branch','Inventory','','','','',''),('416973886553421300',4540,'41697388642','21','0.00','0','retail','0','2023-10-15 19:50:55','','','','0','Cash',0.00,'200','','','4','','1','2023-10-15 16:51:04','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'0','-560.00','-560','Inclusive','branch','Inventory','','','','',''),('416973886580202037',4541,'41697388642','21','1.00','200','retail','0','2023-10-15 19:50:58','','','','0','Cash',0.00,'200','','','4','','1','2023-10-15 16:51:04','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-560.00','-561','Inclusive','branch','Inventory','','','','',''),('416973886608923844',4542,'41697388642','21','1.00','200','retail','0','2023-10-15 19:51:00','','','','0','Cash',0.00,'200','','','4','','1','2023-10-15 16:51:04','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-561.00','-562','Inclusive','branch','Inventory','','','','',''),('416973893353022333',4543,'41697389334','21','1.00','200','retail','0','2023-10-15 20:02:14','','','','0','Cash',0.00,'200','','','4','','1','2023-10-15 17:02:17','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-562.00','-563','Inclusive','branch','Inventory','','','','',''),('416973916832168372',4544,'41697391682','30','1.00','330','retail','0','2023-10-15 20:41:23','','','','0','Cash',0.00,'330','','','4','','1','2023-10-15 17:41:26','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-16.00','-17','Inclusive','branch','Inventory','','','','',''),('416974357675924544',4545,'41697435766','54','1.00','350','retail','0','2023-10-16 08:56:06','','','','200','Cash',0.00,'350','','','4','','1','2023-10-16 05:56:11','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Service','1110','4000','5500','',''),('416974366402222032',4546,'41697436640','22','1.00','250','retail','0','2023-10-16 09:10:40','','','','0','Cash',0.00,'250','','','4','','1','2023-10-16 06:10:47','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-56.00','-57','Inclusive','branch','Inventory','','','','',''),('416974366582665372',4547,'41697436656','22','1.00','250','retail','0','2023-10-16 09:10:56','','','','0','Cash',0.00,'250','','','4','','1','2023-10-16 06:11:11','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-57.00','-58','Inclusive','branch','Inventory','','','','',''),('416974366593022356',4548,'41697436656','22','1.00','250','retail','0','2023-10-16 09:10:58','','','','0','Cash',0.00,'250','','','4','','1','2023-10-16 06:11:11','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-58.00','-59','Inclusive','branch','Inventory','','','','',''),('416974407199290932',4549,'41697440719','21','1.00','200','retail','0','2023-10-16 10:18:39','','','','0','Cash',0.00,'200','','','4','','1','2023-10-16 07:18:42','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-563.00','-564','Inclusive','branch','Inventory','','','','',''),('416974561290202037',4550,'41697456128','13','1.00','280','retail','0','2023-10-16 14:35:28','','','','0','Cash',0.00,'280','','','4','','1','2023-10-16 11:35:35','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-8.00','-9','Inclusive','branch','Inventory','','','','',''),('416974638149240932',4551,'41697463814','17','1.00','200','retail','0','2023-10-16 16:43:34','','','','0','Cash',0.00,'200','','','4','','1','2023-10-16 13:43:38','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-79.00','-80','Inclusive','branch','Inventory','','','','',''),('616974673393421300',4552,'61697467339','20','1.00','200','retail','0','2023-10-16 17:42:19','','','','0','Cash',0.00,'200','','','6','','1','2023-10-16 14:54:44','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-222.00','-223','Inclusive','branch','Inventory','','','','',''),('616974673512222032',4553,'61697467339','1','1.00','280','retail','0','2023-10-16 17:42:31','','','','0','Cash',0.00,'280','','','6','','1','2023-10-16 14:54:44','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-339.00','-340','Inclusive','branch','Inventory','','','','',''),('616974803490924064',4554,'61697480349','12','1.00','250','retail','0','2023-10-16 21:19:09','','','','0','Cash',0.00,'250','','','6','','1','2023-10-16 18:19:12','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-112.00','-113','Inclusive','branch','Inventory','','','','',''),('616975275032760372',4555,'61697527503','21','1.00','200','retail','0','2023-10-17 10:25:03','','','','0','Cash',0.00,'200','','','6','','1','2023-10-17 07:25:08','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-564.00','-565','Inclusive','branch','Inventory','','','','',''),('616975277183773300',4556,'61697527717','22','1.00','250','retail','0','2023-10-17 10:28:37','','','','0','Cash',0.00,'250','','','6','','1','2023-10-17 07:28:54','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-59.00','-60','Inclusive','branch','Inventory','','','','',''),('616975277269260932',4557,'61697527717','47','1.00','200','retail','0','2023-10-17 10:28:46','','','','0','Cash',0.00,'200','','','6','','1','2023-10-17 07:28:54','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','7.00','6','Inclusive','branch','Inventory','','','','',''),('616975352783022372',4558,'61697535277','17','1.00','200','retail','0','2023-10-17 12:34:37','','','','0','Cash',0.00,'200','','','6','','1','2023-10-17 09:34:41','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-80.00','-81','Inclusive','branch','Inventory','','','','',''),('616975515203421300',4559,'61697551519','12','1.00','250','retail','0','2023-10-17 17:05:19','','','','0','Cash',0.00,'250','','','6','','1','2023-10-17 14:05:23','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-113.00','-114','Inclusive','branch','Inventory','','','','',''),('616975515339230932',4560,'61697551532','20','1.00','200','retail','0','2023-10-17 17:05:32','','','','0','Cash',0.00,'200','','','6','','1','2023-10-17 14:05:39','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-223.00','-224','Inclusive','branch','Inventory','','','','',''),('616975515344252432',4561,'61697551532','20','1.00','200','retail','0','2023-10-17 17:05:34','','','','0','Cash',0.00,'200','','','6','','1','2023-10-17 14:05:39','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-224.00','-225','Inclusive','branch','Inventory','','','','',''),('616975515521925164',4562,'61697551551','1','1.00','280','retail','0','2023-10-17 17:05:51','','','','0','Cash',0.00,'280','','','6','','1','2023-10-17 14:05:57','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-340.00','-341','Inclusive','branch','Inventory','','','','',''),('416975608432064372',4563,'41697560842','1','1.00','280','retail','0','2023-10-17 19:40:42','','','','0','Cash',0.00,'280','','','4','','1','2023-10-17 16:40:46','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-341.00','-342','Inclusive','branch','Inventory','','','','',''),('416975613539230932',4564,'41697561352','20','1.00','200','retail','0','2023-10-17 19:49:12','','','','0','Cash',0.00,'200','','','4','','1','2023-10-17 16:49:18','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-225.00','-226','Inclusive','branch','Inventory','','','','',''),('416975621484262432',4565,'41697562147','5','1.00','300','retail','0','2023-10-17 20:02:27','','','','0','Cash',0.00,'300','','','4','','1','2023-10-17 17:02:33','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-126.00','-127','Inclusive','branch','Inventory','','','','',''),('416975681948925844',4566,'41697568193','30','1.00','330','retail','0','2023-10-17 21:43:14','','','','0','Cash',0.00,'330','','','4','','1','2023-10-17 18:45:58','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-17.00','-18','Inclusive','branch','Inventory','','','','',''),('416985922172261382',4567,'41698592217','3','1.00','200','retail','0','2023-10-29 18:10:17','','','','0','Cash',0.00,'200','','','4','','1','2023-10-29 15:10:22','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-154.00','-155','Inclusive','branch','Inventory','','','','',''),('416985989962869382',4568,'41698598995','1','1.00','280','retail','0','2023-10-29 20:03:15','','','','0','Cash',0.00,'280','','','4','','1','2023-10-29 17:03:20','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-342.00','-343','Inclusive','branch','Inventory','','','','',''),('416986530649240932',4570,'41698653063','1','1.00','280','retail','0','2023-10-30 11:04:23','','','','0','Cash',0.00,'280','','','4','','1','2023-10-30 08:05:07','','1','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-343.00','-344','Inclusive','branch','Inventory','','','','',''),('416986531390202038',4571,'41698653138','2','1.00','250','retail','0','2023-10-30 11:05:38','','','','0','Cash',0.00,'250','','','4','','1','2023-10-30 08:05:42','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-98.00','-99','Inclusive','branch','Inventory','','','','',''),('416986531543421300',4572,'41698653153','1','1.00','280','retail','0','2023-10-30 11:05:53','','','','0','Cash',0.00,'280','','','4','','1','2023-10-30 08:06:02','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-344.00','-345','Inclusive','branch','Inventory','','','','',''),('416986629612222032',4573,'41698662961','2','1.00','250','retail','0','2023-10-30 13:49:21','','','','0','Cash',0.00,'250','','','4','','1','2023-10-30 10:49:30','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-99.00','-100','Inclusive','branch','Inventory','','','','',''),('616986782060202038',4574,'61698678205','7','1.00','200','retail','0','2023-10-30 18:03:25','','','','0','Cash',0.00,'200','','','6','','1','2023-10-30 15:03:28','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-222.00','-223','Inclusive','branch','Inventory','','','','',''),('616986809332222032',4575,'61698680932','38','1.00','350','retail','0','2023-10-30 18:48:52','','','','0','Cash',0.00,'350','','','6','','1','2023-10-30 15:48:55','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-552.00','-553','Inclusive','branch','Inventory','','','','',''),('616986809449240932',4576,'61698680943','23','1.00','250','retail','0','2023-10-30 18:49:03','','','','0','Cash',0.00,'250','','','6','','1','2023-10-30 15:49:06','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-194.00','-195','Inclusive','branch','Inventory','','','','',''),('616986809582222032',4577,'61698680958','21','1.00','200','retail','0','2023-10-30 18:49:18','','','','0','Cash',0.00,'200','','','6','','1','2023-10-30 15:49:21','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-565.00','-566','Inclusive','branch','Inventory','','','','',''),('616986822703022372',4578,'61698682270','21','1.00','200','retail','0','2023-10-30 19:11:10','','','','0','Cash',0.00,'200','','','6','','1','2023-10-30 16:11:13','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-566.00','-567','Inclusive','branch','Inventory','','','','',''),('616986855583022355',4579,'61698685558','29','1.00','300','retail','0','2023-10-30 20:05:58','','','','0','Cash',0.00,'300','','','6','','1','2023-10-30 17:06:15','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-39.00','-40','Inclusive','branch','Inventory','','','','',''),('616986855612566382',4580,'61698685558','29','1.00','300','retail','0','2023-10-30 20:06:01','','','','0','Cash',0.00,'300','','','6','','1','2023-10-30 17:06:15','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-40.00','-41','Inclusive','branch','Inventory','','','','',''),('616986855704282432',4581,'61698685558','24','1.00','100','retail','0','2023-10-30 20:06:09','','','','0','Cash',0.00,'100','','','6','','1','2023-10-30 17:06:15','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-39.00','-40','Inclusive','branch','Inventory','','','','',''),('616986855722567382',4582,'61698685558','24','1.00','100','retail','0','2023-10-30 20:06:12','','','','0','Cash',0.00,'100','','','6','','1','2023-10-30 17:06:15','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-40.00','-41','Inclusive','branch','Inventory','','','','',''),('616986894793421300',4583,'61698689478','38','1.00','350','retail','0','2023-10-30 21:11:19','','','','0','Cash',0.00,'350','','','6','','1','2023-10-30 18:11:21','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-553.00','-554','Inclusive','branch','Inventory','','','','',''),('616987347722222032',4584,'61698734771','21','1.00','200','retail','0','2023-10-31 09:46:11','','','','0','Cash',0.00,'200','','','6','','1','2023-10-31 06:46:15','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-567.00','-568','Inclusive','branch','Inventory','','','','',''),('616987364682666382',4585,'61698736467','12','1.00','250','retail','0','2023-10-31 10:14:28','','','','0','Cash',0.00,'250','','','6','','1','2023-10-31 07:14:37','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-114.00','-115','Inclusive','branch','Inventory','','','','',''),('616987478662222032',4586,'61698747865','3','1.00','200','retail','0','2023-10-31 13:24:25','','','','0','Cash',0.00,'200','','','6','','1','2023-10-31 10:24:28','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-155.00','-156','Inclusive','branch','Inventory','','','','',''),('416987603552222032',4587,'41698760354','38','1.00','350','retail','0','2023-10-31 16:52:34','','','','0','Cash',0.00,'350','','','4','','1','2023-10-31 13:52:39','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-554.00','-555','Inclusive','branch','Inventory','','','','',''),('416987603562222032',4588,'41698760354','38','1.00','350','retail','0','2023-10-31 16:52:36','','','','0','Cash',0.00,'350','','','4','','1','2023-10-31 13:52:39','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-555.00','-556','Inclusive','branch','Inventory','','','','',''),('616987618572222032',4589,'61698761856','11','1.00','280','retail','0','2023-10-31 17:17:36','','','','0','Cash',0.00,'280','','','6','','1','2023-10-31 14:17:39','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-97.00','-98','Inclusive','branch','Inventory','','','','',''),('616987628973022398',4590,'61698762896','21','1.00','200','retail','0','2023-10-31 17:34:56','','','','0','Cash',0.00,'200','','','6','','1','2023-10-31 14:34:58','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-568.00','-569','Inclusive','branch','Inventory','','','','',''),('416987629993421300',4591,'41698762998','11','1.00','280','retail','0','2023-10-31 17:36:38','','','','0','Cash',0.00,'280','','','4','','1','2023-10-31 14:36:46','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-98.00','-99','Inclusive','branch','Inventory','','','','',''),('416987630042222032',4592,'41698762998','46','1.00','200','retail','0','2023-10-31 17:36:43','','','','0','Cash',0.00,'200','','','4','','1','2023-10-31 14:36:46','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-3.00','-4','Inclusive','branch','Inventory','','','','',''),('416987759542222032',4593,'41698775953','21','1.00','200','retail','0','2023-10-31 21:12:33','','','','0','Cash',0.00,'200','','','4','','1','2023-10-31 18:12:37','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-569.00','-570','Inclusive','branch','Inventory','','','','',''),('616987771280202038',4594,'61698777127','1','1.00','280','retail','0','2023-10-31 21:32:07','','','','0','Cash',0.00,'280','','','6','','1','2023-10-31 18:32:12','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-345.00','-346','Inclusive','branch','Inventory','','','','',''),('616988218133421300',4595,'61698821812','11','1.00','280','retail','0','2023-11-01 09:56:52','','','','0','Cash',0.00,'280','','','6','','1','2023-11-01 06:56:58','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-99.00','-100','Inclusive','branch','Inventory','','','','',''),('616988218153022318',4596,'61698821812','5','1.00','300','retail','0','2023-11-01 09:56:55','','','','0','Cash',0.00,'300','','','6','','1','2023-11-01 06:56:58','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-127.00','-128','Inclusive','branch','Inventory','','','','',''),('616988218423421300',4597,'61698821841','21','1.00','200','retail','0','2023-11-01 09:57:21','','','','0','Cash',0.00,'200','','','6','','1','2023-11-01 06:57:24','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-570.00','-571','Inclusive','branch','Inventory','','','','',''),('616988235330202038',4598,'61698823532','11','1.00','280','retail','0','2023-11-01 10:25:32','','','','0','Cash',0.00,'280','','','6','','1','2023-11-01 07:25:50','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-100.00','-101','Inclusive','branch','Inventory','','','','',''),('616988268728310223',4599,'61698826871','1','1.00','280','retail','0','2023-11-01 11:21:11','','','','0','Cash',0.00,'280','','','6','','1','2023-11-01 08:21:13','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-346.00','-347','Inclusive','branch','Inventory','','','','',''),('616988379803421300',4600,'61698837979','38','1.00','350','retail','0','2023-11-01 14:26:19','','','','0','Cash',0.00,'350','','','6','','1','2023-11-01 11:26:22','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-556.00','-557','Inclusive','branch','Inventory','','','','',''),('616988462450202038',4601,'61698846245','38','1.00','350','retail','0','2023-11-01 16:44:05','','','','0','Cash',0.00,'350','','','6','','1','2023-11-01 13:44:21','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-557.00','-558','Inclusive','branch','Inventory','','','','',''),('616988482629220932',4602,'61698848261','38','1.00','350','retail','0','2023-11-01 17:17:41','','','','0','Cash',0.00,'350','','','6','','1','2023-11-01 14:24:11','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-558.00','-559','Inclusive','branch','Inventory','','','','',''),('616988482662222032',4603,'61698848261','11','1.00','280','retail','0','2023-11-01 17:17:46','','','','0','Cash',0.00,'280','','','6','','1','2023-11-01 14:24:11','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-101.00','-102','Inclusive','branch','Inventory','','','','',''),('616988571440202038',4604,'61698857144','5','1.00','300','retail','0','2023-11-01 19:45:44','','','','0','Cash',0.00,'300','','','6','','1','2023-11-01 16:45:47','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-128.00','-129','Inclusive','branch','Inventory','','','','',''),('616988673414262432',4605,'61698867340','21','1.00','200','retail','0','2023-11-01 22:35:40','','','','0','Cash',0.00,'200','','','6','','1','2023-11-01 19:35:45','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-571.00','-572','Inclusive','branch','Inventory','','','','',''),('616988673437928764',4606,'61698867340','21','1.00','200','retail','0','2023-11-01 22:35:43','','','','0','Cash',0.00,'200','','','6','','1','2023-11-01 19:35:45','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-572.00','-573','Inclusive','branch','Inventory','','','','',''),('616988673520202038',4607,'61698867352','21','1.00','200','retail','0','2023-11-01 22:35:52','','','','0','Cash',0.00,'200','','','6','','1','2023-11-01 19:36:04','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-573.00','-574','Inclusive','branch','Inventory','','','','',''),('416989432463022342',4608,'41698943245','38','1.00','350','retail','0','2023-11-02 19:40:45','','','','0','Cash',0.00,'350','','','4','','1','2023-11-02 16:40:49','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-559.00','-560','Inclusive','branch','Inventory','','','','',''),('416989460053022300',4609,'41698946005','1','1.00','280','retail','0','2023-11-02 20:26:45','','','','0','Cash',0.00,'280','','','4','','1','2023-11-02 17:26:47','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-347.00','-348','Inclusive','branch','Inventory','','','','',''),('416989475004242432',4610,'41698947500','20','1.00','200','retail','0','2023-11-02 20:51:40','','','','0','Cash',0.00,'200','','','4','','1','2023-11-02 17:51:45','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-226.00','-227','Inclusive','branch','Inventory','','','','',''),('416989475242762382',4611,'41698947523','38','1.00','350','retail','0','2023-11-02 20:52:03','','','','0','Cash',0.00,'350','','','4','','1','2023-11-02 17:52:08','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-560.00','-561','Inclusive','branch','Inventory','','','','',''),('416989484482864382',4612,'41698948447','7','1.00','200','retail','0','2023-11-02 21:07:27','','','','0','Cash',0.00,'200','','','4','','1','2023-11-02 18:07:32','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-223.00','-224','Inclusive','branch','Inventory','','','','',''),('416989504153421300',4613,'41698950414','20','1.00','200','retail','0','2023-11-02 21:40:14','','','','0','Cash',0.00,'200','','','4','','1','2023-11-02 18:40:19','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-227.00','-228','Inclusive','branch','Inventory','','','','',''),('416989511493421300',4614,'41698951148','20','1.00','200','retail','0','2023-11-02 21:52:28','','','','0','Cash',0.00,'200','','','4','','1','2023-11-02 18:52:34','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-228.00','-229','Inclusive','branch','Inventory','','','','',''),('616989976994292432',4615,'61698997698','21','1.00','200','retail','0','2023-11-03 10:48:18','','','','0','Cash',0.00,'200','','','6','','1','2023-11-03 07:48:21','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-574.00','-575','Inclusive','branch','Inventory','','','','',''),('616989977083022307',4616,'61698997707','21','1.00','200','retail','0','2023-11-03 10:48:27','','','','0','Cash',0.00,'200','','','6','','1','2023-11-03 07:48:30','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-575.00','-576','Inclusive','branch','Inventory','','','','',''),('616989977173421300',4617,'61698997716','21','1.00','200','retail','0','2023-11-03 10:48:36','','','','0','Cash',0.00,'200','','','6','','1','2023-11-03 07:48:39','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-576.00','-577','Inclusive','branch','Inventory','','','','',''),('616990060502203223',4618,'61699006049','38','1.00','350','retail','0','2023-11-03 13:07:29','','','','0','Cash',0.00,'350','','','6','','1','2023-11-03 10:07:33','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-561.00','-562','Inclusive','branch','Inventory','','','','',''),('616990108272062392',4619,'61699010826','20','1.00','200','retail','0','2023-11-03 14:27:06','','','','0','Cash',0.00,'200','','','6','','1','2023-11-03 11:27:09','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-229.00','-230','Inclusive','branch','Inventory','','','','',''),('416990152749240932',4620,'41699015273','3','1.00','200','retail','0','2023-11-03 15:41:13','','','','0','Cash',0.00,'200','','','4','','1','2023-11-03 12:41:16','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-156.00','-157','Inclusive','branch','Inventory','','','','',''),('616990192943022392',4621,'61699019293','60','1.00','100','retail','0','2023-11-03 16:48:13','','','','70','Cash',0.00,'100','','','6','','1','2023-11-03 13:48:16','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500','',''),('416990200320920044',4622,'41699020031','23','1.00','250','retail','0','2023-11-03 17:00:31','','','','0','Cash',0.00,'250','','','4','','1','2023-11-03 14:00:36','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-195.00','-196','Inclusive','branch','Inventory','','','','',''),('416990211674222432',4623,'41699021166','7','1.00','200','retail','0','2023-11-03 17:19:27','','','','0','Cash',0.00,'200','','','4','','1','2023-11-03 14:19:30','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-224.00','-225','Inclusive','branch','Inventory','','','','',''),('416990243399290932',4624,'41699024339','21','1.00','200','retail','0','2023-11-03 18:12:19','','','','0','Cash',0.00,'200','','','4','','1','2023-11-03 15:12:22','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-577.00','-578','Inclusive','branch','Inventory','','','','',''),('416990263724222432',4625,'41699026371','7','1.00','200','retail','0','2023-11-03 18:46:11','','','','0','Cash',0.00,'200','','','4','','1','2023-11-03 15:46:18','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-225.00','-226','Inclusive','branch','Inventory','','','','',''),('416990368152222032',4626,'41699036814','21','1.00','200','retail','0','2023-11-03 21:40:14','','','','0','Cash',0.00,'200','','','4','','1','2023-11-03 18:40:19','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-578.00','-579','Inclusive','branch','Inventory','','','','',''),('616990886130202039',4627,'61699088612','3','1.00','200','retail','0','2023-11-04 12:03:32','','','','0','Cash',0.00,'200','','','6','','1','2023-11-04 09:03:37','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-157.00','-158','Inclusive','branch','Inventory','','','','',''),('616990886143022316',4628,'61699088612','3','1.00','200','retail','0','2023-11-04 12:03:34','','','','0','Cash',0.00,'200','','','6','','1','2023-11-04 09:03:37','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-158.00','-159','Inclusive','branch','Inventory','','','','',''),('616990886232222032',4629,'61699088622','21','1.00','200','retail','0','2023-11-04 12:03:42','','','','0','Cash',0.00,'200','','','6','','1','2023-11-04 09:03:45','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-579.00','-580','Inclusive','branch','Inventory','','','','',''),('616990935244292432',4630,'61699093524','28','1.00','300','retail','0','2023-11-04 13:25:24','','','','0','Cash',0.00,'300','','','6','','1','2023-11-04 10:25:27','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-5.00','-6','Inclusive','branch','Inventory','','','','',''),('616990958492222032',4631,'61699095848','21','1.00','200','retail','0','2023-11-04 14:04:08','','','','0','Cash',0.00,'200','','','6','','1','2023-11-04 11:04:11','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-580.00','-581','Inclusive','branch','Inventory','','','','',''),('616990958602566392',4632,'61699095859','22','1.00','250','retail','0','2023-11-04 14:04:19','','','','0','Cash',0.00,'250','','','6','','1','2023-11-04 11:04:22','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-60.00','-61','Inclusive','branch','Inventory','','','','',''),('616990992353022332',4633,'61699099234','22','1.00','250','retail','0','2023-11-04 15:00:34','','','','0','Cash',0.00,'250','','','6','','1','2023-11-04 12:00:38','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-61.00','-62','Inclusive','branch','Inventory','','','','',''),('616990992360202039',4634,'61699099234','22','1.00','250','retail','0','2023-11-04 15:00:35','','','','0','Cash',0.00,'250','','','6','','1','2023-11-04 12:00:38','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-62.00','-63','Inclusive','branch','Inventory','','','','',''),('416991016463022346',4635,'41699101645','21','1.00','200','retail','0','2023-11-04 15:40:45','','','','0','Cash',0.00,'200','','','4','','1','2023-11-04 12:40:48','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-581.00','-582','Inclusive','branch','Inventory','','','','',''),('416991153465921544',4636,'41699115345','21','1.00','200','retail','0','2023-11-04 19:29:05','','','','0','Cash',0.00,'200','','','4','','1','2023-11-04 16:29:09','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-582.00','-583','Inclusive','branch','Inventory','','','','',''),('416991157410202039',4637,'41699115741','3','1.00','200','retail','0','2023-11-04 19:35:41','','','','0','Cash',0.00,'200','','','4','','1','2023-11-04 16:35:47','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-159.00','-160','Inclusive','branch','Inventory','','','','',''),('416991218493022348',4638,'41699121849','38','1.00','350','retail','0','2023-11-04 21:17:29','','','','0','Cash',0.00,'350','','','4','','1','2023-11-04 18:17:32','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-562.00','-563','Inclusive','branch','Inventory','','','','',''),('416991227070202039',4639,'41699122706','38','1.00','350','retail','0','2023-11-04 21:31:46','','','','0','Cash',0.00,'350','','','4','','1','2023-11-04 18:31:52','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-563.00','-564','Inclusive','branch','Inventory','','','','',''),('416991813594282432',4640,'41699181358','38','1.00','350','retail','0','2023-11-05 13:49:18','','','','0','Cash',0.00,'350','','','4','','1','2023-11-05 10:49:39','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-564.00','-565','Inclusive','branch','Inventory','','','','',''),('416991813633022363',4641,'41699181358','38','1.00','350','retail','0','2023-11-05 13:49:23','','','','0','Cash',0.00,'350','','','4','','1','2023-11-05 10:49:39','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-565.00','-566','Inclusive','branch','Inventory','','','','',''),('416991860626921644',4642,'41699186062','11','1.00','280','retail','0','2023-11-05 15:07:42','','','','0','Cash',0.00,'280','','','4','','1','2023-11-05 12:07:45','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-102.00','-103','Inclusive','branch','Inventory','','','','',''),('416991985770202039',4643,'41699198576','3','1.00','200','retail','0','2023-11-05 18:36:17','','','','0','Cash',0.00,'200','','','4','','1','2023-11-05 15:36:23','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-160.00','-161','Inclusive','branch','Inventory','','','','',''),('416991985809200932',4644,'41699198576','4','1.00','150','retail','0','2023-11-05 18:36:19','','','','0','Cash',0.00,'150','','','4','','1','2023-11-05 15:36:23','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-59.00','-60','Inclusive','branch','Inventory','','','','',''),('416992005402222032',4645,'41699200540','38','1.00','350','retail','0','2023-11-05 19:09:00','','','','0','Cash',0.00,'350','','','4','','1','2023-11-05 16:09:07','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-566.00','-567','Inclusive','branch','Inventory','','','','',''),('416992031813922344',4646,'41699203180','20','1.00','200','retail','0','2023-11-05 19:53:00','','','','0','Cash',0.00,'200','','','4','','1','2023-11-05 16:53:02','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-230.00','-231','Inclusive','branch','Inventory','','','','',''),('416992049419210932',4647,'41699204941','38','1.00','350','retail','0','2023-11-05 20:22:21','','','','0','Cash',0.00,'350','','','4','','1','2023-11-05 17:22:25','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-567.00','-568','Inclusive','branch','Inventory','','','','',''),('416992050694202432',4648,'41699205069','1','1.00','280','retail','0','2023-11-05 20:24:29','','','','0','Cash',0.00,'280','','','4','','1','2023-11-05 17:24:37','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-348.00','-349','Inclusive','branch','Inventory','','','','',''),('416992083398922844',4649,'41699208338','12','1.00','250','retail','0','2023-11-05 21:18:58','','','','0','Cash',0.00,'250','','','4','','1','2023-11-05 18:19:12','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-115.00','-116','Inclusive','branch','Inventory','','','','',''),('416992083490202039',4650,'41699208338','26','1.00','100','retail','0','2023-11-05 21:19:08','','','','0','Cash',0.00,'100','','','4','','1','2023-11-05 18:19:12','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-46.00','-47','Inclusive','branch','Inventory','','','','',''),('416992678772767392',4651,'41699267876','7','1.00','200','retail','0','2023-11-06 13:51:16','','','','0','Cash',0.00,'200','','','4','','1','2023-11-06 10:51:19','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-226.00','-227','Inclusive','branch','Inventory','','','','',''),('416992744304922444',4652,'41699274429','1','1.00','280','retail','0','2023-11-06 15:40:29','','','','0','Cash',0.00,'280','','','4','','1','2023-11-06 12:40:34','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-349.00','-350','Inclusive','branch','Inventory','','','','',''),('416992744319210932',4653,'41699274429','1','1.00','280','retail','0','2023-11-06 15:40:31','','','','0','Cash',0.00,'280','','','4','','1','2023-11-06 12:40:34','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-350.00','-351','Inclusive','branch','Inventory','','','','',''),('416992793002222032',4654,'41699279300','1','1.00','280','retail','0','2023-11-06 17:01:40','','','','0','Cash',0.00,'280','','','4','','1','2023-11-06 14:01:43','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-351.00','-352','Inclusive','branch','Inventory','','','','',''),('616992821420202039',4655,'61699282141','1','1.00','280','retail','0','2023-11-06 17:49:01','','','','0','Cash',0.00,'280','','','6','','1','2023-11-06 14:49:03','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-352.00','-353','Inclusive','branch','Inventory','','','','',''),('616992903290922064',4656,'61699290328','21','1.00','200','retail','0','2023-11-06 20:05:28','','','','0','Cash',0.00,'200','','','6','','1','2023-11-06 17:05:31','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-583.00','-584','Inclusive','branch','Inventory','','','','',''),('616992903383629333',4657,'61699290337','21','1.00','200','retail','0','2023-11-06 20:05:37','','','','0','Cash',0.00,'200','','','6','','1','2023-11-06 17:05:41','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-584.00','-585','Inclusive','branch','Inventory','','','','',''),('616992903399290932',4658,'61699290337','21','1.00','200','retail','0','2023-11-06 20:05:39','','','','0','Cash',0.00,'200','','','6','','1','2023-11-06 17:05:41','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-585.00','-586','Inclusive','branch','Inventory','','','','',''),('616992906723421300',4659,'61699290672','17','1.00','200','retail','0','2023-11-06 20:11:12','','','','0','Cash',0.00,'200','','','6','','1','2023-11-06 17:11:14','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-81.00','-82','Inclusive','branch','Inventory','','','','',''),('616992906910922064',4660,'61699290691','38','1.00','350','retail','0','2023-11-06 20:11:31','','','','0','Cash',0.00,'350','','','6','','1','2023-11-06 17:11:34','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-568.00','-569','Inclusive','branch','Inventory','','','','',''),('616992907020922064',4661,'61699290701','1','1.00','280','retail','0','2023-11-06 20:11:41','','','','0','Cash',0.00,'280','','','6','','1','2023-11-06 17:11:44','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-353.00','-354','Inclusive','branch','Inventory','','','','',''),('416993442562465392',4662,'41699344255','12','1.00','250','retail','0','2023-11-07 11:04:15','','','','0','Cash',0.00,'250','','','4','','1','2023-11-07 08:04:19','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-116.00','-117','Inclusive','branch','Inventory','','','','',''),('416993453353022333',4663,'41699345335','7','1.00','200','retail','0','2023-11-07 11:22:15','','','','0','Cash',0.00,'200','','','4','','1','2023-11-07 08:22:21','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-227.00','-228','Inclusive','branch','Inventory','','','','',''),('416993453382222032',4664,'41699345335','1','1.00','280','retail','0','2023-11-07 11:22:18','','','','0','Cash',0.00,'280','','','4','','1','2023-11-07 08:22:21','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-354.00','-355','Inclusive','branch','Inventory','','','','',''),('416993520643421300',4665,'41699352064','21','1.00','200','retail','0','2023-11-07 13:14:24','','','','0','Cash',0.00,'200','','','4','','1','2023-11-07 10:14:30','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-586.00','-587','Inclusive','branch','Inventory','','','','',''),('416993568236923644',4666,'41699356823','38','1.00','350','retail','0','2023-11-07 14:33:43','','','','0','Cash',0.00,'350','','','4','','1','2023-11-07 11:34:01','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-569.00','-570','Inclusive','branch','Inventory','','','','',''),('416993568302222032',4667,'41699356823','1','1.00','280','retail','0','2023-11-07 14:33:50','','','','0','Cash',0.00,'280','','','4','','1','2023-11-07 11:34:01','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-355.00','-356','Inclusive','branch','Inventory','','','','',''),('416993642109200932',4668,'41699364209','1','1.00','280','retail','0','2023-11-07 16:36:49','','','','0','Cash',0.00,'280','','','4','','1','2023-11-07 13:36:54','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-356.00','-357','Inclusive','branch','Inventory','','','','',''),('616993686399290932',4669,'61699368639','5','1.00','300','retail','0','2023-11-07 17:50:39','','','','0','Cash',0.00,'300','','','6','','1','2023-11-07 14:50:43','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-129.00','-130','Inclusive','branch','Inventory','','','','',''),('616993699970202039',4670,'61699369997','38','1.00','350','retail','0','2023-11-07 18:13:17','','','','0','Cash',0.00,'350','','','6','','1','2023-11-07 15:13:19','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-570.00','-571','Inclusive','branch','Inventory','','','','',''),('616993750942569392',4671,'61699375093','38','1.00','350','retail','0','2023-11-07 19:38:13','','','','0','Cash',0.00,'350','','','6','','1','2023-11-07 16:38:17','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-571.00','-572','Inclusive','branch','Inventory','','','','',''),('616993750953022390',4672,'61699375093','38','1.00','350','retail','0','2023-11-07 19:38:14','','','','0','Cash',0.00,'350','','','6','','1','2023-11-07 16:38:17','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-572.00','-573','Inclusive','branch','Inventory','','','','',''),('616993772804272432',4673,'61699377279','17','1.00','200','retail','0','2023-11-07 20:14:39','','','','0','Cash',0.00,'200','','','6','','1','2023-11-07 17:14:41','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-82.00','-83','Inclusive','branch','Inventory','','','','',''),('616993772883421300',4674,'61699377287','21','1.00','200','retail','0','2023-11-07 20:14:47','','','','0','Cash',0.00,'200','','','6','','1','2023-11-07 17:14:50','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-587.00','-588','Inclusive','branch','Inventory','','','','',''),('616993773683022363',4675,'61699377368','21','1.00','200','retail','0','2023-11-07 20:16:08','','','','0','Cash',0.00,'200','','','6','','1','2023-11-07 17:16:10','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-588.00','-589','Inclusive','branch','Inventory','','','','',''),('616993780669260932',4676,'61699378066','21','1.00','200','retail','0','2023-11-07 20:27:46','','','','0','Cash',0.00,'200','','','6','','1','2023-11-07 17:27:49','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-589.00','-590','Inclusive','branch','Inventory','','','','',''),('616993802399290932',4677,'61699380238','21','1.00','200','retail','0','2023-11-07 21:03:58','','','','0','Cash',0.00,'200','','','6','','1','2023-11-07 18:04:01','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-590.00','-591','Inclusive','branch','Inventory','','','','',''),('616993812909200932',4678,'61699381289','17','1.00','200','retail','0','2023-11-07 21:21:29','','','','0','Cash',0.00,'200','','','6','','1','2023-11-07 18:21:32','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-83.00','-84','Inclusive','branch','Inventory','','','','',''),('416994346464924444',4679,'41699434646','20','1.00','200','retail','0','2023-11-08 12:10:46','','','','0','Cash',0.00,'200','','','4','','1','2023-11-08 09:10:49','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-231.00','-232','Inclusive','branch','Inventory','','','','',''),('416994429353022339',4680,'41699442934','11','1.00','280','retail','0','2023-11-08 14:28:54','','','','0','Cash',0.00,'280','','','4','','1','2023-11-08 11:29:19','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-103.00','-104','Inclusive','branch','Inventory','','','','',''),('416994429404242432',4681,'41699442934','20','1.00','200','retail','0','2023-11-08 14:28:59','','','','0','Cash',0.00,'200','','','4','','1','2023-11-08 11:29:19','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-232.00','-233','Inclusive','branch','Inventory','','','','',''),('416994429503022359',4682,'41699442934','26','1.00','100','retail','0','2023-11-08 14:29:09','','','','0','Cash',0.00,'100','','','4','','1','2023-11-08 11:29:19','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-47.00','-48','Inclusive','branch','Inventory','','','','',''),('416994429562363323',4683,'41699442934','26','1.00','100','retail','0','2023-11-08 14:29:15','','','','0','Cash',0.00,'100','','','4','','1','2023-11-08 11:29:19','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-48.00','-49','Inclusive','branch','Inventory','','','','',''),('416994458553022358',4684,'41699445855','22','1.00','250','retail','0','2023-11-08 15:17:35','','','','0','Cash',0.00,'250','','','4','','1','2023-11-08 12:17:43','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-63.00','-64','Inclusive','branch','Inventory','','','','',''),('416994458603022368',4685,'41699445855','22','1.00','250','retail','0','2023-11-08 15:17:39','','','','0','Cash',0.00,'250','','','4','','1','2023-11-08 12:17:43','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-64.00','-65','Inclusive','branch','Inventory','','','','',''),('416994487952222032',4686,'41699448795','11','1.00','280','retail','0','2023-11-08 16:06:35','','','','0','Cash',0.00,'280','','','4','','1','2023-11-08 13:06:39','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-104.00','-105','Inclusive','branch','Inventory','','','','',''),('416994502054252432',4687,'41699450205','53','1.00','200','retail','0','2023-11-08 16:30:05','','','','150','Cash',0.00,'200','','','4','','1','2023-11-08 13:30:08','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','41.00','40','Inclusive','branch','Inventory','1110','4000','5500','',''),('416994510913022390',4688,'41699451090','38','1.00','350','retail','0','2023-11-08 16:44:50','','','','0','Cash',0.00,'350','','','4','','1','2023-11-08 13:44:53','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-573.00','-574','Inclusive','branch','Inventory','','','','',''),('416994521782267392',4689,'41699452178','38','1.00','350','retail','0','2023-11-08 17:02:58','','','','0','Cash',0.00,'350','','','4','','1','2023-11-08 14:03:00','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-574.00','-575','Inclusive','branch','Inventory','','','','',''),('416994525752222032',4690,'41699452574','3','1.00','200','retail','0','2023-11-08 17:09:34','','','','0','Cash',0.00,'200','','','4','','1','2023-11-08 14:09:37','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-161.00','-162','Inclusive','branch','Inventory','','','','',''),('416994569573022359',4691,'41699456956','16','1.00','200','retail','0','2023-11-08 18:22:36','','','','0','Cash',0.00,'200','','','4','','1','2023-11-08 15:22:41','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-36.00','-37','Inclusive','branch','Inventory','','','','',''),('416994577724252432',4692,'41699457771','21','1.00','200','retail','0','2023-11-08 18:36:11','','','','0','Cash',0.00,'200','','','4','','1','2023-11-08 15:36:16','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-591.00','-592','Inclusive','branch','Inventory','','','','',''),('416994602774262432',4693,'41699460277','1','1.00','280','retail','0','2023-11-08 19:17:57','','','','0','Cash',0.00,'280','','','4','','1','2023-11-08 16:18:05','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-357.00','-358','Inclusive','branch','Inventory','','','','',''),('416994602824262432',4694,'41699460277','38','1.00','350','retail','0','2023-11-08 19:18:02','','','','0','Cash',0.00,'350','','','4','','1','2023-11-08 16:18:05','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-575.00','-576','Inclusive','branch','Inventory','','','','',''),('416994603352063392',4695,'41699460335','21','1.00','200','retail','0','2023-11-08 19:18:55','','','','0','Cash',0.00,'200','','','4','','1','2023-11-08 16:19:22','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-592.00','-593','Inclusive','branch','Inventory','','','','',''),('416994648673421300',4696,'41699464867','21','1.00','200','retail','0','2023-11-08 20:34:27','','','','0','Cash',0.00,'200','','','4','','1','2023-11-08 17:34:30','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-593.00','-594','Inclusive','branch','Inventory','','','','',''),('416994649154262432',4697,'41699464915','22','1.00','250','retail','0','2023-11-08 20:35:15','','','','0','Cash',0.00,'250','','','4','','1','2023-11-08 17:35:19','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-65.00','-66','Inclusive','branch','Inventory','','','','',''),('416994651643022361',4698,'41699465163','38','1.00','350','retail','0','2023-11-08 20:39:23','','','','0','Cash',0.00,'350','','','4','','1','2023-11-08 17:39:26','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-576.00','-577','Inclusive','branch','Inventory','','','','',''),('416995139810202039',4699,'41699513981','11','1.00','280','retail','0','2023-11-09 10:13:01','','','','0','Cash',0.00,'280','','','4','','1','2023-11-09 07:13:10','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-105.00','-106','Inclusive','branch','Inventory','','','','',''),('416995139873421300',4700,'41699513981','25','1.00','100','retail','0','2023-11-09 10:13:06','','','','0','Cash',0.00,'100','','','4','','1','2023-11-09 07:13:10','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-3.00','-4','Inclusive','branch','Inventory','','','','',''),('416995139999290932',4701,'41699513998','11','1.00','280','retail','0','2023-11-09 10:13:18','','','','0','Cash',0.00,'280','','','4','','1','2023-11-09 07:13:35','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-106.00','-107','Inclusive','branch','Inventory','','','','',''),('416995140042222032',4702,'41699513998','25','1.00','100','retail','0','2023-11-09 10:13:23','','','','0','Cash',0.00,'100','','','4','','1','2023-11-09 07:13:35','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-4.00','-5','Inclusive','branch','Inventory','','','','',''),('416995140112461392',4703,'41699513998','47','1.00','200','retail','0','2023-11-09 10:13:30','','','','0','Cash',0.00,'200','','','4','','1','2023-11-09 07:13:35','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','6.00','5','Inclusive','branch','Inventory','','','','',''),('416995140272462392',4704,'41699514027','54','1.00','350','retail','0','2023-11-09 10:13:47','','','','200','Cash',0.00,'350','','','4','','1','2023-11-09 07:13:49','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Service','1110','4000','5500','',''),('416995158440202039',4705,'41699515844','4','1.00','150','retail','0','2023-11-09 10:44:04','','','','0','Cash',0.00,'150','','','4','','1','2023-11-09 07:44:06','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-60.00','-61','Inclusive','branch','Inventory','','','','',''),('416995235044222432',4706,'41699523504','12','1.00','250','retail','0','2023-11-09 12:51:44','','','','0','Cash',0.00,'250','','','4','','1','2023-11-09 09:51:48','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-117.00','-118','Inclusive','branch','Inventory','','','','',''),('416995250083022300',4707,'41699525007','1','1.00','280','retail','0','2023-11-09 13:16:47','','','','0','Cash',0.00,'280','','','4','','1','2023-11-09 10:16:51','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-358.00','-359','Inclusive','branch','Inventory','','','','',''),('416995356160202039',4708,'41699535614','13','1.00','280','retail','0','2023-11-09 16:13:36','','','','0','Cash',0.00,'280','','','4','','1','2023-11-09 13:13:48','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-10.00','-11','Inclusive','branch','Inventory','','','','',''),('416995371860202039',4709,'41699537185','38','1.00','350','retail','0','2023-11-09 16:39:45','','','','0','Cash',0.00,'350','','','4','','1','2023-11-09 13:39:49','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-577.00','-578','Inclusive','branch','Inventory','','','','',''),('416995406193421300',4710,'41699540618','21','1.00','200','retail','0','2023-11-09 17:36:58','','','','0','Cash',0.00,'200','','','4','','1','2023-11-09 14:37:01','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-594.00','-595','Inclusive','branch','Inventory','','','','',''),('416995417409200932',4711,'41699541737','1','1.00','280','retail','0','2023-11-09 17:55:39','','','','0','Cash',0.00,'280','','','4','','1','2023-11-09 14:55:50','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-360.00','-361','Inclusive','branch','Inventory','','','','',''),('416995417425405940',4712,'41699541737','1','1.00','280','retail','0','2023-11-09 17:55:41','','','','0','Cash',0.00,'280','','','4','','1','2023-11-09 14:55:50','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-361.00','-362','Inclusive','branch','Inventory','','','','',''),('416995417602166392',4713,'41699541760','21','1.00','200','retail','0','2023-11-09 17:56:00','','','','0','Cash',0.00,'200','','','4','','1','2023-11-09 14:56:10','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-595.00','-596','Inclusive','branch','Inventory','','','','',''),('416995417634242432',4714,'41699541760','21','1.00','200','retail','0','2023-11-09 17:56:02','','','','0','Cash',0.00,'200','','','4','','1','2023-11-09 14:56:10','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-596.00','-597','Inclusive','branch','Inventory','','','','',''),('416995469940202039',4715,'41699546993','38','1.00','350','retail','0','2023-11-09 19:23:13','','','','0','Cash',0.00,'350','','','4','','1','2023-11-09 16:23:19','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-578.00','-579','Inclusive','branch','Inventory','','','','',''),('416995524599290932',4716,'41699552458','38','1.00','350','retail','0','2023-11-09 20:54:18','','','','0','Cash',0.00,'350','','','4','','1','2023-11-09 17:54:21','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-579.00','-580','Inclusive','branch','Inventory','','','','',''),('416995524733022374',4717,'41699552472','38','1.00','350','retail','0','2023-11-09 20:54:32','','','','0','Cash',0.00,'350','','','4','','1','2023-11-09 17:54:35','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-580.00','-581','Inclusive','branch','Inventory','','','','',''),('416995541352463392',4718,'41699554134','21','1.00','200','retail','0','2023-11-09 21:22:14','','','','0','Cash',0.00,'200','','','4','','1','2023-11-09 18:22:17','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-597.00','-598','Inclusive','branch','Inventory','','','','',''),('416995541504925444',4719,'41699554149','22','1.00','250','retail','0','2023-11-09 21:22:29','','','','0','Cash',0.00,'250','','','4','','1','2023-11-09 18:22:32','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-66.00','-67','Inclusive','branch','Inventory','','','','',''),('416996043494926444',4720,'41699604349','11','1.00','280','retail','0','2023-11-10 11:19:09','','','','0','Cash',0.00,'280','','','4','','1','2023-11-10 08:19:12','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-107.00','-108','Inclusive','branch','Inventory','','','','',''),('416996099104202432',4721,'41699609910','3','1.00','200','retail','0','2023-11-10 12:51:50','','','','0','Cash',0.00,'200','','','4','','1','2023-11-10 09:52:04','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-162.00','-163','Inclusive','branch','Inventory','','','','',''),('416996099130202039',4722,'41699609910','3','1.00','200','retail','0','2023-11-10 12:51:53','','','','0','Cash',0.00,'200','','','4','','1','2023-11-10 09:52:04','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-163.00','-164','Inclusive','branch','Inventory','','','','',''),('416996148093022308',4723,'41699614809','1','1.00','280','retail','0','2023-11-10 14:13:29','','','','0','Cash',0.00,'280','','','4','','1','2023-11-10 11:39:35','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-361.00','-362','Inclusive','branch','Inventory','','','','',''),('416996148132461392',4724,'41699614809','1','1.00','280','retail','0','2023-11-10 14:13:33','','','','0','Cash',0.00,'280','','','4','','1','2023-11-10 11:39:35','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-362.00','-363','Inclusive','branch','Inventory','','','','',''),('416996219734222432',4725,'41699621972','40','1.00','600','retail','0','2023-11-10 16:12:52','','','','0','Cash',0.00,'600','','','4','','1','2023-11-10 13:12:59','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-40.00','-41','Inclusive','branch','Inventory','','','','',''),('416996219763022379',4726,'41699621972','42','1.00','600','retail','0','2023-11-10 16:12:55','','','','0','Cash',0.00,'600','','','4','','1','2023-11-10 13:12:59','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','19.00','18','Inclusive','branch','Inventory','','','','',''),('416996231543421300',4727,'41699623153','7','1.00','200','retail','0','2023-11-10 16:32:33','','','','0','Cash',0.00,'200','','','4','','1','2023-11-10 13:32:35','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-228.00','-229','Inclusive','branch','Inventory','','','','',''),('416996231653262223',4728,'41699623164','42','1.00','600','retail','0','2023-11-10 16:32:44','','','','0','Cash',0.00,'600','','','4','','1','2023-11-10 13:32:48','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','18.00','17','Inclusive','branch','Inventory','','','','',''),('416996278283421300',4729,'41699627828','17','1.00','200','retail','0','2023-11-10 17:50:28','','','','0','Cash',0.00,'200','','','4','','1','2023-11-10 14:50:30','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-84.00','-85','Inclusive','branch','Inventory','','','','',''),('416996278389280932',4730,'41699627837','38','1.00','350','retail','0','2023-11-10 17:50:37','','','','0','Cash',0.00,'350','','','4','','1','2023-11-10 14:50:40','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-581.00','-582','Inclusive','branch','Inventory','','','','',''),('416996302144232432',4731,'41699630214','7','1.00','200','retail','0','2023-11-10 18:30:14','','','','0','Cash',0.00,'200','','','4','','1','2023-11-10 15:30:18','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-229.00','-230','Inclusive','branch','Inventory','','','','',''),('416996391180202039',4732,'41699639116','1','1.00','280','retail','0','2023-11-10 20:58:37','','','','0','Cash',0.00,'280','','','4','','1','2023-11-10 17:58:57','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-364.00','-365','Inclusive','branch','Inventory','','','','',''),('416996403682066392',4733,'41699640367','16','1.00','200','retail','0','2023-11-10 21:19:27','','','','0','Cash',0.00,'200','','','4','','1','2023-11-10 18:19:30','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-37.00','-38','Inclusive','branch','Inventory','','','','',''),('416996403782067392',4734,'41699640376','21','1.00','200','retail','0','2023-11-10 21:19:36','','','','0','Cash',0.00,'200','','','4','','1','2023-11-10 18:19:40','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-598.00','-599','Inclusive','branch','Inventory','','','','',''),('416996404263022324',4735,'41699640425','20','1.00','200','retail','0','2023-11-10 21:20:25','','','','0','Cash',0.00,'200','','','4','','1','2023-11-10 18:20:28','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-233.00','-234','Inclusive','branch','Inventory','','','','',''),('416996405393022335',4736,'41699640539','22','1.00','250','retail','0','2023-11-10 21:22:19','','','','0','Cash',0.00,'250','','','4','','1','2023-11-10 18:22:22','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-67.00','-68','Inclusive','branch','Inventory','','','','',''),('416996415262222032',4737,'41699641526','21','1.00','200','retail','0','2023-11-10 21:38:46','','','','0','Cash',0.00,'200','','','4','','1','2023-11-10 18:38:53','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-599.00','-600','Inclusive','branch','Inventory','','','','',''),('416996415290202039',4738,'41699641526','21','1.00','200','retail','0','2023-11-10 21:38:48','','','','0','Cash',0.00,'200','','','4','','1','2023-11-10 18:38:53','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-600.00','-601','Inclusive','branch','Inventory','','','','',''),('416996942252462392',4739,'41699694224','7','1.00','200','retail','0','2023-11-11 12:17:05','','','','0','Cash',0.00,'200','','','4','','1','2023-11-11 09:17:14','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-230.00','-231','Inclusive','branch','Inventory','','','','',''),('416996942310202039',4740,'41699694224','47','1.00','200','retail','0','2023-11-11 12:17:11','','','','0','Cash',0.00,'200','','','4','','1','2023-11-11 09:17:14','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','','','','',''),('416996956845926544',4741,'41699695684','47','1.00','200','retail','0','2023-11-11 12:41:24','','','','0','Cash',0.00,'200','','','4','','1','2023-11-11 10:13:32','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','4.00','3','Inclusive','branch','Inventory','','','','',''),('416996957054292432',4742,'41699695684','47','1.00','200','retail','0','2023-11-11 12:41:44','','','','0','Cash',0.00,'200','','','4','','1','2023-11-11 10:13:32','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','3.00','2','Inclusive','branch','Inventory','','','','',''),('416996957110202039',4743,'41699695684','47','1.00','200','retail','0','2023-11-11 12:41:50','','','','0','Cash',0.00,'200','','','4','','1','2023-11-11 10:13:32','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','2.00','1','Inclusive','branch','Inventory','','','','',''),('416997070003022300',4744,'41699707000','1','1.00','280','retail','0','2023-11-11 15:50:00','','','','0','Cash',0.00,'280','','','4','','1','2023-11-11 12:50:02','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-364.00','-365','Inclusive','branch','Inventory','','','','',''),('416997109323022339',4745,'41699710932','38','1.00','350','retail','0','2023-11-11 16:55:32','','','','0','Cash',0.00,'350','','','4','','1','2023-11-11 13:55:36','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-582.00','-583','Inclusive','branch','Inventory','','','','',''),('416997124571967727',4746,'41699712456','7','1.00','200','retail','0','2023-11-11 17:20:56','','','','0','Cash',0.00,'200','','','4','','1','2023-11-11 14:21:06','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-231.00','-232','Inclusive','branch','Inventory','','','','',''),('416997124594212432',4747,'41699712456','7','1.00','200','retail','0','2023-11-11 17:20:59','','','','0','Cash',0.00,'200','','','4','','1','2023-11-11 14:21:06','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-232.00','-233','Inclusive','branch','Inventory','','','','',''),('416997160282662392',4748,'41699716027','1','1.00','280','retail','0','2023-11-11 18:20:27','','','','0','Cash',0.00,'280','','','4','','1','2023-11-11 15:20:37','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-365.00','-366','Inclusive','branch','Inventory','','','','',''),('416997160349240932',4749,'41699716027','52','1.00','150','retail','0','2023-11-11 18:20:34','','','','200','Cash',0.00,'150','','','4','','1','2023-11-11 15:20:37','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('416997160453421300',4750,'41699716044','38','1.00','350','retail','0','2023-11-11 18:20:44','','','','0','Cash',0.00,'350','','','4','','1','2023-11-11 15:20:47','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-583.00','-584','Inclusive','branch','Inventory','','','','',''),('416997186113421300',4751,'41699718610','7','1.00','200','retail','0','2023-11-11 19:03:31','','','','0','Cash',0.00,'200','','','4','','1','2023-11-11 16:03:45','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-233.00','-234','Inclusive','branch','Inventory','','','','',''),('416997877540202039',4752,'41699787753','20','1.00','200','retail','0','2023-11-12 14:15:53','','','','0','Cash',0.00,'200','','','4','','1','2023-11-12 11:15:57','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-234.00','-235','Inclusive','branch','Inventory','','','','',''),('416998054635928544',4753,'41699805462','20','1.00','200','retail','0','2023-11-12 19:11:02','','','','0','Cash',0.00,'200','','','4','','1','2023-11-12 16:11:07','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-235.00','-236','Inclusive','branch','Inventory','','','','',''),('416998072252762392',4754,'41699807224','38','1.00','350','retail','0','2023-11-12 19:40:24','','','','0','Cash',0.00,'350','','','4','','1','2023-11-12 16:40:42','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-584.00','-585','Inclusive','branch','Inventory','','','','',''),('416998072353022332',4755,'41699807224','22','1.00','250','retail','0','2023-11-12 19:40:34','','','','0','Cash',0.00,'250','','','4','','1','2023-11-12 16:40:42','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-68.00','-69','Inclusive','branch','Inventory','','','','',''),('416998116314212432',4756,'41699811631','20','1.00','200','retail','0','2023-11-12 20:53:51','','','','0','Cash',0.00,'200','','','4','','1','2023-11-12 17:54:05','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-236.00','-237','Inclusive','branch','Inventory','','','','',''),('416998659105928544',4757,'41699865909','16','1.00','200','retail','0','2023-11-13 11:58:29','','','','0','Cash',0.00,'200','','','4','','1','2023-11-13 08:58:54','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-38.00','-39','Inclusive','branch','Inventory','','','','',''),('416998768916928644',4758,'41699876890','12','1.00','250','retail','0','2023-11-13 15:01:30','','','','0','Cash',0.00,'250','','','4','','1','2023-11-13 12:01:33','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-118.00','-119','Inclusive','branch','Inventory','','','','',''),('416998905899290932',4759,'41699890588','2','1.00','250','retail','0','2023-11-13 18:49:48','','','','0','Cash',0.00,'250','','','4','','1','2023-11-13 15:50:11','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-100.00','-101','Inclusive','branch','Inventory','','','','',''),('416998905912069392',4760,'41699890588','2','1.00','250','retail','0','2023-11-13 18:49:51','','','','0','Cash',0.00,'250','','','4','','1','2023-11-13 15:50:11','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-101.00','-102','Inclusive','branch','Inventory','','','','',''),('416998906000202039',4761,'41699890588','22','1.00','250','retail','0','2023-11-13 18:50:00','','','','0','Cash',0.00,'250','','','4','','1','2023-11-13 15:50:11','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-69.00','-70','Inclusive','branch','Inventory','','','','',''),('416998906060928044',4762,'41699890588','21','1.00','200','retail','0','2023-11-13 18:50:06','','','','0','Cash',0.00,'200','','','4','','1','2023-11-13 15:50:11','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-601.00','-602','Inclusive','branch','Inventory','','','','',''),('416998978469260932',4763,'41699897846','38','1.00','350','retail','0','2023-11-13 20:50:46','','','','0','Cash',0.00,'350','','','4','','1','2023-11-13 17:50:48','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-585.00','-586','Inclusive','branch','Inventory','','','','',''),('416999460673421300',4764,'41699946066','39','1.00','300','retail','0','2023-11-14 10:14:27','','','','0','Cash',0.00,'300','','','4','','1','2023-11-14 07:14:47','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-9.00','-10','Inclusive','branch','Inventory','','','','',''),('416999460802668392',4765,'41699946066','46','1.00','200','retail','0','2023-11-14 10:14:40','','','','0','Cash',0.00,'200','','','4','','1','2023-11-14 07:14:47','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-4.00','-5','Inclusive','branch','Inventory','','','','',''),('416999460839049432',4766,'41699946066','46','1.00','200','retail','0','2023-11-14 10:14:42','','','','0','Cash',0.00,'200','','','4','','1','2023-11-14 07:14:47','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-5.00','-6','Inclusive','branch','Inventory','','','','',''),('416999585573421300',4767,'41699958556','17','1.00','200','retail','0','2023-11-14 13:42:36','','','','0','Cash',0.00,'200','','','4','','1','2023-11-14 10:42:40','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-85.00','-86','Inclusive','branch','Inventory','','','','',''),('416999649223421300',4768,'41699964921','7','1.00','200','retail','0','2023-11-14 15:28:41','','','','0','Cash',0.00,'200','','','4','','1','2023-11-14 12:28:49','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-234.00','-235','Inclusive','branch','Inventory','','','','',''),('416999649253421300',4769,'41699964921','7','1.00','200','retail','0','2023-11-14 15:28:44','','','','0','Cash',0.00,'200','','','4','','1','2023-11-14 12:28:49','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-235.00','-236','Inclusive','branch','Inventory','','','','',''),('416999713933022393',4770,'41699971392','5','1.00','300','retail','0','2023-11-14 17:16:32','','','','0','Cash',0.00,'300','','','4','','1','2023-11-14 14:16:36','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-130.00','-131','Inclusive','branch','Inventory','','','','',''),('416999767000202039',4771,'41699976699','21','1.00','200','retail','0','2023-11-14 18:45:00','','','','0','Cash',0.00,'200','','','4','','1','2023-11-14 15:45:07','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-603.00','-604','Inclusive','branch','Inventory','','','','',''),('416999797693421300',4772,'41699979768','5','1.00','300','retail','0','2023-11-14 19:36:08','','','','0','Cash',0.00,'300','','','4','','1','2023-11-14 16:36:10','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-131.00','-132','Inclusive','branch','Inventory','','','','',''),('416999810190202039',4773,'41699981018','17','1.00','200','retail','0','2023-11-14 19:56:58','','','','0','Cash',0.00,'200','','','4','','1','2023-11-14 16:57:02','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-86.00','-87','Inclusive','branch','Inventory','','','','',''),('416999818743421300',4774,'41699981873','21','1.00','200','retail','0','2023-11-14 20:11:13','','','','0','Cash',0.00,'200','','','4','','1','2023-11-14 17:11:17','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-603.00','-604','Inclusive','branch','Inventory','','','','',''),('416999834402364392',4775,'41699983439','38','1.00','350','retail','0','2023-11-14 20:37:19','','','','0','Cash',0.00,'350','','','4','','1','2023-11-14 17:37:32','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-586.00','-587','Inclusive','branch','Inventory','','','','',''),('417000326462020244',4776,'41700032645','38','1.00','350','retail','0','2023-11-15 10:17:25','','','','0','Cash',0.00,'350','','','4','','1','2023-11-15 07:17:29','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-587.00','-588','Inclusive','branch','Inventory','','','','',''),('417000347224020444',4777,'41700034722','42','1.00','600','retail','0','2023-11-15 10:52:02','','','','0','Cash',0.00,'600','','','4','','1','2023-11-15 07:52:05','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','17.00','16','Inclusive','branch','Inventory','','','','',''),('417000409922079302',4778,'41700040992','1','1.00','280','retail','0','2023-11-15 12:36:32','','','','0','Cash',0.00,'280','','','4','','1','2023-11-15 09:36:38','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-366.00','-367','Inclusive','branch','Inventory','','','','',''),('417000409940020044',4779,'41700040992','1','1.00','280','retail','0','2023-11-15 12:36:33','','','','0','Cash',0.00,'280','','','4','','1','2023-11-15 09:36:38','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-367.00','-368','Inclusive','branch','Inventory','','','','',''),('417000493950202030',4780,'41700049394','21','1.00','200','retail','0','2023-11-15 14:56:34','','','','0','Cash',0.00,'200','','','4','','1','2023-11-15 11:56:43','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-604.00','-605','Inclusive','branch','Inventory','','','','',''),('417000564110210032',4781,'41700056410','2','1.00','250','retail','0','2023-11-15 16:53:30','','','','0','Cash',0.00,'250','','','4','','1','2023-11-15 13:53:33','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-102.00','-103','Inclusive','branch','Inventory','','','','',''),('417000602760260032',4782,'41700060275','38','1.00','350','retail','0','2023-11-15 17:57:55','','','','0','Cash',0.00,'350','','','4','','1','2023-11-15 14:57:59','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-588.00','-589','Inclusive','branch','Inventory','','','','',''),('417000651022323323',4783,'41700065101','23','1.00','250','retail','0','2023-11-15 19:18:21','','','','0','Cash',0.00,'250','','','4','','1','2023-11-15 16:18:29','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-196.00','-197','Inclusive','branch','Inventory','','','','',''),('417000651043421300',4784,'41700065101','23','1.00','250','retail','0','2023-11-15 19:18:24','','','','0','Cash',0.00,'250','','','4','','1','2023-11-15 16:18:29','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-197.00','-198','Inclusive','branch','Inventory','','','','',''),('417000697709020944',4785,'41700069769','20','1.00','200','retail','0','2023-11-15 20:36:09','','','','0','Cash',0.00,'200','','','4','','1','2023-11-15 17:36:14','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-237.00','-238','Inclusive','branch','Inventory','','','','',''),('417000714221020144',4786,'41700071422','5','1.00','300','retail','0','2023-11-15 21:03:42','','','','0','Cash',0.00,'300','','','4','','1','2023-11-15 18:03:45','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-132.00','-133','Inclusive','branch','Inventory','','','','',''),('417000714360202030',4787,'41700071435','21','1.00','200','retail','0','2023-11-15 21:03:55','','','','0','Cash',0.00,'200','','','4','','1','2023-11-15 18:03:59','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-605.00','-606','Inclusive','branch','Inventory','','','','',''),('417001514933022394',4788,'41700151493','21','1.00','200','retail','0','2023-11-16 19:18:13','','','','0','Cash',0.00,'200','','','4','','1','2023-11-16 16:18:16','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-606.00','-607','Inclusive','branch','Inventory','','','','',''),('417001560303022330',4789,'41700156030','20','1.00','200','retail','0','2023-11-16 20:33:50','','','','0','Cash',0.00,'200','','','4','','1','2023-11-16 17:38:22','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-238.00','-239','Inclusive','branch','Inventory','','','','',''),('417001566100200032',4790,'41700156609','17','1.00','200','retail','0','2023-11-16 20:43:29','','','','0','Cash',0.00,'200','','','4','','1','2023-11-16 17:43:32','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-87.00','-88','Inclusive','branch','Inventory','','','','',''),('417001603630202030',4791,'41700160362','21','1.00','200','retail','0','2023-11-16 21:46:02','','','','0','Cash',0.00,'200','','','4','','1','2023-11-16 18:46:05','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-607.00','-608','Inclusive','branch','Inventory','','','','',''),('417002010120220032',4792,'41700201011','1','1.00','280','retail','0','2023-11-17 09:03:31','','','','0','Cash',0.00,'280','','','4','','1','2023-11-17 06:03:37','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-368.00','-369','Inclusive','branch','Inventory','','','','',''),('417002010153022310',4793,'41700201011','1','1.00','280','retail','0','2023-11-17 09:03:34','','','','0','Cash',0.00,'280','','','4','','1','2023-11-17 06:03:37','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-369.00','-370','Inclusive','branch','Inventory','','','','',''),('417002135114212432',4794,'41700213510','38','1.00','350','retail','0','2023-11-17 12:31:50','','','','0','Cash',0.00,'350','','','4','','1','2023-11-17 09:31:54','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-589.00','-590','Inclusive','branch','Inventory','','','','',''),('417002217952222032',4795,'41700221795','7','1.00','200','retail','0','2023-11-17 14:49:55','','','','0','Cash',0.00,'200','','','4','','1','2023-11-17 11:49:58','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-236.00','-237','Inclusive','branch','Inventory','','','','',''),('417002241104022444',4796,'41700224110','8','1.00','150','retail','0','2023-11-17 15:28:30','','','','0','Cash',0.00,'150','','','4','','1','2023-11-17 12:28:34','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-92.00','-93','Inclusive','branch','Inventory','','','','',''),('417002241242222032',4797,'41700224124','62','1.00','200','retail','0','2023-11-17 15:28:44','','','','200','Cash',0.00,'200','','','4','','1','2023-11-17 12:28:47','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500','',''),('417002273300202030',4798,'41700227329','7','1.00','200','retail','0','2023-11-17 16:22:09','','','','0','Cash',0.00,'200','','','4','','1','2023-11-17 13:22:14','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-237.00','-238','Inclusive','branch','Inventory','','','','',''),('417002346140240032',4799,'41700234614','7','1.00','200','retail','0','2023-11-17 18:23:34','','','','0','Cash',0.00,'200','','','4','','1','2023-11-17 15:23:38','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-238.00','-239','Inclusive','branch','Inventory','','','','',''),('417002415132171302',4800,'41700241512','38','1.00','350','retail','0','2023-11-17 20:18:32','','','','0','Cash',0.00,'350','','','4','','1','2023-11-17 17:18:39','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-590.00','-591','Inclusive','branch','Inventory','','','','',''),('417002415390290032',4801,'41700241538','11','1.00','280','retail','0','2023-11-17 20:18:58','','','','0','Cash',0.00,'280','','','4','','1','2023-11-17 17:19:01','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-108.00','-109','Inclusive','branch','Inventory','','','','',''),('417002420952222032',4802,'41700242095','7','1.00','200','retail','0','2023-11-17 20:28:15','','','','0','Cash',0.00,'200','','','4','','1','2023-11-17 17:28:21','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-239.00','-240','Inclusive','branch','Inventory','','','','',''),('417002454140202030',4803,'41700245414','7','1.00','200','retail','0','2023-11-17 21:23:34','','','','0','Cash',0.00,'200','','','4','','1','2023-11-17 18:23:37','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-240.00','-241','Inclusive','branch','Inventory','','','','',''),('417003162242222032',4804,'41700316223','38','1.00','350','retail','0','2023-11-18 17:03:43','','','','0','Cash',0.00,'350','','','4','','1','2023-11-18 14:03:48','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-591.00','-592','Inclusive','branch','Inventory','','','','',''),('417003195300202030',4805,'41700319530','38','1.00','350','retail','0','2023-11-18 17:58:50','','','','0','Cash',0.00,'350','','','4','','1','2023-11-18 15:32:00','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-592.00','-593','Inclusive','branch','Inventory','','','','',''),('417003214330230032',4806,'41700319530','40','1.00','600','retail','0','2023-11-18 18:30:33','','','','0','Cash',0.00,'600','','','4','','1','2023-11-18 15:32:00','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-41.00','-42','Inclusive','branch','Inventory','','','','',''),('417003216142171302',4807,'41700321613','11','1.00','280','retail','0','2023-11-18 18:33:34','','','','0','Cash',0.00,'280','','','4','','1','2023-11-18 15:33:41','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-109.00','-110','Inclusive','branch','Inventory','','','','',''),('417003216304222432',4808,'41700321629','11','1.00','280','retail','0','2023-11-18 18:33:50','','','','0','Cash',0.00,'280','','','4','','1','2023-11-18 17:23:37','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-110.00','-111','Inclusive','branch','Inventory','','','','',''),('417003219140240032',4809,'41700321629','11','1.00','280','retail','0','2023-11-18 18:38:34','','','','0','Cash',0.00,'280','','','4','','1','2023-11-18 17:23:37','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-111.00','-112','Inclusive','branch','Inventory','','','','',''),('417003219400200032',4810,'41700321629','11','1.00','280','retail','0','2023-11-18 18:38:59','','','','0','Cash',0.00,'280','','','4','','1','2023-11-18 17:23:37','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-112.00','-113','Inclusive','branch','Inventory','','','','',''),('417003219412174302',4811,'41700321629','11','1.00','280','retail','0','2023-11-18 18:39:01','','','','0','Cash',0.00,'280','','','4','','1','2023-11-18 17:23:37','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-113.00','-114','Inclusive','branch','Inventory','','','','',''),('417003219533421300',4812,'41700321629','11','1.00','280','retail','0','2023-11-18 18:39:12','','','','0','Cash',0.00,'280','','','4','','1','2023-11-18 17:23:37','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-114.00','-115','Inclusive','branch','Inventory','','','','',''),('417003219581023144',4813,'41700321629','11','1.00','280','retail','0','2023-11-18 18:39:18','','','','0','Cash',0.00,'280','','','4','','1','2023-11-18 17:23:37','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-115.00','-116','Inclusive','branch','Inventory','','','','',''),('417003219990290032',4814,'41700321629','11','1.00','280','retail','0','2023-11-18 18:39:58','','','','0','Cash',0.00,'280','','','4','','1','2023-11-18 17:23:37','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-116.00','-117','Inclusive','branch','Inventory','','','','',''),('417003220200200032',4815,'41700321629','11','1.00','280','retail','0','2023-11-18 18:40:19','','','','0','Cash',0.00,'280','','','4','','1','2023-11-18 17:23:37','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-117.00','-118','Inclusive','branch','Inventory','','','','',''),('417003220493022340',4816,'41700321629','11','1.00','280','retail','0','2023-11-18 18:40:49','','','','0','Cash',0.00,'280','','','4','','1','2023-11-18 17:23:37','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-118.00','-119','Inclusive','branch','Inventory','','','','',''),('417003220532222032',4817,'41700321629','11','1.00','280','retail','0','2023-11-18 18:40:52','','','','0','Cash',0.00,'280','','','4','','1','2023-11-18 17:23:37','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-119.00','-120','Inclusive','branch','Inventory','','','','',''),('417003281948023844',4818,'41700321629','3','1.00','200','retail','0','2023-11-18 20:23:13','','','','0','Cash',0.00,'200','','','4','','1','2023-11-18 17:23:37','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-164.00','-165','Inclusive','branch','Inventory','','','','',''),('417003293660202030',4819,'41700329365','59','1.00','150','retail','0','2023-11-18 20:42:45','','','','100','Cash',0.00,'150','','','4','','1','2023-11-18 17:43:25','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','38.00','37','Inclusive','branch','Service','1110','4000','5500','',''),('417003299852222032',4820,'41700329984','59','1.00','150','retail','0','2023-11-18 20:53:04','','','','100','Cash',0.00,'150','','','4','','1','2023-11-18 18:08:52','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','38.00','37','Inclusive','branch','Service','1110','4000','5500','',''),('417003308963022398',4821,'41700329984','3','1.00','200','retail','0','2023-11-18 21:08:15','','','','0','Cash',0.00,'200','','','4','','1','2023-11-18 18:08:52','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-165.00','-166','Inclusive','branch','Inventory','','','','',''),('417003316122222032',4822,'41700331612','3','1.00','200','retail','0','2023-11-18 21:20:12','','','','0','Cash',0.00,'200','','','4','','1','2023-11-18 18:54:12','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-166.00','-167','Inclusive','branch','Inventory','','','','',''),('417003336492222032',4823,'41700331612','3','1.00','200','retail','0','2023-11-18 21:54:08','','','','0','Cash',0.00,'200','','','4','','1','2023-11-18 18:54:12','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-167.00','-168','Inclusive','branch','Inventory','','','','',''),('417003819641023144',4824,'41700381963','11','1.00','280','retail','0','2023-11-19 11:19:23','','','','0','Cash',0.00,'280','','','4','','1','2023-11-19 08:19:28','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-120.00','-121','Inclusive','branch','Inventory','','','','',''),('417003819893421300',4825,'41700381988','11','1.00','280','retail','0','2023-11-19 11:19:48','','','','0','Cash',0.00,'280','','','4','','1','2023-11-19 08:19:51','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-121.00','-122','Inclusive','branch','Inventory','','','','',''),('417003820227333101',4826,'41700382021','5','1.00','300','retail','0','2023-11-19 11:20:21','','','','0','Cash',0.00,'300','','','4','','1','2023-11-19 08:20:25','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-133.00','-134','Inclusive','branch','Inventory','','','','',''),('417003900880023044',4827,'41700390087','1','1.00','280','retail','0','2023-11-19 13:34:47','','','','0','Cash',0.00,'280','','','4','','1','2023-11-19 10:34:51','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-370.00','-371','Inclusive','branch','Inventory','','','','',''),('417003935322222032',4828,'41700393531','1','1.00','280','retail','0','2023-11-19 14:32:11','','','','0','Cash',0.00,'280','','','4','','1','2023-11-19 11:32:15','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-371.00','-372','Inclusive','branch','Inventory','','','','',''),('417003936910210032',4829,'41700393690','21','1.00','200','retail','0','2023-11-19 14:34:51','','','','0','Cash',0.00,'200','','','4','','1','2023-11-19 11:34:55','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-608.00','-609','Inclusive','branch','Inventory','','','','',''),('417004045012470302',4830,'41700404500','1','1.00','280','retail','0','2023-11-19 17:35:00','','','','0','Cash',0.00,'280','','','4','','1','2023-11-19 14:35:13','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-372.00','-373','Inclusive','branch','Inventory','','','','',''),('417004045104024444',4831,'41700404500','1','1.00','280','retail','0','2023-11-19 17:35:09','','','','0','Cash',0.00,'280','','','4','','1','2023-11-19 14:35:13','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-373.00','-374','Inclusive','branch','Inventory','','','','',''),('417004089294202432',4832,'41700408928','11','1.00','280','retail','0','2023-11-19 18:48:48','','','','0','Cash',0.00,'280','','','4','','1','2023-11-19 15:48:52','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-122.00','-123','Inclusive','branch','Inventory','','','','',''),('417004090493421300',4833,'41700409048','38','1.00','350','retail','0','2023-11-19 18:50:48','','','','0','Cash',0.00,'350','','','4','','1','2023-11-19 15:50:52','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-593.00','-594','Inclusive','branch','Inventory','','','','',''),('417004091070270032',4834,'41700409107','1','1.00','280','retail','0','2023-11-19 18:51:47','','','','0','Cash',0.00,'280','','','4','','1','2023-11-19 15:51:51','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-374.00','-375','Inclusive','branch','Inventory','','','','',''),('417004778617024744',4835,'41700477861','1','1.00','280','retail','0','2023-11-20 13:57:41','','','','0','Cash',0.00,'280','','','4','','1','2023-11-20 10:57:59','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-375.00','-376','Inclusive','branch','Inventory','','','','',''),('417004778670202030',4836,'41700477861','46','1.00','200','retail','0','2023-11-20 13:57:47','','','','0','Cash',0.00,'200','','','4','','1','2023-11-20 10:57:59','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-6.00','-7','Inclusive','branch','Inventory','','','','',''),('417004914573421300',4837,'41700491456','22','1.00','250','retail','0','2023-11-20 17:44:16','','','','0','Cash',0.00,'250','','','4','','1','2023-11-20 14:44:20','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-70.00','-71','Inclusive','branch','Inventory','','','','',''),('417005030543025344',4838,'41700503053','23','1.00','250','retail','0','2023-11-20 20:57:33','','','','0','Cash',0.00,'250','','','4','','1','2023-11-20 17:57:38','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-198.00','-199','Inclusive','branch','Inventory','','','','',''),('417005030854202432',4839,'41700503084','52','1.00','150','retail','0','2023-11-20 20:58:04','','','','200','Cash',0.00,'150','','','4','','1','2023-11-20 17:58:08','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('417005031204202432',4840,'41700503120','21','1.00','200','retail','0','2023-11-20 20:58:40','','','','0','Cash',0.00,'200','','','4','','1','2023-11-20 17:58:44','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-609.00','-610','Inclusive','branch','Inventory','','','','',''),('417005103594212432',4841,'41700510358','31','1.00','200','retail','0','2023-11-20 22:59:18','','','','0','Cash',0.00,'200','','','4','','1','2023-11-20 19:59:27','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-18.00','-19','Inclusive','branch','Inventory','','','','',''),('417005103873022383',4842,'41700510387','29','1.00','300','retail','0','2023-11-20 22:59:47','','','','0','Cash',0.00,'300','','','4','','1','2023-11-20 19:59:53','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-41.00','-42','Inclusive','branch','Inventory','','','','',''),('417005105243421300',4843,'41700510524','47','1.00','200','retail','0','2023-11-20 23:02:04','','','','0','Cash',0.00,'200','','','4','','1','2023-11-20 20:02:13','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','','','','',''),('417005660412674302',4844,'41700566040','7','1.00','200','retail','0','2023-11-21 14:27:20','','','','0','Cash',0.00,'200','','','4','','1','2023-11-21 11:27:27','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-241.00','-242','Inclusive','branch','Inventory','','','','',''),('417005660446033435',4845,'41700566040','7','1.00','200','retail','0','2023-11-21 14:27:23','','','','0','Cash',0.00,'200','','','4','','1','2023-11-21 11:27:27','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-242.00','-243','Inclusive','branch','Inventory','','','','',''),('417005696953903300',4846,'41700569694','4','1.00','150','retail','0','2023-11-21 15:28:14','','','','0','Cash',0.00,'150','','','4','','1','2023-11-21 12:28:17','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-61.00','-62','Inclusive','branch','Inventory','','','','',''),('417005768424272432',4847,'41700576842','38','1.00','350','retail','0','2023-11-21 17:27:22','','','','0','Cash',0.00,'350','','','4','','1','2023-11-21 14:27:26','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-594.00','-595','Inclusive','branch','Inventory','','','','',''),('417005842954282432',4848,'41700584294','38','1.00','350','retail','0','2023-11-21 19:31:34','','','','0','Cash',0.00,'350','','','4','','1','2023-11-21 16:31:39','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-595.00','-596','Inclusive','branch','Inventory','','','','',''),('417005862784282432',4849,'41700586277','1','1.00','280','retail','0','2023-11-21 20:04:37','','','','0','Cash',0.00,'280','','','4','','1','2023-11-21 17:04:41','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-376.00','-377','Inclusive','branch','Inventory','','','','',''),('417005865142222032',4850,'41700586514','38','1.00','350','retail','0','2023-11-21 20:08:34','','','','0','Cash',0.00,'350','','','4','','1','2023-11-21 17:08:37','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-596.00','-597','Inclusive','branch','Inventory','','','','',''),('417005865292672302',4851,'41700586528','38','1.00','350','retail','0','2023-11-21 20:08:48','','','','0','Cash',0.00,'350','','','4','','1','2023-11-21 17:08:51','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-597.00','-598','Inclusive','branch','Inventory','','','','',''),('417005866072222032',4852,'41700586606','38','1.00','350','retail','0','2023-11-21 20:10:06','','','','0','Cash',0.00,'350','','','4','','1','2023-11-21 17:10:09','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-598.00','-599','Inclusive','branch','Inventory','','','','',''),('417005885582222032',4853,'41700588557','23','1.00','250','retail','0','2023-11-21 20:42:37','','','','0','Cash',0.00,'250','','','4','','1','2023-11-21 17:42:41','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-199.00','-200','Inclusive','branch','Inventory','','','','',''),('417005962056025644',4854,'41700596204','38','1.00','350','retail','0','2023-11-21 22:50:04','','','','0','Cash',0.00,'350','','','4','','1','2023-11-21 19:50:09','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-599.00','-600','Inclusive','branch','Inventory','','','','',''),('417006352623421300',4855,'41700635261','42','1.00','600','retail','0','2023-11-22 09:41:01','','','','0','Cash',0.00,'600','','','4','','1','2023-11-22 06:41:14','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','16.00','15','Inclusive','branch','Inventory','','','','',''),('417006352680280032',4856,'41700635261','47','1.00','200','retail','0','2023-11-22 09:41:07','','','','0','Cash',0.00,'200','','','4','','1','2023-11-22 06:41:14','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','0.00','-1','Inclusive','branch','Inventory','','','','',''),('417006352710302242',4857,'41700635261','46','1.00','200','retail','0','2023-11-22 09:41:10','','','','0','Cash',0.00,'200','','','4','','1','2023-11-22 06:41:14','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-7.00','-8','Inclusive','branch','Inventory','','','','',''),('417006624792277302',4858,'41700662479','1','1.00','280','retail','0','2023-11-22 17:14:39','','','','0','Cash',0.00,'280','','','4','','1','2023-11-22 14:14:42','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-377.00','-378','Inclusive','branch','Inventory','','','','',''),('417006652432574302',4859,'41700665242','4','1.00','150','retail','0','2023-11-22 18:00:42','','','','0','Cash',0.00,'150','','','4','','1','2023-11-22 15:00:50','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-62.00','-63','Inclusive','branch','Inventory','','','','',''),('417006709472074302',4860,'41700670943','38','1.00','350','retail','0','2023-11-22 19:35:46','','','','0','Cash',0.00,'350','','','4','','1','2023-11-22 16:35:58','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-601.00','-602','Inclusive','branch','Inventory','','','','',''),('417006709652076302',4861,'41700670964','38','1.00','350','retail','0','2023-11-22 19:36:04','','','','0','Cash',0.00,'350','','','4','','1','2023-11-22 16:36:09','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-601.00','-602','Inclusive','branch','Inventory','','','','',''),('417006754513421300',4862,'41700675450','40','1.00','600','retail','0','2023-11-22 20:50:50','','','','0','Cash',0.00,'600','','','4','','1','2023-11-22 17:50:55','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-42.00','-43','Inclusive','branch','Inventory','','','','',''),('417007356124232432',4863,'41700735611','7','1.00','200','retail','0','2023-11-23 13:33:31','','','','0','Cash',0.00,'200','','','4','','1','2023-11-23 10:33:35','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-243.00','-244','Inclusive','branch','Inventory','','','','',''),('417007402104242432',4864,'41700740210','7','1.00','200','retail','0','2023-11-23 14:50:10','','','','0','Cash',0.00,'200','','','4','','1','2023-11-23 11:50:14','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-244.00','-245','Inclusive','branch','Inventory','','','','',''),('417007413110210032',4865,'41700741310','1','1.00','280','retail','0','2023-11-23 15:08:30','','','','0','Cash',0.00,'280','','','4','','1','2023-11-23 12:08:33','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-378.00','-379','Inclusive','branch','Inventory','','','','',''),('417007481693022361',4866,'41700748169','11','1.00','280','retail','0','2023-11-23 17:02:49','','','','0','Cash',0.00,'280','','','4','','1','2023-11-23 14:02:53','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-123.00','-124','Inclusive','branch','Inventory','','','','',''),('417007566320202030',4867,'41700756632','3','1.00','200','retail','0','2023-11-23 19:23:52','','','','0','Cash',0.00,'200','','','4','','1','2023-11-23 16:23:56','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-168.00','-169','Inclusive','branch','Inventory','','','','',''),('417007616900202030',4868,'41700761690','21','1.00','200','retail','0','2023-11-23 20:48:10','','','','0','Cash',0.00,'200','','','4','','1','2023-11-23 17:48:25','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-610.00','-611','Inclusive','branch','Inventory','','','','',''),('417007616982179302',4869,'41700761690','21','1.00','200','retail','0','2023-11-23 20:48:17','','','','0','Cash',0.00,'200','','','4','','1','2023-11-23 17:48:25','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-611.00','-612','Inclusive','branch','Inventory','','','','',''),('417007617023022307',4870,'41700761690','21','1.00','200','retail','0','2023-11-23 20:48:21','','','','0','Cash',0.00,'200','','','4','','1','2023-11-23 17:48:25','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-612.00','-613','Inclusive','branch','Inventory','','','','',''),('417008230703028344',4871,'41700823069','7','1.00','200','retail','0','2023-11-24 13:51:09','','','','0','Cash',0.00,'200','','','4','','1','2023-11-24 10:51:12','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-245.00','-246','Inclusive','branch','Inventory','','','','',''),('417008328183022318',4872,'41700832818','38','1.00','350','retail','0','2023-11-24 16:33:38','','','','0','Cash',0.00,'350','','','4','','1','2023-11-24 13:33:53','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-602.00','-603','Inclusive','branch','Inventory','','','','',''),('417008328233421300',4873,'41700832818','38','1.00','350','retail','0','2023-11-24 16:33:43','','','','0','Cash',0.00,'350','','','4','','1','2023-11-24 13:33:53','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-603.00','-604','Inclusive','branch','Inventory','','','','',''),('417008358333022338',4874,'41700835832','7','1.00','200','retail','0','2023-11-24 17:23:52','','','','0','Cash',0.00,'200','','','4','','1','2023-11-24 14:24:06','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-246.00','-247','Inclusive','branch','Inventory','','','','',''),('417008359800202030',4875,'41700835979','7','1.00','200','retail','0','2023-11-24 17:26:19','','','','0','Cash',0.00,'200','','','4','','1','2023-11-24 14:26:29','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-247.00','-248','Inclusive','branch','Inventory','','','','',''),('417008392058010333',4876,'41700839204','38','1.00','350','retail','0','2023-11-24 18:20:04','','','','0','Cash',0.00,'350','','','4','','1','2023-11-24 15:20:08','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-604.00','-605','Inclusive','branch','Inventory','','','','',''),('417008404683421300',4877,'41700840468','8','1.00','150','retail','0','2023-11-24 18:41:08','','','','0','Cash',0.00,'150','','','4','','1','2023-11-24 15:41:12','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-93.00','-94','Inclusive','branch','Inventory','','','','',''),('417008442083022302',4878,'41700844207','20','1.00','200','retail','0','2023-11-24 19:43:27','','','','0','Cash',0.00,'200','','','4','','1','2023-11-24 16:43:31','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-239.00','-240','Inclusive','branch','Inventory','','','','',''),('417008533342373302',4879,'41700853333','23','1.00','250','retail','0','2023-11-24 22:15:33','','','','0','Cash',0.00,'250','','','4','','1','2023-11-24 19:15:37','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-200.00','-201','Inclusive','branch','Inventory','','','','',''),('417009067460202030',4880,'41700906746','1','1.00','280','retail','0','2023-11-25 13:05:46','','','','0','Cash',0.00,'280','','','4','','1','2023-11-25 10:05:51','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-379.00','-380','Inclusive','branch','Inventory','','','','',''),('417009341184232432',4881,'41700934118','7','1.00','200','retail','0','2023-11-25 20:41:58','','','','0','Cash',0.00,'200','','','4','','1','2023-11-25 17:42:06','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-248.00','-249','Inclusive','branch','Inventory','','','','',''),('417009368714232432',4882,'41700936871','38','1.00','350','retail','0','2023-11-25 21:27:51','','','','0','Cash',0.00,'350','','','4','','1','2023-11-25 18:27:55','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-605.00','-606','Inclusive','branch','Inventory','','','','',''),('417009368842678302',4883,'41700936883','38','1.00','350','retail','0','2023-11-25 21:28:03','','','','0','Cash',0.00,'350','','','4','','1','2023-11-25 18:28:07','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-606.00','-607','Inclusive','branch','Inventory','','','','',''),('417009407752233003',4884,'41700940774','52','1.00','150','retail','0','2023-11-25 22:32:54','','','','200','Cash',0.00,'150','','','4','','1','2023-11-25 19:32:58','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('417009414890202030',4885,'41700941488','21','1.00','200','retail','0','2023-11-25 22:44:48','','','','0','Cash',0.00,'200','','','4','','1','2023-11-25 19:44:52','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-613.00','-614','Inclusive','branch','Inventory','','','','',''),('417009988034292432',4886,'41700998802','1','1.00','280','retail','0','2023-11-26 14:40:02','','','','0','Cash',0.00,'280','','','4','','1','2023-11-26 11:40:06','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-380.00','-381','Inclusive','branch','Inventory','','','','',''),('417009988354292432',4887,'41700998834','47','1.00','200','retail','0','2023-11-26 14:40:34','','','','0','Cash',0.00,'200','','','4','','1','2023-11-26 11:40:41','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-1.00','-2','Inclusive','branch','Inventory','','','','',''),('417010697734262432',4888,'41701069773','26','1.00','100','retail','0','2023-11-27 10:22:53','','','','0','Cash',0.00,'100','','','4','','1','2023-11-27 07:22:57','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-49.00','-50','Inclusive','branch','Inventory','','','','',''),('417010825822020244',4889,'41701082581','7','1.00','200','retail','0','2023-11-27 13:56:21','','','','0','Cash',0.00,'200','','','4','','1','2023-11-27 10:56:26','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-249.00','-250','Inclusive','branch','Inventory','','','','',''),('417010894302222032',4890,'41701089429','11','1.00','280','retail','0','2023-11-27 15:50:29','','','','0','Cash',0.00,'280','','','4','','1','2023-11-27 12:50:34','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-124.00','-125','Inclusive','branch','Inventory','','','','',''),('417010894879020944',4891,'41701089486','25','1.00','100','retail','0','2023-11-27 15:51:26','','','','0','Cash',0.00,'100','','','4','','1','2023-11-27 12:51:34','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-5.00','-6','Inclusive','branch','Inventory','','','','',''),('417010894913421300',4892,'41701089486','25','1.00','100','retail','0','2023-11-27 15:51:30','','','','0','Cash',0.00,'100','','','4','','1','2023-11-27 12:51:34','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-6.00','-7','Inclusive','branch','Inventory','','','','',''),('417010895490202031',4893,'41701089548','20','1.00','200','retail','0','2023-11-27 15:52:28','','','','0','Cash',0.00,'200','','','4','','1','2023-11-27 12:52:32','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-240.00','-241','Inclusive','branch','Inventory','','','','',''),('417010896260202031',4894,'41701089626','20','1.00','200','retail','0','2023-11-27 15:53:46','','','','0','Cash',0.00,'200','','','4','','1','2023-11-27 12:53:49','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-241.00','-242','Inclusive','branch','Inventory','','','','',''),('417010947172222032',4895,'41701094717','1','1.00','280','retail','0','2023-11-27 17:18:37','','','','0','Cash',0.00,'280','','','4','','1','2023-11-27 14:18:40','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-381.00','-382','Inclusive','branch','Inventory','','','','',''),('417010947334020444',4896,'41701094732','1','1.00','280','retail','0','2023-11-27 17:18:52','','','','0','Cash',0.00,'280','','','4','','1','2023-11-27 14:18:59','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-382.00','-383','Inclusive','branch','Inventory','','','','',''),('417011039910202031',4897,'41701103990','38','1.00','350','retail','0','2023-11-27 19:53:10','','','','0','Cash',0.00,'350','','','4','','1','2023-11-27 16:53:13','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-607.00','-608','Inclusive','branch','Inventory','','','','',''),('417011040642476312',4898,'41701104064','11','1.00','280','retail','0','2023-11-27 19:54:24','','','','0','Cash',0.00,'280','','','4','','1','2023-11-27 16:54:27','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-125.00','-126','Inclusive','branch','Inventory','','','','',''),('417011041314021444',4899,'41701104131','20','1.00','200','retail','0','2023-11-27 19:55:31','','','','0','Cash',0.00,'200','','','4','','1','2023-11-27 16:55:34','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-242.00','-243','Inclusive','branch','Inventory','','','','',''),('417011049824202432',4900,'41701104981','23','1.00','250','retail','0','2023-11-27 20:09:41','','','','0','Cash',0.00,'250','','','4','','1','2023-11-27 17:09:44','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-201.00','-202','Inclusive','branch','Inventory','','','','',''),('417011050035021544',4901,'41701105002','47','1.00','200','retail','0','2023-11-27 20:10:02','','','','0','Cash',0.00,'200','','','4','','1','2023-11-27 17:10:06','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-2.00','-3','Inclusive','branch','Inventory','','','','',''),('417011126872278312',4902,'41701112687','38','1.00','350','retail','0','2023-11-27 22:18:07','','','','0','Cash',0.00,'350','','','4','','1','2023-11-27 19:18:10','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-608.00','-609','Inclusive','branch','Inventory','','','','',''),('417011546064223060',4903,'41701154605','5','1.00','300','retail','0','2023-11-28 09:56:45','','','','0','Cash',0.00,'300','','','4','','1','2023-11-28 06:56:50','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-134.00','-135','Inclusive','branch','Inventory','','','','',''),('417011613061021144',4904,'41701161306','21','1.00','200','retail','0','2023-11-28 11:48:26','','','','0','Cash',0.00,'200','','','4','','1','2023-11-28 08:48:32','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-614.00','-615','Inclusive','branch','Inventory','','','','',''),('417011899283421300',4905,'41701189928','38','1.00','350','retail','0','2023-11-28 19:45:28','','','','0','Cash',0.00,'350','','','4','','1','2023-11-28 16:45:31','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-609.00','-610','Inclusive','branch','Inventory','','','','',''),('417011924432021244',4906,'41701192442','11','1.00','280','retail','0','2023-11-28 20:27:22','','','','0','Cash',0.00,'280','','','4','','1','2023-11-28 17:27:26','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-126.00','-127','Inclusive','branch','Inventory','','','','',''),('417011970940240032',4907,'41701197093','60','1.00','100','retail','0','2023-11-28 21:44:53','','','','70','Cash',0.00,'100','','','4','','1','2023-11-28 18:46:23','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','Inventory','1110','4000','5500','',''),('417012554022222032',4908,'41701255401','7','1.00','200','retail','0','2023-11-29 13:56:41','','','','0','Cash',0.00,'200','','','4','','1','2023-11-29 10:56:46','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-250.00','-251','Inclusive','branch','Inventory','','','','',''),('417012599063022309',4909,'41701259906','7','1.00','200','retail','0','2023-11-29 15:11:46','','','','0','Cash',0.00,'200','','','4','','1','2023-11-29 12:11:50','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-251.00','-252','Inclusive','branch','Inventory','','','','',''),('417012635513421300',4910,'41701263550','1','1.00','280','retail','0','2023-11-29 16:12:30','','','','0','Cash',0.00,'280','','','4','','1','2023-11-29 13:12:45','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-383.00','-384','Inclusive','branch','Inventory','','','','',''),('417012635562375312',4911,'41701263550','21','1.00','200','retail','0','2023-11-29 16:12:35','','','','0','Cash',0.00,'200','','','4','','1','2023-11-29 13:12:45','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-615.00','-616','Inclusive','branch','Inventory','','','','',''),('417012677140240032',4912,'41701267714','7','1.00','200','retail','0','2023-11-29 17:21:54','','','','0','Cash',0.00,'200','','','4','','1','2023-11-29 14:22:02','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-252.00','-253','Inclusive','branch','Inventory','','','','',''),('417012710753022370',4913,'41701271074','21','1.00','200','retail','0','2023-11-29 18:17:54','','','','0','Cash',0.00,'200','','','4','','1','2023-11-29 15:18:01','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-616.00','-617','Inclusive','branch','Inventory','','','','',''),('417012717212172312',4914,'41701271720','38','1.00','350','retail','0','2023-11-29 18:28:40','','','','0','Cash',0.00,'350','','','4','','1','2023-11-29 15:28:44','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-610.00','-611','Inclusive','branch','Inventory','','','','',''),('417012802103013300',4915,'41701280209','1','1.00','280','retail','0','2023-11-29 20:50:09','','','','0','Cash',0.00,'280','','','4','','1','2023-11-29 17:50:15','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-384.00','-385','Inclusive','branch','Inventory','','','','',''),('417013404683022364',4916,'41701340468','11','1.00','280','retail','0','2023-11-30 13:34:28','','','','0','Cash',0.00,'280','','','4','','1','2023-11-30 10:34:52','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-127.00','-128','Inclusive','branch','Inventory','','','','',''),('417013407272222032',4917,'41701340726','5','1.00','300','retail','0','2023-11-30 13:38:46','','','','0','Cash',0.00,'300','','','4','','1','2023-11-30 10:39:21','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-135.00','-136','Inclusive','branch','Inventory','','','','',''),('417013414391023144',4918,'41701341438','7','1.00','200','retail','0','2023-11-30 13:50:38','','','','0','Cash',0.00,'200','','','4','','1','2023-11-30 10:50:50','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-253.00','-254','Inclusive','branch','Inventory','','','','',''),('417013459133421300',4919,'41701345912','40','1.00','600','retail','0','2023-11-30 15:05:12','','','','0','Cash',0.00,'600','','','4','','1','2023-11-30 12:05:21','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-43.00','-44','Inclusive','branch','Inventory','','','','',''),('417013542813022382',4920,'41701354280','38','1.00','350','retail','0','2023-11-30 17:24:40','','','','0','Cash',0.00,'350','','','4','','1','2023-11-30 14:24:44','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-611.00','-612','Inclusive','branch','Inventory','','','','',''),('417013577190202031',4921,'41701357718','38','1.00','350','retail','0','2023-11-30 18:21:58','','','','0','Cash',0.00,'350','','','4','','1','2023-11-30 15:22:07','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-612.00','-613','Inclusive','branch','Inventory','','','','',''),('417013608590290032',4922,'41701360859','20','1.00','200','retail','0','2023-11-30 19:14:19','','','','0','Cash',0.00,'200','','','4','','1','2023-11-30 16:14:27','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-243.00','-244','Inclusive','branch','Inventory','','','','',''),('417013649034262432',4923,'41701364902','7','1.00','200','retail','0','2023-11-30 20:21:42','','','','0','Cash',0.00,'200','','','4','','1','2023-11-30 17:22:08','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-254.00','-255','Inclusive','branch','Inventory','','','','',''),('417013649160260032',4924,'41701364902','7','1.00','200','retail','0','2023-11-30 20:21:56','','','','0','Cash',0.00,'200','','','4','','1','2023-11-30 17:22:08','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-255.00','-256','Inclusive','branch','Inventory','','','','',''),('417013649193421300',4925,'41701364902','7','1.00','200','retail','0','2023-11-30 20:21:59','','','','0','Cash',0.00,'200','','','4','','1','2023-11-30 17:22:08','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-256.00','-257','Inclusive','branch','Inventory','','','','',''),('417013656813022386',4926,'41701365680','21','1.00','200','retail','0','2023-11-30 20:34:40','','','','0','Cash',0.00,'200','','','4','','1','2023-11-30 17:34:48','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-617.00','-618','Inclusive','branch','Inventory','','','','',''),('417014151615024544',4927,'41701415160','12','1.00','250','retail','0','2023-12-01 10:19:21','','','','0','Cash',0.00,'250','','','4','','1','2023-12-01 07:19:38','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-119.00','-120','Inclusive','branch','Inventory','','','','',''),('417014179634212432',4928,'41701417963','21','1.00','200','retail','0','2023-12-01 11:06:03','','','','0','Cash',0.00,'200','','','4','','1','2023-12-01 08:06:06','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-618.00','-619','Inclusive','branch','Inventory','','','','',''),('417014213094302400',4929,'41701421308','7','1.00','200','retail','0','2023-12-01 12:01:48','','','','0','Cash',0.00,'200','','','4','','1','2023-12-01 09:01:54','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-257.00','-258','Inclusive','branch','Inventory','','','','',''),('417014284442222032',4930,'41701428443','21','1.00','200','retail','0','2023-12-01 14:00:43','','','','0','Cash',0.00,'200','','','4','','1','2023-12-01 11:00:55','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-619.00','-620','Inclusive','branch','Inventory','','','','',''),('417014306940202031',4931,'41701430694','21','1.00','200','retail','0','2023-12-01 14:38:14','','','','0','Cash',0.00,'200','','','4','','1','2023-12-01 11:38:28','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-620.00','-621','Inclusive','branch','Inventory','','','','',''),('417014323642222032',4932,'41701432363','40','1.00','600','retail','0','2023-12-01 15:06:03','','','','0','Cash',0.00,'600','','','4','','1','2023-12-01 12:06:18','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-44.00','-45','Inclusive','branch','Inventory','','','','',''),('417014377242772312',4933,'41701437723','7','1.00','200','retail','0','2023-12-01 16:35:23','','','','0','Cash',0.00,'200','','','4','','1','2023-12-01 13:35:27','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-258.00','-259','Inclusive','branch','Inventory','','','','',''),('417014377250250032',4934,'41701437723','7','1.00','200','retail','0','2023-12-01 16:35:24','','','','0','Cash',0.00,'200','','','4','','1','2023-12-01 13:35:27','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-259.00','-260','Inclusive','branch','Inventory','','','','',''),('417014413752222032',4935,'41701441375','46','1.00','200','retail','0','2023-12-01 17:36:15','','','','0','Cash',0.00,'200','','','4','','1','2023-12-01 14:36:22','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-8.00','-9','Inclusive','branch','Inventory','','','','',''),('417014413780280032',4936,'41701441375','46','1.00','200','retail','0','2023-12-01 17:36:18','','','','0','Cash',0.00,'200','','','4','','1','2023-12-01 14:36:22','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-9.00','-10','Inclusive','branch','Inventory','','','','',''),('417014446733421300',4937,'41701444672','11','1.00','280','retail','0','2023-12-01 18:31:12','','','','0','Cash',0.00,'280','','','4','','1','2023-12-01 15:31:18','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-128.00','-129','Inclusive','branch','Inventory','','','','',''),('417014495493022345',4938,'41701449548','7','1.00','200','retail','0','2023-12-01 19:52:28','','','','0','Cash',0.00,'200','','','4','','1','2023-12-01 16:52:31','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-260.00','-261','Inclusive','branch','Inventory','','','','',''),('417014508720220032',4939,'41701450871','11','1.00','280','retail','0','2023-12-01 20:14:31','','','','0','Cash',0.00,'280','','','4','','1','2023-12-01 17:14:34','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-129.00','-130','Inclusive','branch','Inventory','','','','',''),('417015005524202432',4940,'41701500551','11','1.00','280','retail','0','2023-12-02 10:02:31','','','','0','Cash',0.00,'280','','','4','','1','2023-12-02 07:02:37','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-130.00','-131','Inclusive','branch','Inventory','','','','',''),('417015101832078312',4941,'41701510183','1','1.00','280','retail','0','2023-12-02 12:43:03','','','','0','Cash',0.00,'280','','','4','','1','2023-12-02 09:43:07','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-385.00','-386','Inclusive','branch','Inventory','','','','',''),('417015105800025044',4942,'41701510579','46','1.00','200','retail','0','2023-12-02 12:49:39','','','','0','Cash',0.00,'200','','','4','','1','2023-12-02 09:49:44','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-10.00','-11','Inclusive','branch','Inventory','','','','',''),('417015128793421300',4943,'41701512878','5','1.00','300','retail','0','2023-12-02 13:27:58','','','','0','Cash',0.00,'300','','','4','','1','2023-12-02 10:28:03','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-136.00','-137','Inclusive','branch','Inventory','','','','',''),('417015151163421300',4944,'41701515115','1','1.00','280','retail','0','2023-12-02 14:05:15','','','','0','Cash',0.00,'280','','','4','','1','2023-12-02 11:05:28','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-386.00','-387','Inclusive','branch','Inventory','','','','',''),('417015153273022323',4945,'41701515326','1','1.00','280','retail','0','2023-12-02 14:08:46','','','','0','Cash',0.00,'280','','','4','','1','2023-12-02 11:09:04','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-387.00','-388','Inclusive','branch','Inventory','','','','',''),('417015163726025644',4946,'41701516371','40','1.00','600','retail','0','2023-12-02 14:26:12','','','','0','Cash',0.00,'600','','','4','','1','2023-12-02 11:26:17','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-45.00','-46','Inclusive','branch','Inventory','','','','',''),('417015176864212432',4947,'41701517686','1','1.00','280','retail','0','2023-12-02 14:48:06','','','','0','Cash',0.00,'280','','','4','','1','2023-12-02 11:48:15','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-388.00','-389','Inclusive','branch','Inventory','','','','',''),('417015280173022310',4948,'41701528016','3','1.00','200','retail','0','2023-12-02 17:40:16','','','','0','Cash',0.00,'200','','','4','','1','2023-12-02 14:40:30','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-169.00','-170','Inclusive','branch','Inventory','','','','',''),('417015283140202031',4949,'41701528313','54','1.00','350','retail','0','2023-12-02 17:45:13','','','','200','Cash',0.00,'350','','','4','','1','2023-12-02 14:46:34','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','33.00','32','Inclusive','branch','Service','1110','4000','5500','',''),('417015283654222432',4950,'41701528313','54','1.00','350','retail','0','2023-12-02 17:46:05','','','','200','Cash',0.00,'350','','','4','','1','2023-12-02 14:46:34','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','33.00','32','Inclusive','branch','Service','1110','4000','5500','',''),('417015283853421300',4951,'41701528313','47','1.00','200','retail','0','2023-12-02 17:46:24','','','','0','Cash',0.00,'200','','','4','','1','2023-12-02 14:46:34','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-3.00','-4','Inclusive','branch','Inventory','','','','',''),('417015283890202031',4952,'41701528313','47','1.00','200','retail','0','2023-12-02 17:46:28','','','','0','Cash',0.00,'200','','','4','','1','2023-12-02 14:46:34','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-4.00','-5','Inclusive','branch','Inventory','','','','',''),('417015293370270032',4953,'41701529336','11','1.00','280','retail','0','2023-12-02 18:02:16','','','','0','Cash',0.00,'280','','','4','','1','2023-12-02 15:02:23','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-131.00','-132','Inclusive','branch','Inventory','','','','',''),('417015326932222032',4954,'41701532693','21','1.00','200','retail','0','2023-12-02 18:58:13','','','','0','Cash',0.00,'200','','','4','','1','2023-12-02 15:58:17','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-621.00','-622','Inclusive','branch','Inventory','','','','',''),('417015366716025644',4955,'41701536670','2','1.00','250','retail','0','2023-12-02 20:04:30','','','','0','Cash',0.00,'250','','','4','','1','2023-12-02 17:04:36','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-103.00','-104','Inclusive','branch','Inventory','','','','',''),('417015367330230032',4956,'41701536732','5','1.00','300','retail','0','2023-12-02 20:05:32','','','','0','Cash',0.00,'300','','','4','','1','2023-12-02 17:05:38','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-137.00','-138','Inclusive','branch','Inventory','','','','',''),('417015376250250032',4957,'41701537624','20','1.00','200','retail','0','2023-12-02 20:20:25','','','','0','Cash',0.00,'200','','','4','','1','2023-12-02 17:20:31','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-244.00','-245','Inclusive','branch','Inventory','','','','',''),('417015416264242432',4958,'41701541625','3','1.00','200','retail','0','2023-12-02 21:27:05','','','','0','Cash',0.00,'200','','','4','','1','2023-12-02 18:27:10','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-170.00','-171','Inclusive','branch','Inventory','','','','',''),('417015890110210032',4959,'41701589010','21','1.00','200','retail','0','2023-12-03 10:36:50','','','','0','Cash',0.00,'200','','','4','','1','2023-12-03 07:36:54','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-622.00','-623','Inclusive','branch','Inventory','','','','',''),('417015970253022320',4960,'41701597024','7','1.00','200','retail','0','2023-12-03 12:50:24','','','','0','Cash',0.00,'200','','','4','','1','2023-12-03 09:50:40','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-261.00','-262','Inclusive','branch','Inventory','','','','',''),('417015971144292432',4961,'41701597113','11','1.00','280','retail','0','2023-12-03 12:51:53','','','','0','Cash',0.00,'280','','','4','','1','2023-12-03 09:52:02','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-132.00','-133','Inclusive','branch','Inventory','','','','',''),('417016110920202031',4962,'41701611091','3','1.00','200','retail','0','2023-12-03 16:44:52','','','','0','Cash',0.00,'200','','','4','','1','2023-12-03 13:45:15','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-171.00','-172','Inclusive','branch','Inventory','','','','',''),('417016110963022390',4963,'41701611091','3','1.00','200','retail','0','2023-12-03 16:44:55','','','','0','Cash',0.00,'200','','','4','','1','2023-12-03 13:45:15','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-172.00','-173','Inclusive','branch','Inventory','','','','',''),('417016192410210032',4964,'41701619240','21','1.00','200','retail','0','2023-12-03 19:00:40','','','','0','Cash',0.00,'200','','','4','','1','2023-12-03 16:00:44','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-623.00','-624','Inclusive','branch','Inventory','','','','',''),('417016192853022382',4965,'41701619285','1','1.00','280','retail','0','2023-12-03 19:01:25','','','','0','Cash',0.00,'280','','','4','','1','2023-12-03 16:01:29','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-389.00','-390','Inclusive','branch','Inventory','','','','',''),('417016225776720134',4966,'41701622576','21','1.00','200','retail','0','2023-12-03 19:56:16','','','','0','Cash',0.00,'200','','','4','','1','2023-12-03 16:56:26','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-624.00','-625','Inclusive','branch','Inventory','','','','',''),('417016230243421300',4967,'41701623023','5','1.00','300','retail','0','2023-12-03 20:03:44','','','','0','Cash',0.00,'300','','','4','','1','2023-12-03 17:03:48','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-138.00','-139','Inclusive','branch','Inventory','','','','',''),('417016294153421300',4968,'41701629415','21','1.00','200','retail','0','2023-12-03 21:50:15','','','','0','Cash',0.00,'200','','','4','','1','2023-12-03 18:50:23','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-625.00','-626','Inclusive','branch','Inventory','','','','',''),('417016294190290032',4969,'41701629415','21','1.00','200','retail','0','2023-12-03 21:50:18','','','','0','Cash',0.00,'200','','','4','','1','2023-12-03 18:50:23','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-626.00','-627','Inclusive','branch','Inventory','','','','',''),('417016294930202031',4970,'41701629493','21','1.00','200','retail','0','2023-12-03 21:51:33','','','','0','Cash',0.00,'200','','','4','','1','2023-12-03 18:51:40','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-627.00','-628','Inclusive','branch','Inventory','','','','',''),('417016294972222032',4971,'41701629493','21','1.00','200','retail','0','2023-12-03 21:51:36','','','','0','Cash',0.00,'200','','','4','','1','2023-12-03 18:51:40','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-628.00','-629','Inclusive','branch','Inventory','','','','',''),('417016304262072312',4972,'41701630426','20','1.00','200','retail','0','2023-12-03 22:07:06','','','','0','Cash',0.00,'200','','','4','','1','2023-12-03 19:07:11','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-245.00','-246','Inclusive','branch','Inventory','','','','',''),('417016322070202031',4973,'41701632206','21','1.00','200','retail','0','2023-12-03 22:36:46','','','','0','Cash',0.00,'200','','','4','','1','2023-12-03 19:36:51','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-629.00','-630','Inclusive','branch','Inventory','','','','',''),('417016805824282432',4974,'41701680581','1','1.00','280','retail','0','2023-12-04 12:03:01','','','','0','Cash',0.00,'280','','','4','','1','2023-12-04 09:03:15','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-390.00','-391','Inclusive','branch','Inventory','','','','',''),('417016805860026044',4975,'41701680581','1','1.00','280','retail','0','2023-12-04 12:03:05','','','','0','Cash',0.00,'280','','','4','','1','2023-12-04 09:03:15','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-391.00','-392','Inclusive','branch','Inventory','','','','',''),('417016832683421300',4976,'41701683267','11','1.00','280','retail','0','2023-12-04 12:47:47','','','','0','Cash',0.00,'280','','','4','','1','2023-12-04 09:47:54','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-133.00','-134','Inclusive','branch','Inventory','','','','',''),('417016833702222032',4977,'41701683369','1','1.00','280','retail','0','2023-12-04 12:49:29','','','','0','Cash',0.00,'280','','','4','','1','2023-12-04 09:49:35','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-392.00','-393','Inclusive','branch','Inventory','','','','',''),('417016949003022309',4978,'41701694899','12','1.00','250','retail','0','2023-12-04 16:01:39','','','','0','Cash',0.00,'250','','','4','','1','2023-12-04 13:01:44','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-120.00','-121','Inclusive','branch','Inventory','','','','',''),('417017066230230032',4979,'41701706622','21','1.00','200','retail','0','2023-12-04 19:17:02','','','','0','Cash',0.00,'200','','','4','','1','2023-12-04 16:17:07','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-630.00','-631','Inclusive','branch','Inventory','','','','',''),('417017106650202031',4980,'41701710665','21','1.00','200','retail','0','2023-12-04 20:24:25','','','','0','Cash',0.00,'200','','','4','','1','2023-12-04 17:24:28','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-631.00','-632','Inclusive','branch','Inventory','','','','',''),('417017106844212432',4981,'41701710683','28','1.00','300','retail','0','2023-12-04 20:24:43','','','','0','Cash',0.00,'300','','','4','','1','2023-12-04 17:24:47','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-6.00','-7','Inclusive','branch','Inventory','','','','',''),('417017122603421300',4982,'41701712259','1','1.00','280','retail','0','2023-12-04 20:50:59','','','','0','Cash',0.00,'280','','','4','','1','2023-12-04 17:51:43','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-393.00','-394','Inclusive','branch','Inventory','','','','',''),('417017122720202031',4983,'41701712259','4','1.00','150','retail','0','2023-12-04 20:51:11','','','','0','Cash',0.00,'150','','','4','','1','2023-12-04 17:51:43','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-63.00','-64','Inclusive','branch','Inventory','','','','',''),('417017140173421300',4984,'41701714016','23','1.00','250','retail','0','2023-12-04 21:20:17','','','','0','Cash',0.00,'250','','','4','','1','2023-12-04 18:20:24','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-202.00','-203','Inclusive','branch','Inventory','','','','',''),('417017140213022320',4985,'41701714016','23','1.00','250','retail','0','2023-12-04 21:20:20','','','','0','Cash',0.00,'250','','','4','','1','2023-12-04 18:20:24','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-203.00','-204','Inclusive','branch','Inventory','','','','',''),('417017629814262432',4986,'41701762980','20','1.00','200','retail','0','2023-12-05 10:56:20','','','','0','Cash',0.00,'200','','','4','','1','2023-12-05 07:56:25','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-246.00','-247','Inclusive','branch','Inventory','','','','',''),('417017649854262432',4987,'41701764984','1','1.00','280','retail','0','2023-12-05 11:29:44','','','','0','Cash',0.00,'280','','','4','','1','2023-12-05 08:29:49','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-394.00','-395','Inclusive','branch','Inventory','','','','',''),('417017833200200032',4988,'41701783320','23','1.00','250','retail','0','2023-12-05 16:35:20','','','','0','Cash',0.00,'250','','','4','','1','2023-12-05 13:35:25','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-204.00','-205','Inclusive','branch','Inventory','','','','',''),('417017833822378312',4989,'41701783382','23','1.00','250','retail','0','2023-12-05 16:36:22','','','','0','Cash',0.00,'250','','','4','','1','2023-12-05 13:36:26','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-205.00','-206','Inclusive','branch','Inventory','','','','',''),('417017843743732040',4990,'41701784373','23','1.00','250','retail','0','2023-12-05 16:52:53','','','','0','Cash',0.00,'250','','','4','','1','2023-12-05 13:52:58','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-206.00','-207','Inclusive','branch','Inventory','','','','',''),('417017879353022339',4991,'41701787935','21','1.00','200','retail','0','2023-12-05 17:52:15','','','','0','Cash',0.00,'200','','','4','','1','2023-12-05 14:52:18','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-632.00','-633','Inclusive','branch','Inventory','','','','',''),('417017879473237224',4992,'41701787946','21','1.00','200','retail','0','2023-12-05 17:52:26','','','','0','Cash',0.00,'200','','','4','','1','2023-12-05 14:53:13','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-633.00','-634','Inclusive','branch','Inventory','','','','',''),('417017879510302242',4993,'41701787946','21','1.00','200','retail','0','2023-12-05 17:52:30','','','','0','Cash',0.00,'200','','','4','','1','2023-12-05 14:53:13','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-634.00','-635','Inclusive','branch','Inventory','','','','',''),('417017927910210032',4994,'41701792791','6','1.00','280','retail','0','2023-12-05 19:13:11','','','','0','Cash',0.00,'280','','','4','','1','2023-12-05 16:13:25','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-32.00','-33','Inclusive','branch','Inventory','','','','',''),('417017954305027544',4995,'41701795429','12','1.00','250','retail','0','2023-12-05 19:57:09','','','','0','Cash',0.00,'250','','','4','','1','2023-12-05 16:57:13','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-121.00','-122','Inclusive','branch','Inventory','','','','',''),('417017963650202031',4996,'41701796364','21','1.00','200','retail','0','2023-12-05 20:12:44','','','','0','Cash',0.00,'200','','','4','','1','2023-12-05 17:12:49','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-635.00','-636','Inclusive','branch','Inventory','','','','',''),('417018603453421300',4997,'41701860344','46','1.00','200','retail','0','2023-12-06 13:59:04','','','','0','Cash',0.00,'200','','','4','','1','2023-12-06 10:59:12','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-11.00','-12','Inclusive','branch','Inventory','','','','',''),('417018603482222032',4998,'41701860344','46','1.00','200','retail','0','2023-12-06 13:59:07','','','','0','Cash',0.00,'200','','','4','','1','2023-12-06 10:59:12','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-12.00','-13','Inclusive','branch','Inventory','','','','',''),('417018725464272432',4999,'41701872545','21','1.00','200','retail','0','2023-12-06 17:22:25','','','','0','Cash',0.00,'200','','','4','','1','2023-12-06 14:22:32','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-636.00','-637','Inclusive','branch','Inventory','','','','',''),('417018736813022386',5000,'41701873680','12','1.00','250','retail','0','2023-12-06 17:41:20','','','','0','Cash',0.00,'250','','','4','','1','2023-12-06 14:41:25','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-122.00','-123','Inclusive','branch','Inventory','','','','',''),('417018765693022365',5001,'41701876568','23','1.00','250','retail','0','2023-12-06 18:29:28','','','','0','Cash',0.00,'250','','','4','','1','2023-12-06 15:29:31','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-207.00','-208','Inclusive','branch','Inventory','','','','',''),('417018775840240032',5002,'41701877583','12','1.00','250','retail','0','2023-12-06 18:46:23','','','','0','Cash',0.00,'250','','','4','','1','2023-12-06 15:46:26','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-123.00','-124','Inclusive','branch','Inventory','','','','',''),('417018776103421300',5003,'41701877609','23','1.00','250','retail','0','2023-12-06 18:46:50','','','','0','Cash',0.00,'250','','','4','','1','2023-12-06 15:47:21','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-208.00','-209','Inclusive','branch','Inventory','','','','',''),('417018776322222032',5004,'41701877609','46','1.00','200','retail','0','2023-12-06 18:47:12','','','','0','Cash',0.00,'200','','','4','','1','2023-12-06 15:47:21','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-13.00','-14','Inclusive','branch','Inventory','','','','',''),('417018776367028744',5005,'41701877609','46','1.00','200','retail','0','2023-12-06 18:47:15','','','','0','Cash',0.00,'200','','','4','','1','2023-12-06 15:47:21','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-14.00','-15','Inclusive','branch','Inventory','','','','',''),('417018858420220032',5006,'41701885841','12','1.00','250','retail','0','2023-12-06 21:04:01','','','','0','Cash',0.00,'250','','','4','','1','2023-12-06 18:04:04','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-124.00','-125','Inclusive','branch','Inventory','','','','',''),('417019350693022360',5007,'41701935069','3','1.00','200','retail','0','2023-12-07 10:44:29','','','','0','Cash',0.00,'200','','','4','','1','2023-12-07 07:44:37','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-173.00','-174','Inclusive','branch','Inventory','','','','',''),('417019566140202031',5008,'41701956614','11','1.00','280','retail','0','2023-12-07 16:43:34','','','','0','Cash',0.00,'280','','','4','','1','2023-12-07 13:43:40','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-134.00','-135','Inclusive','branch','Inventory','','','','',''),('417019567426029644',5009,'41701956741','1','1.00','280','retail','0','2023-12-07 16:45:41','','','','0','Cash',0.00,'280','','','4','','1','2023-12-07 13:45:49','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-395.00','-396','Inclusive','branch','Inventory','','','','',''),('417019605910029044',5010,'41701960590','1','1.00','280','retail','0','2023-12-07 17:49:50','','','','0','Cash',0.00,'280','','','4','','1','2023-12-07 14:49:57','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-396.00','-397','Inclusive','branch','Inventory','','','','',''),('417019632740327242',5011,'41701963273','21','1.00','200','retail','0','2023-12-07 18:34:33','','','','0','Cash',0.00,'200','','','4','','1','2023-12-07 15:34:38','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-637.00','-638','Inclusive','branch','Inventory','','','','',''),('417020417923022397',5012,'41702041792','21','1.00','200','retail','0','2023-12-08 16:23:12','','','','0','Cash',0.00,'200','','','4','','1','2023-12-08 13:23:25','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-638.00','-639','Inclusive','branch','Inventory','','','','',''),('417020417964242432',5013,'41702041792','21','1.00','200','retail','0','2023-12-08 16:23:16','','','','0','Cash',0.00,'200','','','4','','1','2023-12-08 13:23:25','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-639.00','-640','Inclusive','branch','Inventory','','','','',''),('417020418323421300',5014,'41702041831','2','1.00','250','retail','0','2023-12-08 16:23:51','','','','0','Cash',0.00,'250','','','4','','1','2023-12-08 13:24:05','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-104.00','-105','Inclusive','branch','Inventory','','','','',''),('417020418403022348',5015,'41702041831','1','1.00','280','retail','0','2023-12-08 16:24:00','','','','0','Cash',0.00,'280','','','4','','1','2023-12-08 13:24:05','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-397.00','-398','Inclusive','branch','Inventory','','','','',''),('417020457532575322',5016,'41702045752','21','1.00','200','retail','0','2023-12-08 17:29:12','','','','0','Cash',0.00,'200','','','4','','1','2023-12-08 14:29:25','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-640.00','-641','Inclusive','branch','Inventory','','','','',''),('417020457573323301',5017,'41702045752','21','1.00','200','retail','0','2023-12-08 17:29:16','','','','0','Cash',0.00,'200','','','4','','1','2023-12-08 14:29:25','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-641.00','-642','Inclusive','branch','Inventory','','','','',''),('417020457602222032',5018,'41702045752','21','1.00','200','retail','0','2023-12-08 17:29:19','','','','0','Cash',0.00,'200','','','4','','1','2023-12-08 14:29:25','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-642.00','-643','Inclusive','branch','Inventory','','','','',''),('417020529582020244',5019,'41702052958','7','1.00','200','retail','0','2023-12-08 19:29:18','','','','0','Cash',0.00,'200','','','4','','1','2023-12-08 16:29:21','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-262.00','-263','Inclusive','branch','Inventory','','','','',''),('417020546494252432',5020,'41702054648','1','1.00','280','retail','0','2023-12-08 19:57:28','','','','0','Cash',0.00,'280','','','4','','1','2023-12-08 16:57:31','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-398.00','-399','Inclusive','branch','Inventory','','','','',''),('417021048600202032',5021,'41702104859','12','1.00','250','retail','0','2023-12-09 09:54:19','','','','0','Cash',0.00,'250','','','4','','1','2023-12-09 06:54:28','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-125.00','-126','Inclusive','branch','Inventory','','','','',''),('417021072383421300',5022,'41702107238','21','1.00','200','retail','0','2023-12-09 10:33:58','','','','0','Cash',0.00,'200','','','4','','1','2023-12-09 07:34:24','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-643.00','-644','Inclusive','branch','Inventory','','','','',''),('417021072594202432',5023,'41702107238','46','1.00','200','retail','0','2023-12-09 10:34:19','','','','0','Cash',0.00,'200','','','4','','1','2023-12-09 07:34:24','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-15.00','-16','Inclusive','branch','Inventory','','','','',''),('417021082748021844',5024,'41702108273','21','1.00','200','retail','0','2023-12-09 10:51:13','','','','0','Cash',0.00,'200','','','4','','1','2023-12-09 07:51:26','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-644.00','-645','Inclusive','branch','Inventory','','','','',''),('417021082820202032',5025,'41702108273','47','1.00','200','retail','0','2023-12-09 10:51:21','','','','0','Cash',0.00,'200','','','4','','1','2023-12-09 07:51:26','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-5.00','-6','Inclusive','branch','Inventory','','','','',''),('417021083048021844',5026,'41702108303','46','1.00','200','retail','0','2023-12-09 10:51:43','','','','0','Cash',0.00,'200','','','4','','1','2023-12-09 07:51:49','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-16.00','-17','Inclusive','branch','Inventory','','','','',''),('417021137040202032',5027,'41702113704','21','1.00','200','retail','0','2023-12-09 12:21:44','','','','0','Cash',0.00,'200','','','4','','1','2023-12-09 09:21:48','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-645.00','-646','Inclusive','branch','Inventory','','','','',''),('417021165494212432',5028,'41702116549','7','1.00','200','retail','0','2023-12-09 13:09:09','','','','0','Cash',0.00,'200','','','4','','1','2023-12-09 10:09:14','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-263.00','-264','Inclusive','branch','Inventory','','','','',''),('417021188013022308',5029,'41702118801','1','1.00','280','retail','0','2023-12-09 13:46:41','','','','0','Cash',0.00,'280','','','4','','1','2023-12-09 10:46:46','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-399.00','-400','Inclusive','branch','Inventory','','','','',''),('417021300742077322',5030,'41702130074','3','1.00','200','retail','0','2023-12-09 16:54:34','','','','0','Cash',0.00,'200','','','4','','1','2023-12-09 13:54:38','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-174.00','-175','Inclusive','branch','Inventory','','','','',''),('417021443832420302',5031,'41702144382','5','1.00','300','retail','0','2023-12-09 20:53:02','','','','0','Cash',0.00,'300','','','4','','1','2023-12-09 17:53:06','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-139.00','-140','Inclusive','branch','Inventory','','','','',''),('417021992764292432',5032,'41702199275','21','1.00','200','retail','0','2023-12-10 12:07:55','','','','0','Cash',0.00,'200','','','4','','1','2023-12-10 09:07:59','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-646.00','-647','Inclusive','branch','Inventory','','','','',''),('417022072993022392',5033,'41702207298','21','1.00','200','retail','0','2023-12-10 14:21:38','','','','0','Cash',0.00,'200','','','4','','1','2023-12-10 11:21:43','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-647.00','-648','Inclusive','branch','Inventory','','','','',''),('417022097564202432',5034,'41702209755','8','1.00','150','retail','0','2023-12-10 15:02:35','','','','0','Cash',0.00,'150','','','4','','1','2023-12-10 12:02:44','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-94.00','-95','Inclusive','branch','Inventory','','','','',''),('417022112742177322',5035,'41702211274','13','1.00','280','retail','0','2023-12-10 15:27:54','','','','0','Cash',0.00,'280','','','4','','1','2023-12-10 12:27:59','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-10.00','-11','Inclusive','branch','Inventory','','','','',''),('417022853330230032',5036,'41702285332','12','1.00','250','retail','0','2023-12-11 12:02:12','','','','0','Cash',0.00,'250','','','4','','1','2023-12-11 09:02:15','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-126.00','-127','Inclusive','branch','Inventory','','','','',''),('417023023972023244',5037,'41702302396','1','1.00','280','retail','0','2023-12-11 16:46:36','','','','0','Cash',0.00,'280','','','4','','1','2023-12-11 13:46:40','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-400.00','-401','Inclusive','branch','Inventory','','','','',''),('417023155700202032',5038,'41702315569','20','1.00','200','retail','0','2023-12-11 20:26:09','','','','0','Cash',0.00,'200','','','4','','1','2023-12-11 17:26:13','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-247.00','-248','Inclusive','branch','Inventory','','','','',''),('417023732410210032',5039,'41702373240','54','1.00','350','retail','0','2023-12-12 12:27:20','','','','200','Cash',0.00,'350','','','4','','1','2023-12-12 09:27:24','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','34.00','33','Inclusive','branch','Service','1110','4000','5500','',''),('417023758653421300',5040,'41702375864','4','1.00','150','retail','0','2023-12-12 13:11:04','','','','0','Cash',0.00,'150','','','4','','1','2023-12-12 10:11:08','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-64.00','-65','Inclusive','branch','Inventory','','','','',''),('417023792713022372',5041,'41702379270','21','1.00','200','retail','0','2023-12-12 14:07:50','','','','0','Cash',0.00,'200','','','4','','1','2023-12-12 11:07:54','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-648.00','-649','Inclusive','branch','Inventory','','','','',''),('417023849834023444',5042,'41702384982','18','1.00','200','retail','0','2023-12-12 15:43:02','','','','0','Cash',0.00,'200','','','4','','1','2023-12-12 12:43:06','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-25.00','-26','Inclusive','branch','Inventory','','','','',''),('417023851394282432',5043,'41702385138','58','1.00','30','retail','0','2023-12-12 15:45:38','','','','15','Cash',0.00,'30','','','4','','1','2023-12-12 12:45:57','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','55.00','54','Inclusive','branch','Service','1110','4000','5500','',''),('417023998780280032',5044,'41702399877','21','1.00','200','retail','0','2023-12-12 19:51:17','','','','0','Cash',0.00,'200','','','4','','1','2023-12-12 16:51:22','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-649.00','-650','Inclusive','branch','Inventory','','','','',''),('417023999320220032',5045,'41702399932','20','1.00','200','retail','0','2023-12-12 19:52:12','','','','0','Cash',0.00,'200','','','4','','1','2023-12-12 16:52:16','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-248.00','-249','Inclusive','branch','Inventory','','','','',''),('417024525672222032',5046,'41702452566','17','1.00','200','retail','0','2023-12-13 10:29:26','','','','0','Cash',0.00,'200','','','4','','1','2023-12-13 07:29:31','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-88.00','-89','Inclusive','branch','Inventory','','','','',''),('417024525872024244',5047,'41702452587','21','1.00','200','retail','0','2023-12-13 10:29:47','','','','0','Cash',0.00,'200','','','4','','1','2023-12-13 07:29:52','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-650.00','-651','Inclusive','branch','Inventory','','','','',''),('417024881172373323',5048,'41702488116','7','1.00','200','retail','0','2023-12-13 20:21:56','','','','0','Cash',0.00,'200','','','4','','1','2023-12-13 17:22:01','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-264.00','-265','Inclusive','branch','Inventory','','','','',''),('417024896093421300',5049,'41702489608','40','1.00','600','retail','0','2023-12-13 20:46:48','','','','0','Cash',0.00,'600','','','4','','1','2023-12-13 17:46:56','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-46.00','-47','Inclusive','branch','Inventory','','','','',''),('417025604564262432',5050,'41702560455','7','1.00','200','retail','0','2023-12-14 16:27:35','','','','0','Cash',0.00,'200','','','4','','1','2023-12-14 13:27:41','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-265.00','-266','Inclusive','branch','Inventory','','','','',''),('417025627122222032',5051,'41702562711','38','1.00','350','retail','0','2023-12-14 17:05:11','','','','0','Cash',0.00,'350','','','4','','1','2023-12-14 14:05:16','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-613.00','-614','Inclusive','branch','Inventory','','','','',''),('417025632474262432',5052,'41702563247','17','1.00','200','retail','0','2023-12-14 17:14:07','','','','0','Cash',0.00,'200','','','4','','1','2023-12-14 14:14:11','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-89.00','-90','Inclusive','branch','Inventory','','','','',''),('417025668842222032',5053,'41702566884','38','1.00','350','retail','0','2023-12-14 18:14:44','','','','0','Cash',0.00,'350','','','4','','1','2023-12-14 15:14:48','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-614.00','-615','Inclusive','branch','Inventory','','','','',''),('417025683532222032',5054,'41702568352','38','1.00','350','retail','0','2023-12-14 18:39:12','','','','0','Cash',0.00,'350','','','4','','1','2023-12-14 15:39:16','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-615.00','-616','Inclusive','branch','Inventory','','','','',''),('417025693239025944',5055,'41702569322','2','1.00','250','retail','0','2023-12-14 18:55:22','','','','0','Cash',0.00,'250','','','4','','1','2023-12-14 15:55:30','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-105.00','-106','Inclusive','branch','Inventory','','','','',''),('417025693270202032',5056,'41702569322','2','1.00','250','retail','0','2023-12-14 18:55:26','','','','0','Cash',0.00,'250','','','4','','1','2023-12-14 15:55:30','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-106.00','-107','Inclusive','branch','Inventory','','','','',''),('417025711833022381',5057,'41702571182','21','1.00','200','retail','0','2023-12-14 19:26:22','','','','0','Cash',0.00,'200','','','4','','1','2023-12-14 16:26:26','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-651.00','-652','Inclusive','branch','Inventory','','','','',''),('417025749684025444',5058,'41702574967','21','1.00','200','retail','0','2023-12-14 20:29:27','','','','0','Cash',0.00,'200','','','4','','1','2023-12-14 17:29:37','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-652.00','-653','Inclusive','branch','Inventory','','','','',''),('417025820643022360',5059,'41702582063','46','1.00','200','retail','0','2023-12-14 22:27:43','','','','0','Cash',0.00,'200','','','4','','1','2023-12-14 19:28:02','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-17.00','-18','Inclusive','branch','Inventory','','','','',''),('417025820672222032',5060,'41702582063','46','1.00','200','retail','0','2023-12-14 22:27:47','','','','0','Cash',0.00,'200','','','4','','1','2023-12-14 19:28:02','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-18.00','-19','Inclusive','branch','Inventory','','','','',''),('417025820753022370',5061,'41702582063','46','1.00','200','retail','0','2023-12-14 22:27:55','','','','0','Cash',0.00,'200','','','4','','1','2023-12-14 19:28:02','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-19.00','-20','Inclusive','branch','Inventory','','','','',''),('417025822253022322',5062,'41702582225','21','1.00','200','retail','0','2023-12-14 22:30:25','','','','0','Cash',0.00,'200','','','4','','1','2023-12-14 19:30:29','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-653.00','-654','Inclusive','branch','Inventory','','','','',''),('417026239183026344',5063,'41702623917','23','1.00','250','retail','0','2023-12-15 10:05:17','','','','0','Cash',0.00,'250','','','4','','1','2023-12-15 07:05:29','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-209.00','-210','Inclusive','branch','Inventory','','','','',''),('417026239212420302',5064,'41702623917','21','1.00','200','retail','0','2023-12-15 10:05:20','','','','0','Cash',0.00,'200','','','4','','1','2023-12-15 07:05:29','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-654.00','-655','Inclusive','branch','Inventory','','','','',''),('417026406390202032',5065,'41702640638','3','1.00','200','retail','0','2023-12-15 14:43:58','','','','0','Cash',0.00,'200','','','4','','1','2023-12-15 11:44:06','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-175.00','-176','Inclusive','branch','Inventory','','','','',''),('417026500552075322',5066,'41702650054','2','1.00','250','retail','0','2023-12-15 17:20:54','','','','0','Cash',0.00,'250','','','4','','1','2023-12-15 14:20:58','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-107.00','-108','Inclusive','branch','Inventory','','','','',''),('417026502840240032',5067,'41702650283','11','1.00','280','retail','0','2023-12-15 17:24:43','','','','0','Cash',0.00,'280','','','4','','1','2023-12-15 14:24:47','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-135.00','-136','Inclusive','branch','Inventory','','','','',''),('417026524892278322',5068,'41702652489','8','1.00','150','retail','0','2023-12-15 18:01:29','','','','0','Cash',0.00,'150','','','4','','1','2023-12-15 15:01:34','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-95.00','-96','Inclusive','branch','Inventory','','','','',''),('417026527560260032',5069,'41702652755','38','1.00','350','retail','0','2023-12-15 18:05:55','','','','0','Cash',0.00,'350','','','4','','1','2023-12-15 15:06:06','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-616.00','-617','Inclusive','branch','Inventory','','','','',''),('417026684808026844',5070,'41702668479','23','1.00','250','retail','0','2023-12-15 22:27:59','','','','0','Cash',0.00,'250','','','4','','1','2023-12-15 19:28:07','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-210.00','-211','Inclusive','branch','Inventory','','','','',''),('417026685233421300',5071,'41702668522','52','1.00','150','retail','0','2023-12-15 22:28:42','','','','200','Cash',0.00,'150','','','4','','1','2023-12-15 19:28:48','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('417027119591027144',5072,'41702711958','4','1.00','150','retail','0','2023-12-16 10:32:38','','','','0','Cash',0.00,'150','','','4','','1','2023-12-16 07:32:43','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-65.00','-66','Inclusive','branch','Inventory','','','','',''),('417027165880280032',5073,'41702716588','12','1.00','250','retail','0','2023-12-16 11:49:48','','','','0','Cash',0.00,'250','','','4','','1','2023-12-16 08:49:52','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-127.00','-128','Inclusive','branch','Inventory','','','','',''),('617027427404242432',5074,'61702742740','1','1.00','280','retail','0','2023-12-16 19:05:40','','','','0','Cash',0.00,'280','','','6','','1','2023-12-16 16:06:39','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-401.00','-402','Inclusive','branch','Inventory','','','','',''),('617027427483421300',5075,'61702742740','1','1.00','280','retail','0','2023-12-16 19:05:48','','','','0','Cash',0.00,'280','','','6','','1','2023-12-16 16:06:39','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-402.00','-403','Inclusive','branch','Inventory','','','','',''),('617027427530230032',5076,'61702742740','1','1.00','280','retail','0','2023-12-16 19:05:52','','','','0','Cash',0.00,'280','','','6','','1','2023-12-16 16:06:39','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-403.00','-404','Inclusive','branch','Inventory','','','','',''),('617027427762222032',5077,'61702742740','20','1.00','200','retail','0','2023-12-16 19:06:15','','','','0','Cash',0.00,'200','','','6','','1','2023-12-16 16:06:39','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-249.00','-250','Inclusive','branch','Inventory','','','','',''),('617027427910202032',5078,'61702742740','20','1.00','200','retail','0','2023-12-16 19:06:31','','','','0','Cash',0.00,'200','','','6','','1','2023-12-16 16:06:39','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-250.00','-251','Inclusive','branch','Inventory','','','','',''),('617027427942027264',5079,'61702742740','20','1.00','200','retail','0','2023-12-16 19:06:34','','','','0','Cash',0.00,'200','','','6','','1','2023-12-16 16:06:39','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-251.00','-252','Inclusive','branch','Inventory','','','','',''),('617027439884242432',5080,'61702743987','21','1.00','200','retail','0','2023-12-16 19:26:27','','','','0','Cash',0.00,'200','','','6','','1','2023-12-16 16:27:04','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-655.00','-656','Inclusive','branch','Inventory','','','','',''),('617027440190290032',5081,'61702743987','1','1.00','280','retail','0','2023-12-16 19:26:59','','','','0','Cash',0.00,'280','','','6','','1','2023-12-16 16:27:04','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-404.00','-405','Inclusive','branch','Inventory','','','','',''),('617027470220220032',5082,'61702747022','20','1.00','200','retail','0','2023-12-16 20:17:02','','','','0','Cash',0.00,'200','','','6','','1','2023-12-16 17:17:06','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-252.00','-253','Inclusive','branch','Inventory','','','','',''),('617027510513421300',5083,'61702751051','38','1.00','350','retail','0','2023-12-16 21:24:11','','','','0','Cash',0.00,'350','','','6','','1','2023-12-16 18:24:15','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-617.00','-618','Inclusive','branch','Inventory','','','','',''),('417027973710210032',5084,'41702797370','1','1.00','280','retail','0','2023-12-17 10:16:10','','','','0','Cash',0.00,'280','','','4','','1','2023-12-17 07:16:13','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-405.00','-406','Inclusive','branch','Inventory','','','','',''),('417028066553421300',5085,'41702806655','38','1.00','350','retail','0','2023-12-17 12:50:55','','','','0','Cash',0.00,'350','','','4','','1','2023-12-17 09:51:16','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-618.00','-619','Inclusive','branch','Inventory','','','','',''),('417028085052222032',5086,'41702808504','9','1.00','200','retail','0','2023-12-17 13:21:44','','','','0','Cash',0.00,'200','','','4','','1','2023-12-17 10:21:47','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-14.00','-15','Inclusive','branch','Inventory','','','','',''),('417028165412542432',5087,'41702816540','8','1.00','150','retail','0','2023-12-17 15:35:41','','','','0','Cash',0.00,'150','','','4','','1','2023-12-17 12:35:45','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-96.00','-97','Inclusive','branch','Inventory','','','','',''),('417028225183421300',5088,'41702822517','7','1.00','200','retail','0','2023-12-17 17:15:17','','','','0','Cash',0.00,'200','','','4','','1','2023-12-17 14:15:24','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-266.00','-267','Inclusive','branch','Inventory','','','','',''),('417028237994222432',5089,'41702823798','38','1.00','350','retail','0','2023-12-17 17:36:38','','','','0','Cash',0.00,'350','','','4','','1','2023-12-17 14:40:27','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-619.00','-620','Inclusive','branch','Inventory','','','','',''),('417028238012222032',5090,'41702823798','38','1.00','350','retail','0','2023-12-17 17:36:41','','','','0','Cash',0.00,'350','','','4','','1','2023-12-17 14:40:27','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-620.00','-621','Inclusive','branch','Inventory','','','','',''),('417028259970270032',5091,'41702825997','38','1.00','350','retail','0','2023-12-17 18:13:17','','','','0','Cash',0.00,'350','','','4','','1','2023-12-17 15:13:25','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-621.00','-622','Inclusive','branch','Inventory','','','','',''),('417028260016028644',5092,'41702825997','38','1.00','350','retail','0','2023-12-17 18:13:20','','','','0','Cash',0.00,'350','','','4','','1','2023-12-17 15:13:25','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-622.00','-623','Inclusive','branch','Inventory','','','','',''),('417028260876028644',5093,'41702826087','38','1.00','350','retail','0','2023-12-17 18:14:47','','','','0','Cash',0.00,'350','','','4','','1','2023-12-17 15:14:53','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-623.00','-624','Inclusive','branch','Inventory','','','','',''),('417028885210202032',5094,'41702888520','1','1.00','280','retail','0','2023-12-18 11:35:20','','','','0','Cash',0.00,'280','','','4','','1','2023-12-18 08:35:25','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-406.00','-407','Inclusive','branch','Inventory','','','','',''),('417028936233028344',5095,'41702893622','21','1.00','200','retail','0','2023-12-18 13:00:22','','','','0','Cash',0.00,'200','','','4','','1','2023-12-18 10:00:25','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-656.00','-657','Inclusive','branch','Inventory','','','','',''),('417028960150202032',5096,'41702896015','7','1.00','200','retail','0','2023-12-18 13:40:15','','','','0','Cash',0.00,'200','','','4','','1','2023-12-18 10:40:19','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-267.00','-268','Inclusive','branch','Inventory','','','','',''),('417029098630230032',5097,'41702909862','38','1.00','350','retail','0','2023-12-18 17:31:02','','','','0','Cash',0.00,'350','','','4','','1','2023-12-18 14:31:06','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-624.00','-625','Inclusive','branch','Inventory','','','','',''),('417029127030202032',5098,'41702912702','12','1.00','250','retail','0','2023-12-18 18:18:22','','','','0','Cash',0.00,'250','','','4','','1','2023-12-18 15:18:26','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-128.00','-129','Inclusive','branch','Inventory','','','','',''),('417029212830202032',5099,'41702921282','58','1.00','30','retail','0','2023-12-18 20:41:22','','','','15','Cash',0.00,'30','','','4','','1','2023-12-18 17:41:27','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','55.00','54','Inclusive','branch','Service','1110','4000','5500','',''),('417029216303022336',5100,'41702921629','11','1.00','280','retail','0','2023-12-18 20:47:09','','','','0','Cash',0.00,'280','','','4','','1','2023-12-18 17:47:11','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-136.00','-137','Inclusive','branch','Inventory','','','','',''),('417029217661029144',5101,'41702921765','20','1.00','200','retail','0','2023-12-18 20:49:25','','','','0','Cash',0.00,'200','','','4','','1','2023-12-18 17:49:29','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-253.00','-254','Inclusive','branch','Inventory','','','','',''),('417029229633421300',5102,'41702922962','21','1.00','200','retail','0','2023-12-18 21:09:22','','','','0','Cash',0.00,'200','','','4','','1','2023-12-18 18:09:25','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-657.00','-658','Inclusive','branch','Inventory','','','','',''),('417029237162371322',5103,'41702923715','1','1.00','280','retail','0','2023-12-18 21:21:55','','','','0','Cash',0.00,'280','','','4','','1','2023-12-18 18:22:04','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-407.00','-408','Inclusive','branch','Inventory','','','','',''),('417029237210202032',5104,'41702923715','23','1.00','250','retail','0','2023-12-18 21:22:01','','','','0','Cash',0.00,'250','','','4','','1','2023-12-18 18:22:04','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-211.00','-212','Inclusive','branch','Inventory','','','','',''),('417029249234029444',5105,'41702924922','38','1.00','350','retail','0','2023-12-18 21:42:02','','','','0','Cash',0.00,'350','','','4','','1','2023-12-18 18:42:06','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-625.00','-626','Inclusive','branch','Inventory','','','','',''),('417029258382222032',5106,'41702925837','12','1.00','250','retail','0','2023-12-18 21:57:17','','','','0','Cash',0.00,'250','','','4','','1','2023-12-18 18:57:32','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-129.00','-130','Inclusive','branch','Inventory','','','','',''),('417029258412222032',5107,'41702925837','8','1.00','150','retail','0','2023-12-18 21:57:20','','','','0','Cash',0.00,'150','','','4','','1','2023-12-18 18:57:32','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-97.00','-98','Inclusive','branch','Inventory','','','','',''),('417029690662976322',5108,'41702969066','1','1.00','280','retail','0','2023-12-19 09:57:46','','','','0','Cash',0.00,'280','','','4','','1','2023-12-19 06:57:49','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-408.00','-409','Inclusive','branch','Inventory','','','','',''),('417029712531029144',5109,'41702971252','38','1.00','350','retail','0','2023-12-19 10:34:12','','','','0','Cash',0.00,'350','','','4','','1','2023-12-19 07:34:52','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-626.00','-627','Inclusive','branch','Inventory','','','','',''),('417029712553421300',5110,'41702971252','38','1.00','350','retail','0','2023-12-19 10:34:15','','','','0','Cash',0.00,'350','','','4','','1','2023-12-19 07:34:52','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-627.00','-628','Inclusive','branch','Inventory','','','','',''),('417029712794272432',5111,'41702971252','22','1.00','250','retail','0','2023-12-19 10:34:39','','','','0','Cash',0.00,'250','','','4','','1','2023-12-19 07:34:52','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-71.00','-72','Inclusive','branch','Inventory','','','','',''),('417029712892912327',5112,'41702971252','22','1.00','250','retail','0','2023-12-19 10:34:48','','','','0','Cash',0.00,'250','','','4','','1','2023-12-19 07:34:52','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-72.00','-73','Inclusive','branch','Inventory','','','','',''),('417029918413421300',5113,'41702991840','40','1.00','600','retail','0','2023-12-19 16:17:20','','','','0','Cash',0.00,'600','','','4','','1','2023-12-19 13:17:30','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-47.00','-48','Inclusive','branch','Inventory','','','','',''),('417029918612176322',5114,'41702991860','12','1.00','250','retail','0','2023-12-19 16:17:40','','','','0','Cash',0.00,'250','','','4','','1','2023-12-19 13:17:43','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-130.00','-131','Inclusive','branch','Inventory','','','','',''),('417029942330230032',5115,'41702994232','29','1.00','300','retail','0','2023-12-19 16:57:12','','','','0','Cash',0.00,'300','','','4','','1','2023-12-19 13:57:20','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-42.00','-43','Inclusive','branch','Inventory','','','','',''),('417029944513237224',5116,'41702994450','40','1.00','600','retail','0','2023-12-19 17:00:50','','','','0','Cash',0.00,'600','','','4','','1','2023-12-19 14:00:56','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-48.00','-49','Inclusive','branch','Inventory','','','','',''),('417030022484202432',5117,'41703002248','38','1.00','350','retail','0','2023-12-19 19:10:48','','','','0','Cash',0.00,'350','','','4','','1','2023-12-19 16:10:53','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-628.00','-629','Inclusive','branch','Inventory','','','','',''),('417030041610202033',5118,'41703004160','38','1.00','350','retail','0','2023-12-19 19:42:41','','','','0','Cash',0.00,'350','','','4','','1','2023-12-19 16:42:45','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-629.00','-630','Inclusive','branch','Inventory','','','','',''),('417030041820220032',5119,'41703004182','21','1.00','200','retail','0','2023-12-19 19:43:02','','','','0','Cash',0.00,'200','','','4','','1','2023-12-19 16:43:06','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-658.00','-659','Inclusive','branch','Inventory','','','','',''),('417030573180280032',5120,'41703057317','21','1.00','200','retail','0','2023-12-20 10:28:37','','','','0','Cash',0.00,'200','','','4','','1','2023-12-20 07:28:41','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-659.00','-660','Inclusive','branch','Inventory','','','','',''),('417030599110202033',5121,'41703059911','42','1.00','600','retail','0','2023-12-20 11:11:51','','','','0','Cash',0.00,'600','','','4','','1','2023-12-20 08:12:23','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','15.00','14','Inclusive','branch','Inventory','','','','',''),('417030599250250032',5122,'41703059911','47','1.00','200','retail','0','2023-12-20 11:12:05','','','','0','Cash',0.00,'200','','','4','','1','2023-12-20 08:12:23','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-6.00','-7','Inclusive','branch','Inventory','','','','',''),('417030599314252432',5123,'41703059911','46','1.00','200','retail','0','2023-12-20 11:12:10','','','','0','Cash',0.00,'200','','','4','','1','2023-12-20 08:12:23','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-20.00','-21','Inclusive','branch','Inventory','','','','',''),('417030779917020744',5124,'41703077991','11','1.00','280','retail','0','2023-12-20 16:13:11','','','','0','Cash',0.00,'280','','','4','','1','2023-12-20 13:13:16','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-137.00','-138','Inclusive','branch','Inventory','','','','',''),('417030781058020844',5125,'41703078105','38','1.00','350','retail','0','2023-12-20 16:15:05','','','','0','Cash',0.00,'350','','','4','','1','2023-12-20 13:15:17','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-630.00','-631','Inclusive','branch','Inventory','','','','',''),('417030781092222032',5126,'41703078105','38','1.00','350','retail','0','2023-12-20 16:15:09','','','','0','Cash',0.00,'350','','','4','','1','2023-12-20 13:15:17','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-631.00','-632','Inclusive','branch','Inventory','','','','',''),('417030781134272432',5127,'41703078105','38','1.00','350','retail','0','2023-12-20 16:15:12','','','','0','Cash',0.00,'350','','','4','','1','2023-12-20 13:15:17','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-632.00','-633','Inclusive','branch','Inventory','','','','',''),('417030799749020944',5128,'41703079973','20','1.00','200','retail','0','2023-12-20 16:46:13','','','','0','Cash',0.00,'200','','','4','','1','2023-12-20 13:46:17','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-254.00','-255','Inclusive','branch','Inventory','','','','',''),('417030829870270032',5129,'41703082986','21','1.00','200','retail','0','2023-12-20 17:36:26','','','','0','Cash',0.00,'200','','','4','','1','2023-12-20 14:36:29','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-660.00','-661','Inclusive','branch','Inventory','','','','',''),('417030830470270032',5130,'41703083046','2','1.00','250','retail','0','2023-12-20 17:37:26','','','','0','Cash',0.00,'250','','','4','','1','2023-12-20 14:37:30','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-108.00','-109','Inclusive','branch','Inventory','','','','',''),('417030835904282432',5131,'41703083589','23','1.00','250','retail','0','2023-12-20 17:46:30','','','','0','Cash',0.00,'250','','','4','','1','2023-12-20 14:46:34','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-212.00','-213','Inclusive','branch','Inventory','','','','',''),('417030853410202033',5132,'41703085340','38','1.00','350','retail','0','2023-12-20 18:15:40','','','','0','Cash',0.00,'350','','','4','','1','2023-12-20 15:15:43','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-633.00','-634','Inclusive','branch','Inventory','','','','',''),('417030934362222032',5133,'41703093436','21','1.00','200','retail','0','2023-12-20 20:30:36','','','','0','Cash',0.00,'200','','','4','','1','2023-12-20 17:30:55','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-661.00','-662','Inclusive','branch','Inventory','','','','',''),('417030934524292432',5134,'41703093436','38','1.00','350','retail','0','2023-12-20 20:30:51','','','','0','Cash',0.00,'350','','','4','','1','2023-12-20 17:30:55','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-634.00','-635','Inclusive','branch','Inventory','','','','',''),('417031520352222032',5135,'41703152034','21','1.00','200','retail','0','2023-12-21 12:47:14','','','','0','Cash',0.00,'200','','','4','','1','2023-12-21 09:47:22','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-662.00','-663','Inclusive','branch','Inventory','','','','',''),('417031520393421300',5136,'41703152034','21','1.00','200','retail','0','2023-12-21 12:47:18','','','','0','Cash',0.00,'200','','','4','','1','2023-12-21 09:47:22','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-663.00','-664','Inclusive','branch','Inventory','','','','',''),('417031715694272432',5137,'41703171569','38','1.00','350','retail','0','2023-12-21 18:12:49','','','','0','Cash',0.00,'350','','','4','','1','2023-12-21 15:12:55','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-635.00','-636','Inclusive','branch','Inventory','','','','',''),('417031790844272432',5138,'41703179084','38','1.00','350','retail','0','2023-12-21 20:18:04','','','','0','Cash',0.00,'350','','','4','','1','2023-12-21 17:18:07','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-636.00','-637','Inclusive','branch','Inventory','','','','',''),('417031793732977332',5139,'41703179372','21','1.00','200','retail','0','2023-12-21 20:22:52','','','','0','Cash',0.00,'200','','','4','','1','2023-12-21 17:48:23','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-664.00','-665','Inclusive','branch','Inventory','','','','',''),('417031797183022317',5140,'41703179372','8','1.00','150','retail','0','2023-12-21 20:28:38','','','','0','Cash',0.00,'150','','','4','','1','2023-12-21 17:48:23','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-98.00','-99','Inclusive','branch','Inventory','','','','',''),('417031814280202033',5141,'41703181428','38','1.00','350','retail','0','2023-12-21 20:57:08','','','','0','Cash',0.00,'350','','','4','','1','2023-12-21 17:57:11','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-637.00','-638','Inclusive','branch','Inventory','','','','',''),('417032315872222032',5142,'41703231587','11','1.00','280','retail','0','2023-12-22 10:53:07','','','','0','Cash',0.00,'280','','','4','','1','2023-12-22 07:53:22','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-138.00','-139','Inclusive','branch','Inventory','','','','',''),('417032315962222032',5143,'41703231587','11','1.00','280','retail','0','2023-12-22 10:53:15','','','','0','Cash',0.00,'280','','','4','','1','2023-12-22 07:53:22','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-139.00','-140','Inclusive','branch','Inventory','','','','',''),('417032316231022144',5144,'41703231623','5','1.00','300','retail','0','2023-12-22 10:53:43','','','','0','Cash',0.00,'300','','','4','','1','2023-12-22 07:53:50','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-140.00','-141','Inclusive','branch','Inventory','','','','',''),('417032324490290032',5145,'41703232449','22','1.00','250','retail','0','2023-12-22 11:07:29','','','','0','Cash',0.00,'250','','','4','','1','2023-12-22 08:07:33','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-73.00','-74','Inclusive','branch','Inventory','','','','',''),('417032562683421300',5146,'41703256268','3','1.00','200','retail','0','2023-12-22 17:44:28','','','','0','Cash',0.00,'200','','','4','','1','2023-12-22 14:44:32','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-176.00','-177','Inclusive','branch','Inventory','','','','',''),('417032565053421300',5147,'41703256504','21','1.00','200','retail','0','2023-12-22 17:48:24','','','','0','Cash',0.00,'200','','','4','','1','2023-12-22 14:48:27','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-665.00','-666','Inclusive','branch','Inventory','','','','',''),('417033188442874332',5148,'41703318843','5','1.00','300','retail','0','2023-12-23 11:07:23','','','','0','Cash',0.00,'300','','','4','','1','2023-12-23 08:07:35','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-141.00','-142','Inclusive','branch','Inventory','','','','',''),('417033188522222032',5149,'41703318843','21','1.00','200','retail','0','2023-12-23 11:07:31','','','','0','Cash',0.00,'200','','','4','','1','2023-12-23 08:07:35','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-666.00','-667','Inclusive','branch','Inventory','','','','',''),('417033188718023844',5150,'41703318870','21','1.00','200','retail','0','2023-12-23 11:07:50','','','','0','Cash',0.00,'200','','','4','','1','2023-12-23 08:07:54','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-667.00','-668','Inclusive','branch','Inventory','','','','',''),('417033202790023044',5151,'41703320278','9','1.00','200','retail','0','2023-12-23 11:31:18','','','','0','Cash',0.00,'200','','','4','','1','2023-12-23 08:31:24','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-15.00','-16','Inclusive','branch','Inventory','','','','',''),('417033355074232432',5152,'41703335506','7','1.00','200','retail','0','2023-12-23 15:45:06','','','','0','Cash',0.00,'200','','','4','','1','2023-12-23 12:45:10','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-268.00','-269','Inclusive','branch','Inventory','','','','',''),('417033393673421300',5153,'41703339366','28','1.00','300','retail','0','2023-12-23 16:49:26','','','','0','Cash',0.00,'300','','','4','','1','2023-12-23 13:50:07','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-7.00','-8','Inclusive','branch','Inventory','','','','',''),('417033393750202033',5154,'41703339366','30','1.00','330','retail','0','2023-12-23 16:49:34','','','','0','Cash',0.00,'330','','','4','','1','2023-12-23 13:50:07','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-18.00','-19','Inclusive','branch','Inventory','','','','',''),('417033393953022393',5155,'41703339366','26','1.00','100','retail','0','2023-12-23 16:49:54','','','','0','Cash',0.00,'100','','','4','','1','2023-12-23 13:50:07','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-50.00','-51','Inclusive','branch','Inventory','','','','',''),('417033393999023944',5156,'41703339366','26','1.00','100','retail','0','2023-12-23 16:49:58','','','','0','Cash',0.00,'100','','','4','','1','2023-12-23 13:50:07','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-51.00','-52','Inclusive','branch','Inventory','','','','',''),('417033425063022305',5157,'41703342505','38','1.00','350','retail','0','2023-12-23 17:41:45','','','','0','Cash',0.00,'350','','','4','','1','2023-12-23 14:41:49','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-638.00','-639','Inclusive','branch','Inventory','','','','',''),('417033573252222032',5158,'41703357324','38','1.00','350','retail','0','2023-12-23 21:48:44','','','','0','Cash',0.00,'350','','','4','','1','2023-12-23 18:48:52','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-639.00','-640','Inclusive','branch','Inventory','','','','',''),('417034262212672332',5159,'41703426220','7','1.00','200','retail','0','2023-12-24 16:57:00','','','','0','Cash',0.00,'200','','','4','','1','2023-12-24 13:57:09','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-269.00','-270','Inclusive','branch','Inventory','','','','',''),('417034262383421300',5160,'41703426238','1','1.00','280','retail','0','2023-12-24 16:57:18','','','','0','Cash',0.00,'280','','','4','','1','2023-12-24 13:57:27','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-409.00','-410','Inclusive','branch','Inventory','','','','',''),('417034344820220032',5161,'41703434481','21','1.00','200','retail','0','2023-12-24 19:14:42','','','','0','Cash',0.00,'200','','','4','','1','2023-12-24 16:14:48','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-669.00','-670','Inclusive','branch','Inventory','','','','',''),('417034358223022328',5162,'41703435821','20','1.00','200','retail','0','2023-12-24 19:37:01','','','','0','Cash',0.00,'200','','','4','','1','2023-12-24 16:37:06','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-255.00','-256','Inclusive','branch','Inventory','','','','',''),('417034960360260032',5163,'41703496035','21','1.00','200','retail','0','2023-12-25 12:20:36','','','','0','Cash',0.00,'200','','','4','','1','2023-12-25 09:20:39','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-669.00','-670','Inclusive','branch','Inventory','','','','',''),('417036045242472332',5164,'41703604523','3','1.00','200','retail','0','2023-12-26 18:28:43','','','','0','Cash',0.00,'200','','','4','','1','2023-12-26 15:28:49','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-177.00','-178','Inclusive','branch','Inventory','','','','',''),('417036061253421300',5165,'41703606124','8','1.00','150','retail','0','2023-12-26 18:55:24','','','','0','Cash',0.00,'150','','','4','','1','2023-12-26 15:55:33','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-99.00','-100','Inclusive','branch','Inventory','','','','',''),('417036061553022351',5166,'41703606154','46','1.00','200','retail','0','2023-12-26 18:55:54','','','','0','Cash',0.00,'200','','','4','','1','2023-12-26 15:56:27','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-21.00','-22','Inclusive','branch','Inventory','','','','',''),('417036061604202432',5167,'41703606154','46','1.00','200','retail','0','2023-12-26 18:55:59','','','','0','Cash',0.00,'200','','','4','','1','2023-12-26 15:56:27','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-22.00','-23','Inclusive','branch','Inventory','','','','',''),('417036061642676332',5168,'41703606154','46','1.00','200','retail','0','2023-12-26 18:56:03','','','','0','Cash',0.00,'200','','','4','','1','2023-12-26 15:56:27','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-23.00','-24','Inclusive','branch','Inventory','','','','',''),('417036061682676332',5169,'41703606154','46','1.00','200','retail','0','2023-12-26 18:56:08','','','','0','Cash',0.00,'200','','','4','','1','2023-12-26 15:56:27','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-24.00','-25','Inclusive','branch','Inventory','','','','',''),('417036061792222032',5170,'41703606154','38','1.00','350','retail','0','2023-12-26 18:56:19','','','','0','Cash',0.00,'350','','','4','','1','2023-12-26 15:56:27','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-640.00','-641','Inclusive','branch','Inventory','','','','',''),('417036061834202432',5171,'41703606154','38','1.00','350','retail','0','2023-12-26 18:56:22','','','','0','Cash',0.00,'350','','','4','','1','2023-12-26 15:56:27','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-641.00','-642','Inclusive','branch','Inventory','','','','',''),('417036096644202432',5172,'41703609663','20','1.00','200','retail','0','2023-12-26 19:54:23','','','','0','Cash',0.00,'200','','','4','','1','2023-12-26 16:54:29','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-256.00','-257','Inclusive','branch','Inventory','','','','',''),('417036096944202432',5173,'41703609693','38','1.00','350','retail','0','2023-12-26 19:54:53','','','','0','Cash',0.00,'350','','','4','','1','2023-12-26 16:54:57','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-642.00','-643','Inclusive','branch','Inventory','','','','',''),('417036146854026444',5174,'41703614684','23','1.00','250','retail','0','2023-12-26 21:18:04','','','','0','Cash',0.00,'250','','','4','','1','2023-12-26 18:18:08','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-213.00','-214','Inclusive','branch','Inventory','','','','',''),('417036665893421300',5175,'41703666589','40','1.00','600','retail','0','2023-12-27 11:43:09','','','','0','Cash',0.00,'600','','','4','','1','2023-12-27 08:43:14','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-49.00','-50','Inclusive','branch','Inventory','','','','',''),('417036666702677332',5176,'41703666669','20','1.00','200','retail','0','2023-12-27 11:44:29','','','','0','Cash',0.00,'200','','','4','','1','2023-12-27 08:44:46','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-257.00','-258','Inclusive','branch','Inventory','','','','',''),('417036666800200032',5177,'41703666669','46','1.00','200','retail','0','2023-12-27 11:44:39','','','','0','Cash',0.00,'200','','','4','','1','2023-12-27 08:44:46','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-25.00','-26','Inclusive','branch','Inventory','','','','',''),('417036669913022399',5178,'41703666990','20','1.00','200','retail','0','2023-12-27 11:49:50','','','','0','Cash',0.00,'200','','','4','','1','2023-12-27 08:49:54','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-258.00','-259','Inclusive','branch','Inventory','','','','',''),('417036670100200032',5179,'41703667009','21','1.00','200','retail','0','2023-12-27 11:50:09','','','','0','Cash',0.00,'200','','','4','','1','2023-12-27 08:50:15','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-670.00','-671','Inclusive','branch','Inventory','','','','',''),('417036781748026844',5180,'41703678173','59','1.00','150','retail','0','2023-12-27 14:56:13','','','','100','Cash',0.00,'150','','','4','','1','2023-12-27 11:56:18','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','39.00','38','Inclusive','branch','Service','1110','4000','5500','',''),('417036918642176332',5181,'41703691863','38','1.00','350','retail','0','2023-12-27 18:44:23','','','','0','Cash',0.00,'350','','','4','','1','2023-12-27 15:44:27','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-643.00','-644','Inclusive','branch','Inventory','','','','',''),('417036924072712327',5182,'41703692406','21','1.00','200','retail','0','2023-12-27 18:53:26','','','','0','Cash',0.00,'200','','','4','','1','2023-12-27 15:53:38','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-671.00','-672','Inclusive','branch','Inventory','','','','',''),('417036924110202033',5183,'41703692406','21','1.00','200','retail','0','2023-12-27 18:53:31','','','','0','Cash',0.00,'200','','','4','','1','2023-12-27 15:53:38','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-672.00','-673','Inclusive','branch','Inventory','','','','',''),('417036935133022315',5184,'41703693512','52','1.00','150','retail','0','2023-12-27 19:11:52','','','','200','Cash',0.00,'150','','','4','','1','2023-12-27 16:11:58','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('417036942220202033',5185,'41703694221','21','1.00','200','retail','0','2023-12-27 19:23:41','','','','0','Cash',0.00,'200','','','4','','1','2023-12-27 16:23:45','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-673.00','-674','Inclusive','branch','Inventory','','','','',''),('417036963593421300',5186,'41703696358','23','1.00','250','retail','0','2023-12-27 19:59:18','','','','0','Cash',0.00,'250','','','4','','1','2023-12-27 16:59:25','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-214.00','-215','Inclusive','branch','Inventory','','','','',''),('417036984703421300',5187,'41703698470','52','1.00','150','retail','0','2023-12-27 20:34:30','','','','200','Cash',0.00,'150','','','4','','1','2023-12-27 17:34:41','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('417036984774292432',5188,'41703698470','38','1.00','350','retail','0','2023-12-27 20:34:37','','','','0','Cash',0.00,'350','','','4','','1','2023-12-27 17:34:41','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-644.00','-645','Inclusive','branch','Inventory','','','','',''),('417037017820202033',5189,'41703701782','38','1.00','350','retail','0','2023-12-27 21:29:42','','','','0','Cash',0.00,'350','','','4','','1','2023-12-27 18:29:46','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-645.00','-646','Inclusive','branch','Inventory','','','','',''),('417037036383421300',5190,'41703703637','38','1.00','350','retail','0','2023-12-27 22:00:37','','','','0','Cash',0.00,'350','','','4','','1','2023-12-27 19:00:41','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-646.00','-647','Inclusive','branch','Inventory','','','','',''),('417037548254252432',5191,'41703754824','23','1.00','250','retail','0','2023-12-28 12:13:44','','','','0','Cash',0.00,'250','','','4','','1','2023-12-28 09:13:50','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-215.00','-216','Inclusive','branch','Inventory','','','','',''),('417037651280202033',5192,'41703765127','1','1.00','280','retail','0','2023-12-28 15:05:27','','','','0','Cash',0.00,'280','','','4','','1','2023-12-28 12:05:33','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-410.00','-411','Inclusive','branch','Inventory','','','','',''),('417037696162222032',5193,'41703769615','21','1.00','200','retail','0','2023-12-28 16:20:15','','','','0','Cash',0.00,'200','','','4','','1','2023-12-28 13:20:19','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-674.00','-675','Inclusive','branch','Inventory','','','','',''),('417037718413421300',5194,'41703771841','7','1.00','200','retail','0','2023-12-28 16:57:21','','','','0','Cash',0.00,'200','','','4','','1','2023-12-28 13:57:30','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-270.00','-271','Inclusive','branch','Inventory','','','','',''),('417037732502375332',5195,'41703773249','21','1.00','200','retail','0','2023-12-28 17:20:49','','','','0','Cash',0.00,'200','','','4','','1','2023-12-28 14:20:54','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-675.00','-676','Inclusive','branch','Inventory','','','','',''),('417038335166403301',5196,'41703833515','21','1.00','200','retail','0','2023-12-29 10:05:15','','','','0','Cash',0.00,'200','','','4','','1','2023-12-29 07:05:28','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-676.00','-677','Inclusive','branch','Inventory','','','','',''),('417038335233028344',5197,'41703833515','46','1.00','200','retail','0','2023-12-29 10:05:22','','','','0','Cash',0.00,'200','','','4','','1','2023-12-29 07:05:28','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-26.00','-27','Inclusive','branch','Inventory','','','','',''),('417038335252222032',5198,'41703833515','46','1.00','200','retail','0','2023-12-29 10:05:25','','','','0','Cash',0.00,'200','','','4','','1','2023-12-29 07:05:28','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-27.00','-28','Inclusive','branch','Inventory','','','','',''),('417038518381028144',5199,'41703851837','21','1.00','200','retail','0','2023-12-29 15:10:37','','','','0','Cash',0.00,'200','','','4','','1','2023-12-29 12:10:43','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-677.00','-678','Inclusive','branch','Inventory','','','','',''),('417038574733421300',5200,'41703857473','38','1.00','350','retail','0','2023-12-29 16:44:33','','','','0','Cash',0.00,'350','','','4','','1','2023-12-29 13:44:49','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-647.00','-648','Inclusive','branch','Inventory','','','','',''),('417039227403421300',5201,'41703922740','21','1.00','200','retail','0','2023-12-30 10:52:20','','','','0','Cash',0.00,'200','','','4','','1','2023-12-30 07:52:33','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-678.00','-679','Inclusive','branch','Inventory','','','','',''),('417039245932222032',5202,'41703924592','21','1.00','200','retail','0','2023-12-30 11:23:12','','','','0','Cash',0.00,'200','','','4','','1','2023-12-30 08:23:15','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-679.00','-680','Inclusive','branch','Inventory','','','','',''),('417039357513421300',5203,'41703935751','38','1.00','350','retail','0','2023-12-30 14:29:11','','','','0','Cash',0.00,'350','','','4','','1','2023-12-30 11:29:15','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-648.00','-649','Inclusive','branch','Inventory','','','','',''),('417039421072270332',5204,'41703942106','8','1.00','150','retail','0','2023-12-30 16:15:06','','','','0','Cash',0.00,'150','','','4','','1','2023-12-30 13:15:21','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-100.00','-101','Inclusive','branch','Inventory','','','','',''),('417039460193022310',5205,'41703946018','42','1.00','600','retail','0','2023-12-30 17:20:18','','','','0','Cash',0.00,'600','','','4','','1','2023-12-30 14:20:24','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','14.00','13','Inclusive','branch','Inventory','','','','',''),('417039503144252432',5206,'41703950314','21','1.00','200','retail','0','2023-12-30 18:31:54','','','','0','Cash',0.00,'200','','','4','','1','2023-12-30 15:31:59','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-680.00','-681','Inclusive','branch','Inventory','','','','',''),('417039518281029144',5207,'41703951827','1','1.00','280','retail','0','2023-12-30 18:57:07','','','','0','Cash',0.00,'280','','','4','','1','2023-12-30 15:57:11','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-411.00','-412','Inclusive','branch','Inventory','','','','',''),('417039559142222032',5208,'41703955913','1','1.00','280','retail','0','2023-12-30 20:05:13','','','','0','Cash',0.00,'280','','','4','','1','2023-12-30 17:05:22','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-412.00','-413','Inclusive','branch','Inventory','','','','',''),('417039559182323222',5209,'41703955913','1','1.00','280','retail','0','2023-12-30 20:05:17','','','','0','Cash',0.00,'280','','','4','','1','2023-12-30 17:05:22','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-413.00','-414','Inclusive','branch','Inventory','','','','',''),('417040081102222032',5210,'41704008109','1','1.00','280','retail','0','2023-12-31 10:35:09','','','','0','Cash',0.00,'280','','','4','','1','2023-12-31 07:35:28','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-414.00','-415','Inclusive','branch','Inventory','','','','',''),('417040081133022311',5211,'41704008109','1','1.00','280','retail','0','2023-12-31 10:35:12','','','','0','Cash',0.00,'280','','','4','','1','2023-12-31 07:35:28','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-415.00','-416','Inclusive','branch','Inventory','','','','',''),('417040081213421300',5212,'41704008109','46','1.00','200','retail','0','2023-12-31 10:35:21','','','','0','Cash',0.00,'200','','','4','','1','2023-12-31 07:35:28','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-28.00','-29','Inclusive','branch','Inventory','','','','',''),('417040081243421300',5213,'41704008109','46','1.00','200','retail','0','2023-12-31 10:35:23','','','','0','Cash',0.00,'200','','','4','','1','2023-12-31 07:35:28','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-29.00','-30','Inclusive','branch','Inventory','','','','',''),('417040111043421300',5214,'41704011103','23','1.00','250','retail','0','2023-12-31 11:25:03','','','','0','Cash',0.00,'250','','','4','','1','2023-12-31 08:26:07','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-216.00','-217','Inclusive','branch','Inventory','','','','',''),('417040111102171342',5215,'41704011103','46','1.00','200','retail','0','2023-12-31 11:25:09','','','','0','Cash',0.00,'200','','','4','','1','2023-12-31 08:26:07','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-30.00','-31','Inclusive','branch','Inventory','','','','',''),('417040236303421300',5216,'41704023630','4','1.00','150','retail','0','2023-12-31 14:53:50','','','','0','Cash',0.00,'150','','','4','','1','2023-12-31 11:53:55','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-66.00','-67','Inclusive','branch','Inventory','','','','',''),('417040243663022363',5217,'41704024365','38','1.00','350','retail','0','2023-12-31 15:06:05','','','','0','Cash',0.00,'350','','','4','','1','2023-12-31 12:06:10','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-649.00','-650','Inclusive','branch','Inventory','','','','',''),('417040254211322130',5218,'41704025420','38','1.00','350','retail','0','2023-12-31 15:23:40','','','','0','Cash',0.00,'350','','','4','','1','2023-12-31 12:23:46','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-650.00','-651','Inclusive','branch','Inventory','','','','',''),('417040318023421300',5219,'41704031802','1','1.00','280','retail','0','2023-12-31 17:10:02','','','','0','Cash',0.00,'280','','','4','','1','2023-12-31 14:10:06','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-416.00','-417','Inclusive','branch','Inventory','','','','',''),('417041078024202432',5220,'41704107801','38','1.00','350','retail','0','2024-01-01 14:16:41','','','','0','Cash',0.00,'350','','','4','','1','2024-01-01 11:16:46','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-651.00','-652','Inclusive','branch','Inventory','','','','',''),('417041078033421300',5221,'41704107801','38','1.00','350','retail','0','2024-01-01 14:16:42','','','','0','Cash',0.00,'350','','','4','','1','2024-01-01 11:16:46','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-652.00','-653','Inclusive','branch','Inventory','','','','',''),('417041123880202034',5222,'41704112387','23','1.00','250','retail','0','2024-01-01 15:33:07','','','','0','Cash',0.00,'250','','','4','','1','2024-01-01 12:33:12','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-217.00','-218','Inclusive','branch','Inventory','','','','',''),('417041152450250032',5223,'41704115245','21','1.00','200','retail','0','2024-01-01 16:20:45','','','','0','Cash',0.00,'200','','','4','','1','2024-01-01 13:20:47','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-681.00','-682','Inclusive','branch','Inventory','','','','',''),('417041175813421300',5224,'41704117581','23','1.00','250','retail','0','2024-01-01 16:59:41','','','','0','Cash',0.00,'250','','','4','','1','2024-01-01 13:59:43','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-218.00','-219','Inclusive','branch','Inventory','','','','',''),('417041274144222432',5225,'41704127413','1','1.00','280','retail','0','2024-01-01 19:43:33','','','','0','Cash',0.00,'280','','','4','','1','2024-01-01 16:43:35','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-417.00','-418','Inclusive','branch','Inventory','','','','',''),('417041274277021744',5226,'41704127427','2','1.00','250','retail','0','2024-01-01 19:43:47','','','','0','Cash',0.00,'250','','','4','','1','2024-01-01 16:43:49','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-109.00','-110','Inclusive','branch','Inventory','','','','',''),('417041274360260032',5227,'41704127435','38','1.00','350','retail','0','2024-01-01 19:43:55','','','','0','Cash',0.00,'350','','','4','','1','2024-01-01 16:43:58','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-653.00','-654','Inclusive','branch','Inventory','','','','',''),('417041311311003103',5228,'41704131130','20','1.00','200','retail','0','2024-01-01 20:45:30','','','','0','Cash',0.00,'200','','','4','','1','2024-01-01 17:45:59','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-259.00','-260','Inclusive','branch','Inventory','','','','',''),('417041311370202034',5229,'41704131130','11','1.00','280','retail','0','2024-01-01 20:45:37','','','','0','Cash',0.00,'280','','','4','','1','2024-01-01 17:45:59','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-140.00','-141','Inclusive','branch','Inventory','','','','',''),('417041311483022341',5230,'41704131130','26','1.00','100','retail','0','2024-01-01 20:45:48','','','','0','Cash',0.00,'100','','','4','','1','2024-01-01 17:45:59','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-52.00','-53','Inclusive','branch','Inventory','','','','',''),('417041311522175342',5231,'41704131130','26','1.00','100','retail','0','2024-01-01 20:45:51','','','','0','Cash',0.00,'100','','','4','','1','2024-01-01 17:45:59','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-53.00','-54','Inclusive','branch','Inventory','','','','',''),('417041311550250032',5232,'41704131130','26','1.00','100','retail','0','2024-01-01 20:45:54','','','','0','Cash',0.00,'100','','','4','','1','2024-01-01 17:45:59','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-54.00','-55','Inclusive','branch','Inventory','','','','',''),('417041828263022328',5233,'41704182826','21','1.00','200','retail','0','2024-01-02 11:07:06','','','','0','Cash',0.00,'200','','','4','','1','2024-01-02 08:07:09','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-682.00','-683','Inclusive','branch','Inventory','','','','',''),('417041828433022348',5234,'41704182843','23','1.00','250','retail','0','2024-01-02 11:07:23','','','','0','Cash',0.00,'250','','','4','','1','2024-01-02 08:07:26','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-219.00','-220','Inclusive','branch','Inventory','','','','',''),('417041942852222032',5235,'41704194284','38','1.00','350','retail','0','2024-01-02 14:18:04','','','','0','Cash',0.00,'350','','','4','','1','2024-01-02 11:18:12','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-654.00','-655','Inclusive','branch','Inventory','','','','',''),('417041942882478342',5236,'41704194284','38','1.00','350','retail','0','2024-01-02 14:18:08','','','','0','Cash',0.00,'350','','','4','','1','2024-01-02 11:18:12','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-655.00','-656','Inclusive','branch','Inventory','','','','',''),('417041991672222032',5237,'41704199167','5','1.00','300','retail','0','2024-01-02 15:39:27','','','','0','Cash',0.00,'300','','','4','','1','2024-01-02 12:39:34','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-142.00','-143','Inclusive','branch','Inventory','','','','',''),('617042109330202034',5238,'61704210932','52','1.00','150','retail','0','2024-01-02 18:55:32','','','','200','Cash',0.00,'150','','','6','','1','2024-01-02 15:55:37','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500','',''),('617042109640202034',5239,'61704210963','23','1.00','250','retail','0','2024-01-02 18:56:03','','','','0','Cash',0.00,'250','','','6','','1','2024-01-02 15:56:14','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-220.00','-221','Inclusive','branch','Inventory','','','','',''),('617042109683421300',5240,'61704210963','23','1.00','250','retail','0','2024-01-02 18:56:07','','','','0','Cash',0.00,'250','','','6','','1','2024-01-02 15:56:14','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-221.00','-222','Inclusive','branch','Inventory','','','','',''),('617042109703421300',5241,'61704210963','23','1.00','250','retail','0','2024-01-02 18:56:10','','','','0','Cash',0.00,'250','','','6','','1','2024-01-02 15:56:14','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-222.00','-223','Inclusive','branch','Inventory','','','','',''),('617042118621022164',5242,'61704211862','47','1.00','200','retail','0','2024-01-02 19:11:02','','','','0','Cash',0.00,'200','','','6','','1','2024-01-02 16:11:19','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-7.00','-8','Inclusive','branch','Inventory','','','','',''),('617042187212872342',5243,'61704218720','38','1.00','350','retail','0','2024-01-02 21:05:20','','','','0','Cash',0.00,'350','','','6','','1','2024-01-02 18:05:31','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-656.00','-657','Inclusive','branch','Inventory','','','','',''),('617042812091022164',5244,'61704281209','1','1.00','280','retail','0','2024-01-03 14:26:49','','','','0','Cash',0.00,'280','','','6','','1','2024-01-03 11:26:56','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-418.00','-419','Inclusive','branch','Inventory','','','','',''),('617042920132271342',5245,'61704292012','9','1.00','200','retail','0','2024-01-03 17:26:52','','','','0','Cash',0.00,'200','','','6','','1','2024-01-03 14:26:57','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-16.00','-17','Inclusive','branch','Inventory','','','','',''),('617042921993421300',5246,'61704292198','27','1.00','100','retail','0','2024-01-03 17:29:58','','','','0','Cash',0.00,'100','','','6','','1','2024-01-03 14:30:03','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-4.00','-5','Inclusive','branch','Inventory','','','','',''),('617042966502675342',5247,'61704296650','17','1.00','200','retail','0','2024-01-03 18:44:10','','','','0','Cash',0.00,'200','','','6','','1','2024-01-03 15:44:14','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-90.00','-91','Inclusive','branch','Inventory','','','','',''),('617042996612976342',5248,'61704299660','23','1.00','250','retail','0','2024-01-03 19:34:20','','','','0','Cash',0.00,'250','','','6','','1','2024-01-03 16:34:40','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-223.00','-224','Inclusive','branch','Inventory','','','','',''),('617042996642976342',5249,'61704299660','23','1.00','250','retail','0','2024-01-03 19:34:24','','','','0','Cash',0.00,'250','','','6','','1','2024-01-03 16:34:40','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-224.00','-225','Inclusive','branch','Inventory','','','','',''),('617042996743022376',5250,'61704299660','20','1.00','200','retail','0','2024-01-03 19:34:34','','','','0','Cash',0.00,'200','','','6','','1','2024-01-03 16:34:40','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-260.00','-261','Inclusive','branch','Inventory','','','','',''),('617043058924202432',5251,'61704305891','7','1.00','200','retail','0','2024-01-03 21:18:11','','','','0','Cash',0.00,'200','','','6','','1','2024-01-03 18:18:15','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-271.00','-272','Inclusive','branch','Inventory','','','','',''),('617043572077023764',5252,'61704357207','1','1.00','280','retail','0','2024-01-04 11:33:27','','','','0','Cash',0.00,'280','','','6','','1','2024-01-04 08:33:31','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-419.00','-420','Inclusive','branch','Inventory','','','','',''),('617043593083022303',5253,'61704359307','1','1.00','280','retail','0','2024-01-04 12:08:27','','','','0','Cash',0.00,'280','','','6','','1','2024-01-04 09:08:31','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-420.00','-421','Inclusive','branch','Inventory','','','','',''),('6170437192102100323333',5254,'61704371921','21','1.00','200','retail','0','2024-01-04 15:38:41','','','','0','Cash',0.00,'200','','','6','16.00','1','2024-01-04 12:38:45','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-683.00','-684','Inclusive','branch','Inventory','','','','',''),('4170437491502500323333',5255,'41704374914','21','1.00','200','retail','0','2024-01-04 16:28:34','','','','0','Cash',0.00,'200','','','4','16.00','1','2024-01-04 13:28:39','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-684.00','-685','Inclusive','branch','Inventory','','','','',''),('4170437715802800323333',5256,'41704377157','54','1.00','350','retail','0','2024-01-04 17:05:57','','','','200','Cash',0.00,'350','','','4','0.00','1','2024-01-04 14:06:10','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','34.00','33','Inclusive','branch','Service','1110','4000','5500','',''),('4170437979002000323333',5257,'41704379789','7','1.00','200','retail','0','2024-01-04 17:49:49','','','','0','Cash',0.00,'200','','','4','16.00','1','2024-01-04 14:49:54','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-272.00','-273','Inclusive','branch','Inventory','','','','',''),('4170438466302300323333',5258,'41704384662','21','1.00','200','retail','0','2024-01-04 19:11:02','','','','0','Cash',0.00,'200','','','4','16.00','1','2024-01-04 16:11:11','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-685.00','-686','Inclusive','branch','Inventory','','','','',''),('4170438469302300323333',5259,'41704384692','21','1.00','200','retail','0','2024-01-04 19:11:32','','','','0','Cash',0.00,'200','','','4','16.00','1','2024-01-04 16:11:39','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-686.00','-687','Inclusive','branch','Inventory','','','','',''),('6170439075702700323333',5260,'61704390756','5','1.00','300','retail','0','2024-01-04 20:52:36','','','','0','Cash',0.00,'300','','','6','16.00','1','2024-01-04 17:52:42','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-143.00','-144','Inclusive','branch','Inventory','','','','',''),('6170444289002000323334',5261,'61704442890','21','1.00','200','retail','0','2024-01-05 11:21:30','','','','0','Cash',0.00,'200','','','6','16.00','1','2024-01-05 08:21:34','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-687.00','-688','Inclusive','branch','Inventory','','','','',''),('6170445222402400323334',5262,'61704452224','2','1.00','250','retail','0','2024-01-05 13:57:04','','','','0','Cash',0.00,'250','','','6','16.00','1','2024-01-05 10:57:09','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-110.00','-111','Inclusive','branch','Inventory','','','','',''),('4170446075102100323334',5263,'41704460750','21','1.00','200','retail','0','2024-01-05 16:19:10','','','','0','Cash',0.00,'200','','','4','16.00','1','2024-01-05 13:19:13','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-688.00','-689','Inclusive','branch','Inventory','','','','',''),('6170446788402400323334',5264,'61704467883','3','1.00','200','retail','0','2024-01-05 18:18:03','','','','0','Cash',0.00,'200','','','6','16.00','1','2024-01-05 15:18:10','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-178.00','-179','Inclusive','branch','Inventory','','','','',''),('6170447025702700323334',5265,'61704470256','21','1.00','200','retail','0','2024-01-05 18:57:36','','','','0','Cash',0.00,'200','','','6','16.00','1','2024-01-05 15:57:41','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-689.00','-690','Inclusive','branch','Inventory','','','','',''),('6170447035302300323334',5266,'61704470352','38','1.00','350','retail','0','2024-01-05 18:59:12','','','','0','Cash',0.00,'350','','','6','16.00','1','2024-01-05 15:59:17','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-657.00','-658','Inclusive','branch','Inventory','','','','',''),('4170447039002000323334',5267,'41704470389','38','1.00','350','retail','0','2024-01-05 18:59:49','','','','0','Cash',0.00,'350','','','4','16.00','1','2024-01-05 15:59:55','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-658.00','-659','Inclusive','branch','Inventory','','','','',''),('4170447039202200323334',5268,'41704470389','58','1.00','30','retail','0','2024-01-05 18:59:52','','','','15','Cash',0.00,'30','','','4','0.00','1','2024-01-05 15:59:55','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','55.00','54','Inclusive','branch','Service','1110','4000','5500','',''),('4170447167302300323334',5269,'41704471672','18','1.00','200','retail','0','2024-01-05 19:21:12','','','','0','Cash',0.00,'200','','','4','16.00','1','2024-01-05 16:21:24','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-26.00','-27','Inclusive','branch','Inventory','','','','',''),('4170447167702700323334',5270,'41704471672','18','1.00','200','retail','0','2024-01-05 19:21:17','','','','0','Cash',0.00,'200','','','4','16.00','1','2024-01-05 16:21:24','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-27.00','-28','Inclusive','branch','Inventory','','','','',''),('6170447464102100323334',5271,'61704474640','21','1.00','200','retail','0','2024-01-05 20:10:40','','','','0','Cash',0.00,'200','','','6','16.00','1','2024-01-05 17:10:45','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-690.00','-691','Inclusive','branch','Inventory','','','','',''),('4170447609802800323334',5272,'41704476098','21','1.00','200','retail','0','2024-01-05 20:34:58','','','','0','Cash',0.00,'200','','','4','16.00','1','2024-01-05 17:35:03','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-691.00','-692','Inclusive','branch','Inventory','','','','',''),('4170447920202200323334',5273,'41704479202','38','1.00','350','retail','0','2024-01-05 21:26:42','','','','0','Cash',0.00,'350','','','4','16.00','1','2024-01-05 18:26:45','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-659.00','-660','Inclusive','branch','Inventory','','','','',''),('4170447933602600323334',5274,'41704479335','1','1.00','280','retail','0','2024-01-05 21:28:55','','','','0','Cash',0.00,'280','','','4','16.00','1','2024-01-05 18:29:01','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-421.00','-422','Inclusive','branch','Inventory','','','','',''),('4170448137802800323334',5275,'41704481377','21','1.00','200','retail','0','2024-01-05 22:02:57','','','','0','Cash',0.00,'200','','','4','16.00','1','2024-01-05 19:04:12','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-692.00','-693','Inclusive','branch','Inventory','','','','',''),('6170453278602600323335',5276,'61704532785','38','1.00','350','retail','0','2024-01-06 12:19:45','','','','0','Cash',0.00,'350','','','6','16.00','1','2024-01-06 09:19:52','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-660.00','-661','Inclusive','branch','Inventory','','','','',''),('4170455113227330435221',5277,'41704551132','38','1.00','350','retail','0','2024-01-06 17:25:32','','','','0','Cash',0.00,'350','','','4','16.00','1','2024-01-06 14:25:38','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-661.00','-662','Inclusive','branch','Inventory','','','','',''),('4170455115510233300222',5278,'41704551154','38','1.00','350','retail','0','2024-01-06 17:25:54','','','','0','Cash',0.00,'350','','','4','16.00','1','2024-01-06 14:25:59','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-662.00','-663','Inclusive','branch','Inventory','','','','',''),('4170455162414200222117',5279,'41704551623','8','1.00','150','retail','0','2024-01-06 17:33:43','','','','0','Cash',0.00,'150','','','4','16.00','1','2024-01-06 14:33:46','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-101.00','-102','Inclusive','branch','Inventory','','','','',''),('6170455177023561332300',5280,'61704551769','38','1.00','350','retail','0','2024-01-06 17:36:10','','','','0','Cash',0.00,'350','','','6','16.00','1','2024-01-06 14:36:14','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-663.00','-664','Inclusive','branch','Inventory','','','','',''),('6170455197031332370203',5281,'61704551969','17','1.00','200','retail','0','2024-01-06 17:39:29','','','','0','Cash',0.00,'200','','','6','16.00','1','2024-01-06 14:39:33','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-91.00','-92','Inclusive','branch','Inventory','','','','',''),('6170455276723222202750',5282,'61704552767','40','1.00','600','retail','0','2024-01-06 17:52:47','','','','0','Cash',0.00,'600','','','6','16.00','1','2024-01-06 14:52:52','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-50.00','-51','Inclusive','branch','Inventory','','','','',''),('4170455281014224520310',5283,'41704552809','40','1.00','600','retail','0','2024-01-06 17:53:29','','','','0','Cash',0.00,'600','','','4','16.00','1','2024-01-06 14:53:33','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-51.00','-52','Inclusive','branch','Inventory','','','','',''),('6170455576873272382302',5285,'61704555768','40','1.00','600','retail','0','2024-01-06 18:42:48','','','','0','Cash',0.00,'600','','','6','','1','2024-01-07 09:03:04','','8','new','1','printed','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-52.00','-53','Inclusive','branch','Inventory','','','','',''),('4170462529832232222337',5286,'41704625297','21','1.00','200','retail','0','2024-01-07 14:01:37','','','','0','Cash',0.00,'200','','','4','16.00','1','2024-01-07 11:01:42','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-693.00','-694','Inclusive','branch','Inventory','','','','',''),('4170462671132047140232',5287,'41704626711','38','1.00','350','retail','0','2024-01-07 14:25:11','','','','0','Cash',0.00,'350','','','4','16.00','1','2024-01-07 11:25:14','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-664.00','-665','Inclusive','branch','Inventory','','','','',''),('6170463159726623002012',5288,'61704631596','5','1.00','300','retail','0','2024-01-07 15:46:36','','','','0','Cash',0.00,'300','','','6','16.00','1','2024-01-07 12:46:40','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Inventory','','','','',''),('6170463250800334330000',5289,'61704632507','4','1.00','150','retail','0','2024-01-07 16:01:47','','','','0','Cash',0.00,'150','','','6','16.00','1','2024-01-07 13:01:51','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Inventory','','','','',''),('6170463732422626333322',5290,'61704637323','5','1.00','300','retail','0','2024-01-07 17:22:03','','','','0','Cash',0.00,'300','','','6','16.00','1','2024-01-07 14:22:07','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','29.00','28','Inclusive','branch','Inventory','','','','',''),('6170463961802331030103',5291,'61704639617','3','1.00','200','retail','0','2024-01-07 18:00:17','','','','0','Cash',0.00,'200','','','6','16.00','1','2024-01-07 15:00:24','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Inventory','','','','',''),('4170464161400070732302',5292,'41704641613','1','1.00','280','retail','0','2024-01-07 18:33:33','','','','0','Cash',0.00,'280','','','4','16.00','1','2024-01-07 15:35:32','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Inventory','','','','',''),('4170464183534202460832',5293,'41704641834','3','1.00','200','retail','0','2024-01-07 18:37:14','','','','0','Cash',0.00,'200','','','4','16.00','1','2024-01-07 15:37:17','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','29.00','28','Inclusive','branch','Inventory','','','','',''),('4170464200106247232043',5294,'41704642000','50','1.00','800','retail','0','2024-01-07 18:40:00','','','','650','Cash',0.00,'800','','','4','0.00','1','2024-01-07 15:47:15','','1','new','1','new','pcs','','','','','','0','','','EXEMPTED',0.00,'','11.00','10','Inclusive','branch','None Inventory','1110','4000','5500','',''),('4170464252723236033220',5295,'41704642526','11','1.00','280','retail','0','2024-01-07 18:48:46','','','','0','Cash',0.00,'280','','','4','16.00','1','2024-01-07 15:48:52','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Inventory','','','','',''),('6170464473434327334000',5296,'61704644733','12','1.00','200','retail','0','2024-01-07 19:25:33','','','','0','Cash',0.00,'200','','','6','16.00','1','2024-01-07 16:25:54','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Inventory','','','','',''),('6170464474222322672300',5297,'61704644733','25','1.00','100','retail','0','2024-01-07 19:25:42','','','','0','Cash',0.00,'100','','','6','16.00','1','2024-01-07 16:25:54','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','0.00','-1','Inclusive','branch','Inventory','','','','',''),('4170464727240210232034',5298,'41704647272','23','1.00','250','retail','0','2024-01-07 20:07:52','','','','0','Cash',0.00,'250','','','4','16.00','1','2024-01-07 17:07:58','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','60.00','59','Inclusive','branch','Inventory','','','','',''),('4170470058730380240743',5299,'41704700586','22','1.00','250','retail','0','2024-01-08 10:56:26','','','','0','Cash',0.00,'250','','','4','16.00','1','2024-01-08 07:56:31','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Inventory','','','','',''),('6170489250929920020223',5300,'61704892509','38','1.00','350','retail','0','2024-01-10 16:15:09','','','','0','Cash',0.00,'350','','','6','16.00','1','2024-01-10 13:15:14','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','60.00','59','Inclusive','branch','Inventory','','','','',''),('6170489513162241303217',5301,'61704895130','1','1.00','250','retail','0','2024-01-10 16:58:50','','','','0','Cash',0.00,'250','','','6','16.00','1','2024-01-10 13:58:54','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','29.00','28','Inclusive','branch','Inventory','','','','',''),('6170489515946158362230',5302,'61704895158','5','1.00','280','retail','0','2024-01-10 16:59:18','','','','0','Cash',0.00,'280','','','6','16.00','1','2024-01-10 13:59:24','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','28.00','27','Inclusive','branch','Inventory','','','','',''),('6170489827667228610733',5303,'61704898275','1','1.00','250','retail','0','2024-01-10 17:51:15','','','','0','Cash',0.00,'250','','','6','16.00','1','2024-01-10 14:51:21','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','28.00','27','Inclusive','branch','Inventory','','','','',''),('6170490148642330240200',5304,'61704901485','11','1.00','250','retail','0','2024-01-10 18:44:46','','','','0','Cash',0.00,'250','','','6','16.00','1','2024-01-10 15:45:04','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','29.00','28','Inclusive','branch','Inventory','','','','',''),('6170490149762344364333',5305,'61704901485','7','1.00','200','retail','0','2024-01-10 18:44:57','','','','0','Cash',0.00,'200','','','6','16.00','1','2024-01-10 15:45:04','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Inventory','','','','',''),('6170490150000200023343',5306,'61704901485','7','1.00','200','retail','0','2024-01-10 18:44:59','','','','0','Cash',0.00,'200','','','6','16.00','1','2024-01-10 15:45:04','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','29.00','28','Inclusive','branch','Inventory','','','','',''),('6170490296973239036332',5307,'61704902969','1','1.00','250','retail','0','2024-01-10 19:09:29','','','','0','Cash',0.00,'250','','','6','16.00','1','2024-01-10 16:09:34','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','27.00','26','Inclusive','branch','Inventory','','','','',''),('6170490350420340302230',5308,'61704903503','7','1.00','200','retail','0','2024-01-10 19:18:23','','','','0','Cash',0.00,'200','','','6','16.00','1','2024-01-10 16:18:30','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','28.00','27','Inclusive','branch','Inventory','','','','',''),('6170491269223012201393',5309,'61704912691','1','1.00','250','retail','0','2024-01-10 21:51:31','','','','0','Cash',0.00,'250','','','6','16.00','1','2024-01-10 18:51:35','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','26.00','25','Inclusive','branch','Inventory','','','','',''); /*!40000 ALTER TABLE `sales_order` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_ordercancelled` -- DROP TABLE IF EXISTS `sales_ordercancelled`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `sales_ordercancelled` ( `myinvoice` varchar(50) DEFAULT NULL, `id` int(11) NOT NULL AUTO_INCREMENT, `invoice` varchar(100) NOT NULL, `code` varchar(100) NOT NULL, `qty` decimal(10,2) NOT NULL, `amount` varchar(100) NOT NULL, `salestype` varchar(100) NOT NULL, `discount` varchar(100) NOT NULL, `dateposted` varchar(50) NOT NULL, `address` text NOT NULL, `description` text NOT NULL, `user` varchar(50) NOT NULL, `bprice` varchar(50) NOT NULL, `type` varchar(50) NOT NULL DEFAULT 'cash', `tax` decimal(10,2) NOT NULL, `sprice` varchar(100) NOT NULL, `balance` varchar(50) NOT NULL, `customer` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `mode` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `date` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), `maincategory` varchar(50) NOT NULL, `category` varchar(50) NOT NULL, `status` varchar(30) DEFAULT 'new', `branch` varchar(30) NOT NULL, `ordersales` varchar(20) NOT NULL DEFAULT 'new', `uom` varchar(30) NOT NULL, `sales` varchar(30) NOT NULL, `updatedat` varchar(50) NOT NULL, `updatedby` varchar(10) NOT NULL, `taxindicator` varchar(10) NOT NULL DEFAULT 'yes', `serial` varchar(50) DEFAULT NULL, `tax2` varchar(20) NOT NULL, `discountype` varchar(20) NOT NULL, `discountvalue` varchar(20) NOT NULL, `vattype` varchar(20) NOT NULL, `taxable` decimal(10,2) NOT NULL, `uomqty` varchar(30) NOT NULL DEFAULT '0', `stockbefore` varchar(30) NOT NULL, `stockafter` varchar(30) NOT NULL, `taxtype` varchar(30) NOT NULL DEFAULT 'Inclusive', `stock` varchar(20) NOT NULL DEFAULT 'branch', `producttype` varchar(30) NOT NULL, `assetaccount` varchar(30) NOT NULL, `salesaccount` varchar(30) NOT NULL, `expenseaccount` varchar(30) DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `myinvoice` (`myinvoice`) ) ENGINE=InnoDB AUTO_INCREMENT=300 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sales_ordercancelled` -- LOCK TABLES `sales_ordercancelled` WRITE; /*!40000 ALTER TABLE `sales_ordercancelled` DISABLE KEYS */; INSERT INTO `sales_ordercancelled` VALUES ('416755950395725544',1,'41675594897','49',1.00,'10','retail','0','2023-02-05 14:03:58','','','','0','Cash',0.00,'10','','','4','','1','2023-02-05 11:04:21','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','0.00','-1','Inclusive','branch','None Inventory','1110','4000','5500'),('416755949143022319',2,'41675594897','37',1.00,'400','retail','0','2023-02-05 14:01:54','','','','0','Cash',0.00,'400','','','4','','1','2023-02-05 11:04:23','','6','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','0.00','-1','Inclusive','branch','Inventory','','',''),('416755990492964352',3,'41675599044','38',1.00,'350','retail','0','2023-02-05 15:10:48','','','','0','Cash',0.00,'350','','','4','','1','2023-02-05 12:11:35','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-8.00','-9','Inclusive','branch','Inventory','','',''),('416755990453421300',4,'41675599044','38',1.00,'350','retail','0','2023-02-05 15:10:44','','','','0','Cash',0.00,'350','','','4','','1','2023-02-05 12:11:35','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-7.00','-8','Inclusive','branch','Inventory','','',''),('416756025413253300',5,'41675602540','34',1.00,'300','retail','0','2023-02-05 16:09:00','','','','0','Cash',41.38,'300','','','4','','1','2023-02-05 13:09:34','','5','new','1','new','pcs','','','','','','0','','','EXEMPTED',258.62,'','-1.00','-2','Inclusive','branch','Inventory','','',''),('316756033173421300',6,'31675603317','20',1.00,'200','retail','0','2023-02-05 16:21:57','','','','0','Cash',0.00,'200','','','3','','1','2023-02-05 13:22:36','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-1.00','-2','Inclusive','branch','Inventory','','',''),('416756068382663352',7,'41675606835','38',1.00,'350','retail','0','2023-02-05 17:20:38','','','','0','Cash',0.00,'350','','','4','','1','2023-02-05 14:20:44','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-8.00','-9','Inclusive','branch','Inventory','','',''),('316756089172222032',8,'31675608916','12',1.00,'200','retail','0','2023-02-05 17:55:16','','','','0','Cash',0.00,'200','','','3','','1','2023-02-05 14:55:28','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-1.00','-2','Inclusive','branch','Inventory','','',''),('316756104580202035',9,'31675610457','9',1.00,'200','retail','0','2023-02-05 18:20:57','','','','0','Cash',0.00,'200','','','3','','1','2023-02-05 15:21:09','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-1.00','-2','Inclusive','branch','Inventory','','',''),('316756105514212432',10,'31675610550','1',1.00,'250','retail','0','2023-02-05 18:22:30','','','','0','Cash',34.48,'250','','','3','','1','2023-02-05 15:23:03','','1','new','1','new','pcs','','','','','','0','','','EXEMPTED',215.52,'','0.00','-1','Inclusive','branch','Inventory','','',''),('416759377530202035',11,'41675937752','7',1.00,'200','retail','0','2023-02-09 13:15:52','','','','0','Cash',0.00,'200','','','4','','1','2023-02-09 10:16:08','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-4.00','-5','Inclusive','branch','Inventory','','',''),('316760192767260732',12,'31676019275','50',1.00,'800','retail','0','2023-02-10 11:54:35','','','','650','Cash',0.00,'800','','','3','','1','2023-02-10 08:55:03','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','0.00','-1','Inclusive','branch','None Inventory','1110','4000','5500'),('316760204150025321',13,'31676020414','12',1.00,'200','retail','0','2023-02-10 12:13:34','','','','0','Cash',0.00,'200','','','3','','1','2023-02-10 09:14:48','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-7.00','-8','Inclusive','branch','Inventory','','',''),('316760468036720634',14,'31676046802','12',1.00,'200','retail','0','2023-02-10 19:33:22','','','','0','Cash',0.00,'200','','','3','','1','2023-02-10 16:33:26','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-8.00','-9','Inclusive','branch','Inventory','','',''),('316761139632222032',15,'31676113962','50',1.00,'800','retail','0','2023-02-11 14:12:42','','','','650','Cash',0.00,'800','','','3','','1','2023-02-11 12:54:29','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','0.00','-1','Inclusive','branch','None Inventory','1110','4000','5500'),('316763120362263362',16,'31676312035','1',1.00,'250','retail','0','2023-02-13 21:13:55','','','','0','Cash',0.00,'250','','','3','','1','2023-02-13 18:14:02','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-13.00','-14','Inclusive','branch','Inventory','','',''),('416763941303022331',17,'41676394129','30',1.00,'330','retail','0','2023-02-14 20:02:09','','','','0','Cash',0.00,'330','','','4','','1','2023-02-14 17:02:13','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-3.00','-4','Inclusive','branch','Inventory','','',''),('416767362776727644',18,'41676736276','10',1.00,'150','retail','0','2023-02-18 19:04:36','','','','0','Cash',0.00,'150','','','4','','1','2023-02-18 16:05:12','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','0.00','-1','Inclusive','branch','Inventory','','',''),('416767954142222032',19,'41676795413','17',1.00,'200','retail','0','2023-02-19 11:30:13','','','','0','Cash',0.00,'200','','','4','','1','2023-02-19 08:30:26','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-4.00','-5','Inclusive','branch','Inventory','','',''),('316768220912222032',20,'31676822090','35',1.00,'350','retail','0','2023-02-19 18:54:50','','','','0','Cash',0.00,'350','','','3','','1','2023-02-19 15:54:56','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-3.00','-4','Inclusive','branch','Inventory','','',''),('416768225850202036',21,'41676822584','1',1.00,'250','retail','0','2023-02-19 19:03:04','','','','0','Cash',0.00,'250','','','4','','1','2023-02-19 16:03:10','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-22.00','-23','Inclusive','branch','Inventory','','',''),('316768942744292432',22,'31676894273','9',1.00,'200','retail','0','2023-02-20 14:57:53','','','','0','Cash',0.00,'200','','','3','','1','2023-02-20 11:58:04','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-4.00','-5','Inclusive','branch','Inventory','','',''),('416769169123212223',23,'41676916911','21',1.00,'200','retail','0','2023-02-20 21:15:11','','','','0','Cash',0.00,'200','','','4','','1','2023-02-20 18:15:23','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-30.00','-31','Inclusive','branch','Inventory','','',''),('516768162127220732',24,'51676816211','46',1.00,'150','retail','0','2023-02-19 17:16:51','','','','0','Cash',0.00,'150','','','5','','1','2023-02-21 15:46:47','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-1.00','-2','Inclusive','branch','Inventory','','',''),('416770619454262432',25,'41677061944','5',1.00,'280','retail','0','2023-02-22 13:32:24','','','','0','Cash',0.00,'280','','','4','','1','2023-02-22 10:32:33','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-1.00','-2','Inclusive','branch','Inventory','','',''),('416772511322222032',26,'41677251117','3',1.00,'200','retail','0','2023-02-24 18:05:18','','','','0','Cash',0.00,'200','','','4','','1','2023-02-24 15:11:51','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-16.00','-17','Inclusive','branch','Inventory','','',''),('416772511320302242',27,'41677251117','3',1.00,'200','retail','0','2023-02-24 18:05:18','','','','0','Cash',0.00,'200','','','4','','1','2023-02-24 15:11:54','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-15.00','-16','Inclusive','branch','Inventory','','',''),('416772511312163372',28,'41677251117','3',1.00,'200','retail','0','2023-02-24 18:05:18','','','','0','Cash',0.00,'200','','','4','','1','2023-02-24 15:11:57','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-14.00','-15','Inclusive','branch','Inventory','','',''),('516774170112761372',29,'51677417011','50',1.00,'800','retail','0','2023-02-26 16:10:11','','','','650','Cash',0.00,'800','','','5','','1','2023-02-26 13:10:35','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','0.00','-1','Inclusive','branch','None Inventory','1110','4000','5500'),('516774283752867372',30,'51677428374','48',1.00,'10','retail','0','2023-02-26 19:19:34','','','','0','Cash',0.00,'10','','','5','','1','2023-02-26 16:19:42','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','202.00','201','Inclusive','branch','None Inventory','1110','4000','5500'),('416774361302663372',31,'41677436129','38',1.00,'350','retail','0','2023-02-26 21:28:49','','','','0','Cash',0.00,'350','','','4','','1','2023-02-26 18:29:02','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-35.00','-36','Inclusive','branch','Inventory','','',''),('416774881738724844',32,'41677488172','1',1.00,'250','retail','0','2023-02-27 11:56:12','','','','0','Cash',0.00,'250','','','4','','1','2023-02-27 08:56:18','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','19.00','18','Inclusive','branch','Inventory','','',''),('516775123642222032',33,'51677512359','47',1.00,'150','retail','0','2023-02-27 18:39:24','','','','0','Cash',0.00,'150','','','5','','1','2023-02-27 15:40:13','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','59.00','58','Inclusive','branch','Inventory','','',''),('516775123602266372',34,'51677512359','46',1.00,'150','retail','0','2023-02-27 18:39:19','','','','0','Cash',0.00,'150','','','5','','1','2023-02-27 15:40:13','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','59.00','58','Inclusive','branch','Inventory','','',''),('316775231273421300',35,'31677523126','14',1.00,'200','retail','0','2023-02-27 21:38:46','','','','0','Cash',0.00,'200','','','3','','1','2023-02-27 18:38:51','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','0.00','-1','Inclusive','branch','Inventory','','',''),('316775231487280732',36,'31677523140','2',1.00,'200','retail','0','2023-02-27 21:39:07','','','','0','Cash',0.00,'200','','','3','','1','2023-02-27 18:39:12','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-13.00','-14','Inclusive','branch','Inventory','','',''),('416775680918725844',37,'41677568090','7',1.00,'200','retail','0','2023-02-28 10:08:10','','','','0','Cash',0.00,'200','','','4','','1','2023-02-28 07:08:43','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-26.00','-27','Inclusive','branch','Inventory','','',''),('416775681338725844',38,'41677568090','2',1.00,'200','retail','0','2023-02-28 10:08:53','','','','0','Cash',0.00,'200','','','4','','1','2023-02-28 07:09:06','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-13.00','-14','Inclusive','branch','Inventory','','',''),('416776098223421300',39,'41677609821','48',1.00,'20','retail','0','2023-02-28 21:43:41','','','','0','Cash',0.00,'20','','','4','','1','2023-02-28 18:45:11','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','418.00','417','Inclusive','branch','None Inventory','1110','4000','5500'),('516776910372163372',40,'51677691036','55',1.00,'200','retail','0','2023-03-01 20:17:16','','','','150','Cash',0.00,'200','','','5','','1','2023-03-01 17:17:38','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','300.00','299','Inclusive','branch','Inventory','1110','4000','5500'),('516776913873421300',41,'51677691387','55',1.00,'200','retail','0','2023-03-01 20:23:07','','','','150','Cash',0.00,'200','','','5','','1','2023-03-01 17:35:15','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','300.00','299','Inclusive','branch','Inventory','1110','4000','5500'),('516776937062360372',42,'51677693705','58',1.00,'30','retail','0','2023-03-01 21:01:45','','','','15','Cash',0.00,'30','','','5','','1','2023-03-01 18:01:52','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Service','1110','4000','5500'),('316777431570202037',43,'31677743157','2',1.00,'200','retail','0','2023-03-02 10:45:57','','','','0','Cash',0.00,'200','','','3','','1','2023-03-02 07:46:36','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-15.00','-16','Inclusive','branch','Inventory','','',''),('316777583714252432',44,'31677758371','53',1.00,'200','retail','0','2023-03-02 14:59:31','','','','150','Cash',0.00,'200','','','3','','1','2023-03-02 11:59:43','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Inventory','1110','4000','5500'),('316779251273421300',45,'31677925126','33',1.00,'300','retail','0','2023-03-04 13:18:46','','','','0','Cash',0.00,'300','','','3','','1','2023-03-04 10:19:00','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','43.00','42','Inclusive','branch','Inventory','','',''),('316780431294242432',46,'31678043123','49',1.00,'15','retail','0','2023-03-05 22:05:28','','','','10','Cash',0.00,'15','','','3','','1','2023-03-05 19:05:33','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','211.00','210','Inclusive','branch','None Inventory','1110','4000','5500'),('316780431242803336',47,'31678043123','48',1.00,'20','retail','0','2023-03-05 22:05:23','','','','0','Cash',0.00,'20','','','3','','1','2023-03-05 19:05:35','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','408.00','407','Inclusive','branch','None Inventory','1110','4000','5500'),('416782567792667382',48,'41678256778','59',1.00,'150','retail','0','2023-03-08 09:26:18','','','','100','Cash',0.00,'150','','','4','','1','2023-03-08 06:26:36','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Service','1110','4000','5500'),('316782878274282432',49,'31678287826','17',1.00,'200','retail','0','2023-03-08 18:03:46','','','','0','Cash',0.00,'200','','','3','','1','2023-03-08 15:03:51','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-11.00','-12','Inclusive','branch','Inventory','','',''),('416784535242222032',50,'41678453523','2',1.00,'200','retail','0','2023-03-10 16:05:23','','','','0','Cash',0.00,'200','','','4','','1','2023-03-10 13:05:31','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-18.00','-19','Inclusive','branch','Inventory','','',''),('416785186594212432',51,'41678518659','46',1.00,'200','retail','0','2023-03-11 10:10:59','','','','0','Cash',0.00,'200','','','4','','1','2023-03-11 07:20:52','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','56.00','55','Inclusive','branch','Inventory','','',''),('316785463002222032',52,'31678546299','15',1.00,'200','retail','0','2023-03-11 17:51:39','','','','0','Cash',0.00,'200','','','3','','1','2023-03-11 14:52:17','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-3.00','-4','Inclusive','branch','Inventory','','',''),('316785463453022343',53,'31678546344','15',1.00,'200','retail','0','2023-03-11 17:52:24','','','','0','Cash',0.00,'200','','','3','','1','2023-03-11 14:53:25','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-3.00','-4','Inclusive','branch','Inventory','','',''),('316788068097290732',54,'31678806799','62',1.00,'200','retail','0','2023-03-14 18:13:28','','','','200','Cash',0.00,'200','','','3','','1','2023-03-14 15:13:32','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','29.00','28','Inclusive','branch','Inventory','1110','4000','5500'),('316788068006728634',55,'31678806799','62',1.00,'200','retail','0','2023-03-14 18:13:19','','','','200','Cash',0.00,'200','','','3','','1','2023-03-14 15:13:35','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Inventory','1110','4000','5500'),('316788113803022383',56,'31678811379','21',1.00,'200','retail','0','2023-03-14 19:29:40','','','','0','Cash',0.00,'200','','','3','','1','2023-03-14 16:29:43','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-79.00','-80','Inclusive','branch','Inventory','','',''),('316788892980202038',57,'31678889297','7',1.00,'200','retail','0','2023-03-15 17:08:17','','','','0','Cash',0.00,'200','','','3','','1','2023-03-15 14:08:23','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-35.00','-36','Inclusive','branch','Inventory','','',''),('416789655040202038',58,'41678965503','3',1.00,'200','retail','0','2023-03-16 14:18:23','','','','0','Cash',0.00,'200','','','4','','1','2023-03-16 11:25:28','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-23.00','-24','Inclusive','branch','Inventory','','',''),('316791279950202039',59,'31679127994','32',1.00,'300','retail','0','2023-03-18 11:26:34','','','','0','Cash',0.00,'300','','','3','','1','2023-03-18 08:26:38','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-12.00','-13','Inclusive','branch','Inventory','','',''),('316791280188721834',60,'31679128006','49',1.00,'15','retail','0','2023-03-18 11:26:58','','','','10','Cash',0.00,'15','','','3','','1','2023-03-18 08:27:31','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','203.00','202','Inclusive','branch','None Inventory','1110','4000','5500'),('316791280223022320',61,'31679128006','49',1.00,'15','retail','0','2023-03-18 11:27:01','','','','10','Cash',0.00,'15','','','3','','1','2023-03-18 08:27:33','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','202.00','201','Inclusive','branch','None Inventory','1110','4000','5500'),('416791635124262432',62,'41679163505','62',1.00,'200','retail','0','2023-03-18 21:18:31','','','','200','Cash',0.00,'200','','','4','','1','2023-03-18 18:18:36','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Inventory','1110','4000','5500'),('316791651722567392',63,'31679165171','60',1.00,'100','retail','0','2023-03-18 21:46:11','','','','70','Cash',0.00,'100','','','3','','1','2023-03-18 18:46:20','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','29.00','28','Inclusive','branch','Inventory','1110','4000','5500'),('316792288177270732',64,'31679228816','21',1.00,'200','retail','0','2023-03-19 15:26:56','','','','0','Cash',0.00,'200','','','3','','1','2023-03-19 12:27:02','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-87.00','-88','Inclusive','branch','Inventory','','',''),('316794117562222032',65,'31679411755','21',1.00,'200','retail','0','2023-03-21 18:15:55','','','','0','Cash',0.00,'200','','','3','','1','2023-03-21 15:16:04','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-89.00','-90','Inclusive','branch','Inventory','','',''),('316794166813421300',66,'31679416680','49',1.00,'15','retail','0','2023-03-21 19:38:00','','','','10','Cash',0.00,'15','','','3','','1','2023-03-21 16:38:04','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','201.00','200','Inclusive','branch','None Inventory','1110','4000','5500'),('316794915697290732',67,'31679491564','48',1.00,'20','retail','0','2023-03-22 16:26:08','','','','0','Cash',0.00,'20','','','3','','1','2023-03-22 13:49:36','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','392.00','391','Inclusive','branch','None Inventory','1110','4000','5500'),('316797564547240732',68,'31679756420','49',1.00,'15','retail','0','2023-03-25 18:00:53','','','','10','Cash',0.00,'15','','','3','','1','2023-03-25 15:01:04','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','197.00','196','Inclusive','branch','None Inventory','1110','4000','5500'),('316797642537230732',69,'31679764252','34',1.00,'300','retail','0','2023-03-25 20:10:52','','','','0','Cash',0.00,'300','','','3','','1','2023-03-25 17:18:29','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-37.00','-38','Inclusive','branch','Inventory','','',''),('416799966492664392',70,'41679996648','54',1.00,'350','retail','0','2023-03-28 12:44:08','','','','200','Cash',0.00,'350','','','4','','1','2023-03-28 09:44:15','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Service','1110','4000','5500'),('316800069154202432',71,'31680006915','53',1.00,'200','retail','0','2023-03-28 15:35:15','','','','150','Cash',0.00,'200','','','3','','1','2023-03-28 12:35:18','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','48.00','47','Inclusive','branch','Inventory','1110','4000','5500'),('316800069562222032',72,'31680006955','21',1.00,'200','retail','0','2023-03-28 15:35:55','','','','0','Cash',0.00,'200','','','3','','1','2023-03-28 12:36:01','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-103.00','-104','Inclusive','branch','Inventory','','',''),('416801855594282432',73,'41680185559','59',1.00,'150','retail','0','2023-03-30 17:12:39','','','','100','Cash',0.00,'150','','','4','','1','2023-03-30 14:12:49','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Service','1110','4000','5500'),('416801917313332010',74,'41680191730','9',1.00,'200','retail','0','2023-03-30 18:55:30','','','','0','Cash',0.00,'200','','','4','','1','2023-03-30 15:55:37','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-6.00','-7','Inclusive','branch','Inventory','','',''),('316802881648240832',75,'31680288163','2',1.00,'250','retail','0','2023-03-31 21:42:43','','','','0','Cash',0.00,'250','','','3','','1','2023-03-31 18:42:50','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-25.00','-26','Inclusive','branch','Inventory','','',''),('316803804928220832',76,'31680380491','38',1.00,'350','retail','0','2023-04-01 23:21:31','','','','0','Cash',0.00,'350','','','3','','1','2023-04-01 20:21:39','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-109.00','-110','Inclusive','branch','Inventory','','',''),('316804494323421300',77,'31680449431','6',1.00,'280','retail','0','2023-04-02 18:30:31','','','','0','Cash',0.00,'280','','','3','','1','2023-04-02 15:30:36','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-16.00','-17','Inclusive','branch','Inventory','','',''),('316807118640840332',78,'31680711863','8',1.00,'150','retail','0','2023-04-05 19:24:23','','','','0','Cash',0.00,'150','','','3','','1','2023-04-05 16:24:32','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-29.00','-30','Inclusive','branch','Inventory','','',''),('316807819820202030',79,'31680781980','1',1.00,'300','retail','0','2023-04-06 14:53:02','','','','0','Cash',0.00,'300','','','3','','1','2023-04-06 11:53:07','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-40.00','-41','Inclusive','branch','Inventory','','',''),('416808708963421300',80,'41680870895','32',1.00,'300','retail','0','2023-04-07 15:34:55','','','','0','Cash',0.00,'300','','','4','','1','2023-04-07 12:35:05','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-19.00','-20','Inclusive','branch','Inventory','','',''),('316808713374272432',81,'31680871336','38',1.00,'350','retail','0','2023-04-07 15:42:16','','','','0','Cash',0.00,'350','','','3','','1','2023-04-07 12:42:20','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-122.00','-123','Inclusive','branch','Inventory','','',''),('416809518248240832',82,'41680951823','1',1.00,'300','retail','0','2023-04-08 14:03:43','','','','0','Cash',0.00,'300','','','4','','1','2023-04-08 11:03:53','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-42.00','-43','Inclusive','branch','Inventory','','',''),('416809569240202030',83,'41680956923','50',1.00,'800','retail','0','2023-04-08 15:28:43','','','','650','Cash',0.00,'800','','','4','','1','2023-04-08 12:28:50','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','13.00','12','Inclusive','branch','None Inventory','1110','4000','5500'),('316809803448240832',84,'31680980343','1',1.00,'300','retail','0','2023-04-08 21:59:03','','','','0','Cash',0.00,'300','','','3','','1','2023-04-08 18:59:07','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-42.00','-43','Inclusive','branch','Inventory','','',''),('416810623733421300',85,'41681062354','4',1.00,'150','retail','0','2023-04-09 20:46:12','','','','0','Cash',0.00,'150','','','4','','1','2023-04-09 17:46:23','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-15.00','-16','Inclusive','branch','Inventory','','',''),('416813998892968312',86,'41681399888','59',1.00,'150','retail','0','2023-04-13 18:31:28','','','','100','Cash',0.00,'150','','','4','','1','2023-04-13 16:08:42','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','32.00','31','Inclusive','branch','Service','1110','4000','5500'),('316815804504282432',87,'31681580449','16',1.00,'200','retail','0','2023-04-15 20:40:49','','','','0','Cash',0.00,'200','','','3','','1','2023-04-15 17:40:52','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-14.00','-15','Inclusive','branch','Inventory','','',''),('416816629760202031',88,'41681662975','17',1.00,'200','retail','0','2023-04-16 19:36:15','','','','0','Cash',0.00,'200','','','4','','1','2023-04-16 16:57:07','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-17.00','-18','Inclusive','branch','Inventory','','',''),('316818227658250832',89,'31681822231','6',1.00,'280','retail','0','2023-04-18 15:59:00','','','','0','Cash',0.00,'280','','','3','','1','2023-04-18 13:10:39','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-18.00','-19','Inclusive','branch','Inventory','','',''),('416820682253022322',90,'41682068217','38',1.00,'350','retail','0','2023-04-21 12:10:24','','','','0','Cash',0.00,'350','','','4','','1','2023-04-21 09:10:36','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-166.00','-167','Inclusive','branch','Inventory','','',''),('316820766062660322',91,'31682076605','21',1.00,'200','retail','0','2023-04-21 14:30:05','','','','0','Cash',0.00,'200','','','3','','1','2023-04-21 11:30:09','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-149.00','-150','Inclusive','branch','Inventory','','',''),('316820961258250832',92,'31682096124','21',1.00,'200','retail','0','2023-04-21 19:55:24','','','','0','Cash',0.00,'200','','','3','','1','2023-04-21 16:55:28','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-149.00','-150','Inclusive','branch','Inventory','','',''),('316821792429821934',93,'31682179241','7',1.00,'200','retail','0','2023-04-22 19:00:41','','','','0','Cash',0.00,'200','','','3','','1','2023-04-22 16:00:45','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-70.00','-71','Inclusive','branch','Inventory','','',''),('316821795000202032',94,'31682179499','59',1.00,'150','retail','0','2023-04-22 19:04:59','','','','100','Cash',0.00,'150','','','3','','1','2023-04-22 16:05:13','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','33.00','32','Inclusive','branch','Service','1110','4000','5500'),('316821946432464322',95,'31682194642','58',1.00,'30','retail','0','2023-04-22 23:17:22','','','','15','Cash',0.00,'30','','','3','','1','2023-04-22 20:17:27','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','51.00','50','Inclusive','branch','Service','1110','4000','5500'),('416823429742267322',96,'41682342959','33',1.00,'300','retail','0','2023-04-24 16:29:33','','','','0','Cash',0.00,'300','','','4','','1','2023-04-24 13:30:12','','5','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','36.00','35','Inclusive','branch','Inventory','','',''),('416823541992469322',97,'41682354198','21',1.00,'200','retail','0','2023-04-24 19:36:38','','','','0','Cash',0.00,'200','','','4','','1','2023-04-24 16:36:44','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-156.00','-157','Inclusive','branch','Inventory','','',''),('316824478992769322',98,'31682447892','21',1.00,'200','retail','0','2023-04-25 21:38:18','','','','0','Cash',0.00,'200','','','3','','1','2023-04-25 18:38:27','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-158.00','-159','Inclusive','branch','Inventory','','',''),('316825296516622633',99,'31682529650','59',1.00,'150','retail','0','2023-04-26 20:20:50','','','','100','Cash',0.00,'150','','','3','','1','2023-04-26 17:24:19','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','34.00','33','Inclusive','branch','Service','1110','4000','5500'),('416826202434222432',100,'41682620242','1',1.00,'280','retail','0','2023-04-27 21:30:42','','','','0','Cash',0.00,'280','','','4','','1','2023-04-27 18:30:51','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-61.00','-62','Inclusive','branch','Inventory','','',''),('316827920772222032',101,'31682792076','4',1.00,'150','retail','0','2023-04-29 21:14:36','','','','0','Cash',0.00,'150','','','3','','1','2023-04-29 18:14:41','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-17.00','-18','Inclusive','branch','Inventory','','',''),('416829255652566322',102,'41682925564','21',1.00,'200','retail','0','2023-05-01 10:19:24','','','','0','Cash',0.00,'200','','','4','','1','2023-05-01 07:19:29','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-174.00','-175','Inclusive','branch','Inventory','','',''),('416829566223022326',103,'41682956621','60',1.00,'100','retail','0','2023-05-01 18:57:01','','','','70','Cash',0.00,'100','','','4','','1','2023-05-01 15:57:05','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','25.00','24','Inclusive','branch','Inventory','1110','4000','5500'),('316830539703820334',104,'31683053969','1',1.00,'280','retail','0','2023-05-02 21:59:29','','','','0','Cash',0.00,'280','','','3','','1','2023-05-02 18:59:33','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-69.00','-70','Inclusive','branch','Inventory','','',''),('316831090920202033',105,'31683109091','2',1.00,'250','retail','0','2023-05-03 13:18:11','','','','0','Cash',0.00,'250','','','3','','1','2023-05-03 10:18:15','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-51.00','-52','Inclusive','branch','Inventory','','',''),('316833799023022309',106,'31683379901','50',1.00,'800','retail','0','2023-05-06 16:31:41','','','','650','Cash',0.00,'800','','','3','','1','2023-05-06 13:32:22','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','13.00','12','Inclusive','branch','None Inventory','1110','4000','5500'),('316833799603421300',107,'31683379959','50',1.00,'800','retail','0','2023-05-06 16:32:39','','','','650','Cash',0.00,'800','','','3','','1','2023-05-06 13:32:47','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','13.00','12','Inclusive','branch','None Inventory','1110','4000','5500'),('316834575050273053',108,'31683457504','8',1.00,'150','retail','0','2023-05-07 14:05:04','','','','0','Cash',0.00,'150','','','3','','1','2023-05-07 11:05:12','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-55.00','-56','Inclusive','branch','Inventory','','',''),('316834598044252432',109,'31683459299','59',1.00,'150','retail','0','2023-05-07 14:43:23','','','','100','Cash',0.00,'150','','','3','','1','2023-05-07 11:43:27','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','35.00','34','Inclusive','branch','Service','1110','4000','5500'),('416835463572222032',110,'41683546356','53',1.00,'200','retail','0','2023-05-08 14:45:56','','','','150','Cash',0.00,'200','','','4','','1','2023-05-08 11:46:01','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','47.00','46','Inclusive','branch','Inventory','1110','4000','5500'),('416836223422826244',111,'41683622341','4',1.00,'150','retail','0','2023-05-09 11:52:21','','','','0','Cash',0.00,'150','','','4','','1','2023-05-09 08:52:28','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-20.00','-21','Inclusive','branch','Inventory','','',''),('316837507054252432',112,'31683750704','21',1.00,'200','retail','0','2023-05-10 23:31:44','','','','0','Cash',0.00,'200','','','3','','1','2023-05-10 20:31:48','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-201.00','-202','Inclusive','branch','Inventory','','',''),('316837507542065332',113,'31683750714','11',1.00,'280','retail','0','2023-05-10 23:32:33','','','','0','Cash',0.00,'280','','','3','','1','2023-05-10 20:32:39','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','84.00','83','Inclusive','branch','Inventory','','',''),('316837507683022367',114,'31683750714','21',1.00,'200','retail','0','2023-05-10 23:32:47','','','','0','Cash',0.00,'200','','','3','','1','2023-05-10 20:33:02','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-201.00','-202','Inclusive','branch','Inventory','','',''),('316838896623022366',115,'31683889662','11',1.00,'280','retail','0','2023-05-12 14:07:42','','','','0','Cash',0.00,'280','','','3','','1','2023-05-12 12:28:11','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','84.00','83','Inclusive','branch','Inventory','','',''),('316839208740202033',116,'31683920873','11',1.00,'280','retail','0','2023-05-12 22:47:53','','','','0','Cash',0.00,'280','','','3','','1','2023-05-12 19:47:57','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','83.00','82','Inclusive','branch','Inventory','','',''),('316843460138230832',117,'31684345997','27',1.00,'100','retail','0','2023-05-17 20:53:32','','','','0','Cash',0.00,'100','','','3','','1','2023-05-17 17:53:44','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-3.00','-4','Inclusive','branch','Inventory','','',''),('316844197338230832',118,'31684419728','40',1.00,'600','retail','0','2023-05-18 17:22:12','','','','0','Cash',0.00,'600','','','3','','1','2023-05-18 14:22:18','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-27.00','-28','Inclusive','branch','Inventory','','',''),('416844230864222432',119,'41684423085','11',1.00,'280','retail','0','2023-05-18 18:18:05','','','','0','Cash',0.00,'280','','','4','','1','2023-05-18 15:18:13','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','75.00','74','Inclusive','branch','Inventory','','',''),('316845025593022355',120,'31684502558','7',1.00,'200','retail','0','2023-05-19 16:22:38','','','','0','Cash',0.00,'200','','','3','','1','2023-05-19 13:22:44','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-96.00','-97','Inclusive','branch','Inventory','','',''),('316845191402222032',121,'31684519139','1',1.00,'280','retail','0','2023-05-19 20:58:59','','','','0','Cash',0.00,'280','','','3','','1','2023-05-19 17:59:04','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-95.00','-96','Inclusive','branch','Inventory','','',''),('316845224010202034',122,'31684522400','59',1.00,'150','retail','0','2023-05-19 21:53:20','','','','100','Cash',0.00,'150','','','3','','1','2023-05-19 18:53:54','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','36.00','35','Inclusive','branch','Service','1110','4000','5500'),('316846043868260832',123,'31684604385','1',1.00,'280','retail','0','2023-05-20 20:39:45','','','','0','Cash',0.00,'280','','','3','','1','2023-05-20 17:39:53','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-99.00','-100','Inclusive','branch','Inventory','','',''),('416846075987826744',124,'41684607597','53',1.00,'200','retail','0','2023-05-20 21:33:17','','','','150','Cash',0.00,'200','','','4','','1','2023-05-20 18:33:22','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','47.00','46','Inclusive','branch','Inventory','1110','4000','5500'),('416846107192222032',125,'41684610719','38',1.00,'350','retail','0','2023-05-20 22:25:19','','','','0','Cash',0.00,'350','','','4','','1','2023-05-20 19:25:29','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-242.00','-243','Inclusive','branch','Inventory','','',''),('316850317301820134',126,'31685031729','21',1.00,'200','retail','0','2023-05-25 19:22:09','','','','0','Cash',0.00,'200','','','3','','1','2023-05-25 16:22:15','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-229.00','-230','Inclusive','branch','Inventory','','',''),('416850322933421300',127,'41685032292','11',1.00,'280','retail','0','2023-05-25 19:31:32','','','','0','Cash',0.00,'280','','','4','','1','2023-05-25 16:31:41','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','66.00','65','Inclusive','branch','Inventory','','',''),('316851156180202035',128,'31685115617','38',1.00,'350','retail','0','2023-05-26 18:40:17','','','','0','Cash',0.00,'350','','','3','','1','2023-05-26 15:40:26','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-252.00','-253','Inclusive','branch','Inventory','','',''),('416851268682666352',129,'41685126868','17',1.00,'200','retail','0','2023-05-26 21:47:48','','','','0','Cash',0.00,'200','','','4','','1','2023-05-26 18:47:53','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-31.00','-32','Inclusive','branch','Inventory','','',''),('316851309882222032',130,'31685130987','21',1.00,'200','retail','0','2023-05-26 22:56:27','','','','0','Cash',0.00,'200','','','3','','1','2023-05-26 19:56:31','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-231.00','-232','Inclusive','branch','Inventory','','',''),('316852176727822734',131,'31685217671','5',1.00,'300','retail','0','2023-05-27 23:01:11','','','','0','Cash',0.00,'300','','','3','','1','2023-05-27 20:06:23','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-47.00','-48','Inclusive','branch','Inventory','','',''),('316854759192222032',132,'31685475918','21',1.00,'200','retail','0','2023-05-30 22:45:18','','','','0','Cash',0.00,'200','','','3','','1','2023-05-30 19:45:25','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-238.00','-239','Inclusive','branch','Inventory','','',''),('316855620305020533',133,'31685562029','58',1.00,'30','retail','0','2023-05-31 22:40:29','','','','15','Cash',0.00,'30','','','3','','1','2023-05-31 19:40:36','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','52.00','51','Inclusive','branch','Service','1110','4000','5500'),('316855626563421300',134,'31685562655','12',1.00,'250','retail','0','2023-05-31 22:50:55','','','','0','Cash',0.00,'250','','','3','','1','2023-05-31 19:51:15','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-61.00','-62','Inclusive','branch','Inventory','','',''),('316857121802827234',135,'31685712179','4',1.00,'150','retail','0','2023-06-02 16:22:59','','','','0','Cash',0.00,'150','','','3','','1','2023-06-02 13:23:07','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-27.00','-28','Inclusive','branch','Inventory','','',''),('316858058392222032',136,'31685805838','3',1.00,'200','retail','0','2023-06-03 18:23:58','','','','0','Cash',0.00,'200','','','3','','1','2023-06-03 15:24:03','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-77.00','-78','Inclusive','branch','Inventory','','',''),('416858123494212432',137,'41685812348','2',1.00,'250','retail','0','2023-06-03 20:12:28','','','','0','Cash',0.00,'250','','','4','','1','2023-06-03 17:12:32','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-58.00','-59','Inclusive','branch','Inventory','','',''),('416859677724262432',138,'41685967771','15',1.00,'200','retail','0','2023-06-05 15:22:51','','','','0','Cash',0.00,'200','','','4','','1','2023-06-05 12:22:56','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-13.00','-14','Inclusive','branch','Inventory','','',''),('316860704482064362',139,'31686070447','38',1.00,'350','retail','0','2023-06-06 19:54:07','','','','0','Cash',0.00,'350','','','3','','1','2023-06-06 16:54:11','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-276.00','-277','Inclusive','branch','Inventory','','',''),('316861457612222032',140,'31686145760','17',1.00,'200','retail','0','2023-06-07 16:49:20','','','','0','Cash',0.00,'200','','','3','','1','2023-06-07 13:49:33','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-37.00','-38','Inclusive','branch','Inventory','','',''),('316861482730202036',141,'31686148272','11',1.00,'280','retail','0','2023-06-07 17:31:12','','','','0','Cash',0.00,'280','','','3','','1','2023-06-07 14:31:35','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','46.00','45','Inclusive','branch','Inventory','','',''),('316861631562222032',142,'31686163155','13',1.00,'280','retail','0','2023-06-07 21:39:15','','','','0','Cash',0.00,'280','','','3','','1','2023-06-07 18:39:20','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-4.00','-5','Inclusive','branch','Inventory','','',''),('316862235983022395',143,'31686223597','1',1.00,'280','retail','0','2023-06-08 14:26:37','','','','0','Cash',0.00,'280','','','3','','1','2023-06-08 11:26:44','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-134.00','-135','Inclusive','branch','Inventory','','',''),('316862387304232432',144,'31686238729','1',1.00,'280','retail','0','2023-06-08 18:38:50','','','','0','Cash',0.00,'280','','','3','','1','2023-06-08 15:38:54','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-136.00','-137','Inclusive','branch','Inventory','','',''),('416862421492222032',145,'41686242148','14',1.00,'250','retail','0','2023-06-08 19:35:48','','','','0','Cash',0.00,'250','','','4','','1','2023-06-08 16:35:53','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-3.00','-4','Inclusive','branch','Inventory','','',''),('416862511324223020',146,'41686251131','11',1.00,'280','retail','0','2023-06-08 22:05:31','','','','0','Cash',0.00,'280','','','4','','1','2023-06-08 19:05:36','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','42.00','41','Inclusive','branch','Inventory','','',''),('516863237173022317',147,'31678637854','50',1.00,'800','retail','0','2023-06-09 18:15:16','','','','650','Cash',0.00,'800','','','5','','1','2023-06-09 15:21:40','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','13.00','12','Inclusive','branch','None Inventory','1110','4000','5500'),('316864203984222432',148,'31686420376','3',1.00,'200','retail','0','2023-06-10 21:06:37','','','','0','Cash',0.00,'200','','','3','','1','2023-06-10 18:06:47','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-80.00','-81','Inclusive','branch','Inventory','','',''),('416865013203022323',149,'41686501312','5',1.00,'300','retail','0','2023-06-11 19:35:19','','','','0','Cash',0.00,'300','','','4','','1','2023-06-11 16:35:24','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-66.00','-67','Inclusive','branch','Inventory','','',''),('416865013122161362',150,'41686501312','5',1.00,'300','retail','0','2023-06-11 19:35:12','','','','0','Cash',0.00,'300','','','4','','1','2023-06-11 16:35:29','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-63.00','-64','Inclusive','branch','Inventory','','',''),('316867359882568362',151,'31686735987','59',1.00,'150','retail','0','2023-06-14 12:46:27','','','','100','Cash',0.00,'150','','','3','','1','2023-06-14 09:46:34','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','37.00','36','Inclusive','branch','Service','1110','4000','5500'),('416868376352222032',152,'41686837634','7',1.00,'200','retail','0','2023-06-15 17:00:34','','','','0','Cash',0.00,'200','','','4','','1','2023-06-15 14:00:59','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-122.00','-123','Inclusive','branch','Inventory','','',''),('316868379733421300',153,'31686837972','3',1.00,'200','retail','0','2023-06-15 17:06:12','','','','0','Cash',0.00,'200','','','3','','1','2023-06-15 14:06:19','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-83.00','-84','Inclusive','branch','Inventory','','',''),('316870842472222032',154,'31687084240','38',1.00,'350','retail','0','2023-06-18 13:30:46','','','','0','Cash',0.00,'350','','','3','','1','2023-06-18 10:30:51','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-308.00','-309','Inclusive','branch','Inventory','','',''),('416874451472564372',155,'41687445038','21',1.00,'200','retail','0','2023-06-22 17:45:46','','','','0','Cash',0.00,'200','','','4','','1','2023-06-22 14:46:02','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-304.00','-305','Inclusive','branch','Inventory','','',''),('416874450432222032',156,'41687445038','7',1.00,'200','retail','0','2023-06-22 17:44:02','','','','0','Cash',0.00,'200','','','4','','1','2023-06-22 14:46:05','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-133.00','-134','Inclusive','branch','Inventory','','',''),('416874450392222032',157,'41687445038','7',1.00,'200','retail','0','2023-06-22 17:43:58','','','','0','Cash',0.00,'200','','','4','','1','2023-06-22 14:46:09','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-132.00','-133','Inclusive','branch','Inventory','','',''),('416874455538230832',158,'41687444100','21',1.00,'200','retail','0','2023-06-22 17:52:32','','','','0','Cash',0.00,'200','','','4','','1','2023-06-22 14:52:36','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-304.00','-305','Inclusive','branch','Inventory','','',''),('416874587454252432',159,'41687458744','12',1.00,'250','retail','0','2023-06-22 21:32:24','','','','0','Cash',0.00,'250','','','4','','1','2023-06-22 18:32:28','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-70.00','-71','Inclusive','branch','Inventory','','',''),('316882210632222032',160,'31688221062','8',1.00,'150','retail','0','2023-07-01 17:17:42','','','','0','Cash',0.00,'150','','','3','','1','2023-07-01 14:17:45','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-71.00','-72','Inclusive','branch','Inventory','','',''),('316882264143022314',161,'31688226413','7',1.00,'200','retail','0','2023-07-01 18:46:53','','','','0','Cash',0.00,'200','','','3','','1','2023-07-01 15:46:57','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-140.00','-141','Inclusive','branch','Inventory','','',''),('416884822740223783',162,'41688482273','11',1.00,'280','retail','0','2023-07-04 17:51:13','','','','0','Cash',0.00,'280','','','4','','1','2023-07-04 14:51:25','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-2.00','-3','Inclusive','branch','Inventory','','',''),('416887435464242432',163,'41688743523','9',1.00,'200','retail','0','2023-07-07 18:25:45','','','','0','Cash',0.00,'200','','','4','','1','2023-07-07 15:25:51','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-8.00','-9','Inclusive','branch','Inventory','','',''),('316888203062060382',164,'31688820086','45',1.00,'350','retail','0','2023-07-08 15:45:05','','','','0','Cash',0.00,'350','','','3','','1','2023-07-08 12:45:13','','9','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','24.00','23','Inclusive','branch','Inventory','','',''),('416888278217828744',165,'41688827778','27',1.00,'100','retail','0','2023-07-08 17:50:20','','','','0','Cash',0.00,'100','','','4','','1','2023-07-08 14:50:24','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-3.00','-4','Inclusive','branch','Inventory','','',''),('416894938484292432',166,'41689493848','7',1.00,'200','retail','0','2023-07-16 10:50:48','','','','0','Cash',0.00,'200','','','4','','1','2023-07-16 07:50:58','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-161.00','-162','Inclusive','branch','Inventory','','',''),('416896961372222032',167,'41689696136','60',1.00,'100','retail','0','2023-07-18 19:02:16','','','','70','Cash',0.00,'100','','','4','','1','2023-07-18 16:02:22','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','15.00','14','Inclusive','branch','Inventory','1110','4000','5500'),('416900295402222032',168,'41690029539','8',1.00,'150','retail','0','2023-07-22 15:38:59','','','','0','Cash',0.00,'150','','','4','','1','2023-07-22 12:39:03','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-72.00','-73','Inclusive','branch','Inventory','','',''),('416901225720202030',169,'41690122571','38',1.00,'350','retail','0','2023-07-23 17:29:31','','','','0','Cash',0.00,'350','','','4','','1','2023-07-23 14:29:54','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-407.00','-408','Inclusive','branch','Inventory','','',''),('416901384183421300',170,'41690138417','1',1.00,'280','retail','0','2023-07-23 21:53:37','','','','0','Cash',0.00,'280','','','4','','1','2023-07-23 18:53:40','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-225.00','-226','Inclusive','branch','Inventory','','',''),('416902179040202030',171,'41690217903','58',1.00,'30','retail','0','2023-07-24 19:58:23','','','','15','Cash',0.00,'30','','','4','','1','2023-07-24 16:58:28','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','53.00','52','Inclusive','branch','Service','1110','4000','5500'),('416903881463421300',172,'41690388145','9',1.00,'200','retail','0','2023-07-26 19:15:45','','','','0','Cash',0.00,'200','','','4','','1','2023-07-26 16:15:52','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-8.00','-9','Inclusive','branch','Inventory','','',''),('416905426153421300',173,'41690542614','23',1.00,'250','retail','0','2023-07-28 14:10:14','','','','0','Cash',0.00,'250','','','4','','1','2023-07-28 11:10:19','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-155.00','-156','Inclusive','branch','Inventory','','',''),('416906167186926644',174,'41690616717','7',1.00,'200','retail','0','2023-07-29 10:45:17','','','','0','Cash',0.00,'200','','','4','','1','2023-07-29 07:45:23','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-166.00','-167','Inclusive','branch','Inventory','','',''),('416907406060202030',175,'41690740604','31',1.00,'200','retail','0','2023-07-30 21:10:05','','','','0','Cash',0.00,'200','','','4','','1','2023-07-30 18:10:10','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-17.00','-18','Inclusive','branch','Inventory','','',''),('416907406059250932',176,'41690740604','31',1.00,'200','retail','0','2023-07-30 21:10:04','','','','0','Cash',0.00,'200','','','4','','1','2023-07-30 18:10:10','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-16.00','-17','Inclusive','branch','Inventory','','',''),('416907440450202030',177,'41690744041','38',1.00,'350','retail','0','2023-07-30 22:07:24','','','','0','Cash',0.00,'350','','','4','','1','2023-07-30 19:07:27','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-426.00','-427','Inclusive','branch','Inventory','','',''),('416907440424927444',178,'41690744041','38',1.00,'350','retail','0','2023-07-30 22:07:21','','','','0','Cash',0.00,'350','','','4','','1','2023-07-30 19:07:27','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-425.00','-426','Inclusive','branch','Inventory','','',''),('416909034449240932',179,'41690902740','11',1.00,'280','retail','0','2023-08-01 18:24:03','','','','0','Cash',0.00,'280','','','4','','1','2023-08-01 15:25:01','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-34.00','-35','Inclusive','branch','Inventory','','',''),('416909071783022371',180,'41690907177','38',1.00,'350','retail','0','2023-08-01 19:26:17','','','','0','Cash',0.00,'350','','','4','','1','2023-08-01 16:48:25','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-429.00','-430','Inclusive','branch','Inventory','','',''),('416909643379270932',181,'41690964336','1',1.00,'280','retail','0','2023-08-02 11:18:56','','','','0','Cash',0.00,'280','','','4','','1','2023-08-02 08:19:00','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-244.00','-245','Inclusive','branch','Inventory','','',''),('416910657239230932',182,'41691065722','11',1.00,'280','retail','0','2023-08-03 15:28:42','','','','0','Cash',0.00,'280','','','4','','1','2023-08-03 12:28:48','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-35.00','-36','Inclusive','branch','Inventory','','',''),('416910759573022359',183,'41691075956','14',1.00,'250','retail','0','2023-08-03 18:19:16','','','','0','Cash',0.00,'250','','','4','','1','2023-08-03 15:19:19','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-3.00','-4','Inclusive','branch','Inventory','','',''),('616911595493022345',184,'61691159548','21',1.00,'200','retail','0','2023-08-04 17:32:28','','','','0','Cash',0.00,'200','','','6','','1','2023-08-04 14:32:32','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-418.00','-419','Inclusive','branch','Inventory','','',''),('416912303902222032',185,'41691230390','4',1.00,'150','retail','0','2023-08-05 13:13:10','','','','0','Cash',0.00,'150','','','4','','1','2023-08-05 10:13:14','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-45.00','-46','Inclusive','branch','Inventory','','',''),('616913261952222032',186,'61691326195','3',1.00,'200','retail','0','2023-08-06 15:49:55','','','','0','Cash',0.00,'200','','','6','','1','2023-08-06 12:49:59','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-111.00','-112','Inclusive','branch','Inventory','','',''),('416915138053925344',187,'41691513804','1',1.00,'280','retail','0','2023-08-08 19:56:44','','','','0','Cash',0.00,'280','','','4','','1','2023-08-08 16:56:52','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-259.00','-260','Inclusive','branch','Inventory','','',''),('416916642909200932',188,'41691664289','11',1.00,'280','retail','0','2023-08-10 13:44:49','','','','0','Cash',0.00,'280','','','4','','1','2023-08-10 10:44:57','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-46.00','-47','Inclusive','branch','Inventory','','',''),('416917744852468312',189,'41691774475','8',1.00,'150','retail','0','2023-08-11 20:21:24','','','','0','Cash',0.00,'150','','','4','','1','2023-08-11 17:21:27','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-79.00','-80','Inclusive','branch','Inventory','','',''),('416918673943421300',190,'41691867379','40',1.00,'600','retail','0','2023-08-12 22:09:53','','','','0','Cash',0.00,'600','','','4','','1','2023-08-12 19:09:57','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-35.00','-36','Inclusive','branch','Inventory','','',''),('416919187413022347',191,'41691918741','21',1.00,'200','retail','0','2023-08-13 12:25:41','','','','0','Cash',0.00,'200','','','4','','1','2023-08-13 09:35:39','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-439.00','-440','Inclusive','branch','Inventory','','',''),('616919547059250932',192,'61691954702','21',1.00,'200','retail','0','2023-08-13 22:25:04','','','','0','Cash',0.00,'200','','','6','','1','2023-08-13 19:25:12','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-441.00','-442','Inclusive','branch','Inventory','','',''),('616919547033421300',193,'61691954702','21',1.00,'200','retail','0','2023-08-13 22:25:02','','','','0','Cash',0.00,'200','','','6','','1','2023-08-13 19:25:12','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-440.00','-441','Inclusive','branch','Inventory','','',''),('616921996673421300',194,'61692199664','22',1.00,'250','retail','0','2023-08-16 18:27:47','','','','0','Cash',0.00,'250','','','6','','1','2023-08-16 15:27:50','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-46.00','-47','Inclusive','branch','Inventory','','',''),('616921996659250932',195,'61692199664','22',1.00,'250','retail','0','2023-08-16 18:27:45','','','','0','Cash',0.00,'250','','','6','','1','2023-08-16 15:27:50','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-45.00','-46','Inclusive','branch','Inventory','','',''),('616923914194292432',196,'61692391414','49',1.00,'15','retail','0','2023-08-18 23:43:38','','','','10','Cash',0.00,'15','','','6','','1','2023-08-18 20:43:45','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','196.00','195','Inclusive','branch','None Inventory','1110','4000','5500'),('616923914140202032',197,'61692391414','48',1.00,'20','retail','0','2023-08-18 23:43:34','','','','0','Cash',0.00,'20','','','6','','1','2023-08-18 20:43:45','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','383.00','382','Inclusive','branch','None Inventory','1110','4000','5500'),('616927121439230932',198,'61692712142','61',1.00,'150','retail','0','2023-08-22 16:49:02','','','','100','Cash',0.00,'150','','','6','','1','2023-08-22 13:49:06','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Service','1110','4000','5500'),('416927315250202032',199,'41692731519','6',1.00,'280','retail','0','2023-08-22 22:12:05','','','','0','Cash',0.00,'280','','','4','','1','2023-08-22 19:12:16','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-29.00','-30','Inclusive','branch','Inventory','','',''),('416931553815921544',200,'41693155375','38',1.00,'350','retail','0','2023-08-27 19:56:20','','','','0','Cash',0.00,'350','','','4','','1','2023-08-27 16:56:29','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-482.00','-483','Inclusive','branch','Inventory','','',''),('416931553792222032',201,'41693155375','38',1.00,'350','retail','0','2023-08-27 19:56:18','','','','0','Cash',0.00,'350','','','4','','1','2023-08-27 16:56:30','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-481.00','-482','Inclusive','branch','Inventory','','',''),('416932217791922144',202,'41693221710','47',1.00,'200','retail','0','2023-08-28 14:22:58','','','','0','Cash',0.00,'200','','','4','','1','2023-08-28 11:23:03','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','19.00','18','Inclusive','branch','Inventory','','',''),('616933832123022312',203,'61693383211','15',1.00,'200','retail','0','2023-08-30 11:13:31','','','','0','Cash',0.00,'200','','','6','','1','2023-08-30 08:14:47','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-23.00','-24','Inclusive','branch','Inventory','','',''),('616934819240202033',204,'61693481921','38',1.00,'350','retail','0','2023-08-31 14:38:43','','','','0','Cash',0.00,'350','','','6','','1','2023-08-31 11:38:46','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-495.00','-496','Inclusive','branch','Inventory','','',''),('616934819223022329',205,'61693481921','38',1.00,'350','retail','0','2023-08-31 14:38:41','','','','0','Cash',0.00,'350','','','6','','1','2023-08-31 11:38:46','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-494.00','-495','Inclusive','branch','Inventory','','',''),('416936530219210932',206,'41693653020','58',1.00,'30','retail','0','2023-09-02 14:10:20','','','','15','Cash',0.00,'30','','','4','','1','2023-09-02 11:10:25','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','54.00','53','Inclusive','branch','Service','1110','4000','5500'),('416939262093421300',207,'41693926209','50',1.00,'800','retail','0','2023-09-05 18:03:29','','','','650','Cash',0.00,'800','','','4','','1','2023-09-05 15:03:50','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','None Inventory','1110','4000','5500'),('416939262409200932',208,'41693926239','50',1.00,'800','retail','0','2023-09-05 18:03:59','','','','650','Cash',0.00,'800','','','4','','1','2023-09-05 15:04:04','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','None Inventory','1110','4000','5500'),('616941644934262432',209,'61694164490','11',1.00,'280','retail','0','2023-09-08 12:14:52','','','','0','Cash',0.00,'280','','','6','','1','2023-09-08 09:14:55','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-70.00','-71','Inclusive','branch','Inventory','','',''),('616941644913421300',210,'61694164490','11',1.00,'280','retail','0','2023-09-08 12:14:50','','','','0','Cash',0.00,'280','','','6','','1','2023-09-08 09:14:55','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-69.00','-70','Inclusive','branch','Inventory','','',''),('416941845743022375',211,'41694184573','1',1.00,'280','retail','0','2023-09-08 17:49:33','','','','0','Cash',0.00,'280','','','4','','1','2023-09-08 14:49:38','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-294.00','-295','Inclusive','branch','Inventory','','',''),('416941934824292432',212,'41694193481','22',1.00,'250','retail','0','2023-09-08 20:18:01','','','','0','Cash',0.00,'250','','','4','','1','2023-09-08 17:18:38','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-52.00','-53','Inclusive','branch','Inventory','','',''),('616942622462264342',213,'61694262245','11',1.00,'280','retail','0','2023-09-09 15:24:05','','','','0','Cash',0.00,'280','','','6','','1','2023-09-09 12:24:08','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-74.00','-75','Inclusive','branch','Inventory','','',''),('416942796630202034',214,'41694279663','38',1.00,'350','retail','0','2023-09-09 20:14:23','','','','0','Cash',0.00,'350','','','4','','1','2023-09-09 17:14:30','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-508.00','-509','Inclusive','branch','Inventory','','',''),('416943675572222032',215,'41694367557','40',1.00,'600','retail','0','2023-09-10 20:39:17','','','','0','Cash',0.00,'600','','','4','','1','2023-09-10 17:39:20','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-37.00','-38','Inclusive','branch','Inventory','','',''),('416947132942369342',216,'41694713294','46',1.00,'200','retail','0','2023-09-14 20:41:34','','','','0','Cash',0.00,'200','','','4','','1','2023-09-14 17:41:39','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','9.00','8','Inclusive','branch','Inventory','','',''),('416948504154252432',217,'41694850414','20',1.00,'200','retail','0','2023-09-16 10:46:54','','','','0','Cash',0.00,'200','','','4','','1','2023-09-16 07:47:02','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-207.00','-208','Inclusive','branch','Inventory','','',''),('416948504169260932',218,'41694850414','20',1.00,'200','retail','0','2023-09-16 10:46:55','','','','0','Cash',0.00,'200','','','4','','1','2023-09-16 07:47:05','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-208.00','-209','Inclusive','branch','Inventory','','',''),('416948550792222032',219,'41694855078','3',1.00,'200','retail','0','2023-09-16 12:04:38','','','','0','Cash',0.00,'200','','','4','','1','2023-09-16 09:04:44','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-142.00','-143','Inclusive','branch','Inventory','','',''),('616948846454282432',220,'61694884643','38',1.00,'350','retail','0','2023-09-16 20:17:23','','','','0','Cash',0.00,'350','','','6','','1','2023-09-16 17:17:29','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-516.00','-517','Inclusive','branch','Inventory','','',''),('616948846443022346',221,'61694884643','38',1.00,'350','retail','0','2023-09-16 20:17:23','','','','0','Cash',0.00,'350','','','6','','1','2023-09-16 17:17:29','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-515.00','-516','Inclusive','branch','Inventory','','',''),('616948918431928164',222,'61694891826','9',1.00,'200','retail','0','2023-09-16 22:17:23','','','','0','Cash',0.00,'200','','','6','','1','2023-09-16 19:17:28','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-13.00','-14','Inclusive','branch','Inventory','','',''),('616948918341928164',223,'61694891826','25',1.00,'100','retail','0','2023-09-16 22:17:13','','','','0','Cash',0.00,'100','','','6','','1','2023-09-16 19:17:28','','3','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','0.00','-1','Inclusive','branch','Inventory','','',''),('616948918273022328',224,'61694891826','1',1.00,'280','retail','0','2023-09-16 22:17:06','','','','0','Cash',0.00,'280','','','6','','1','2023-09-16 19:17:28','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-308.00','-309','Inclusive','branch','Inventory','','',''),('616951165413421300',225,'61695116541','50',1.00,'800','retail','0','2023-09-19 12:42:21','','','','650','Cash',0.00,'800','','','6','','1','2023-09-19 09:42:31','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','None Inventory','1110','4000','5500'),('616954550545924564',226,'61695455016','46',1.00,'200','retail','0','2023-09-23 10:44:14','','','','0','Cash',0.00,'200','','','6','','1','2023-09-23 07:44:20','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','5.00','4','Inclusive','branch','Inventory','','',''),('616954550370202035',227,'61695455016','6',1.00,'280','retail','0','2023-09-23 10:43:56','','','','0','Cash',0.00,'280','','','6','','1','2023-09-23 07:44:20','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-30.00','-31','Inclusive','branch','Inventory','','',''),('616954550194252432',228,'61695455016','13',1.00,'280','retail','0','2023-09-23 10:43:39','','','','0','Cash',0.00,'280','','','6','','1','2023-09-23 07:44:20','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-6.00','-7','Inclusive','branch','Inventory','','',''),('616954550179270932',229,'61695455016','13',1.00,'280','retail','0','2023-09-23 10:43:36','','','','0','Cash',0.00,'280','','','6','','1','2023-09-23 07:44:20','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-5.00','-6','Inclusive','branch','Inventory','','',''),('616960075700202036',230,'61696007570','62',1.00,'200','retail','0','2023-09-29 20:12:50','','','','200','Cash',0.00,'200','','','6','','1','2023-09-29 17:12:54','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','23.00','22','Inclusive','branch','Inventory','1110','4000','5500'),('416961450540202036',231,'41696145053','7',1.00,'200','retail','0','2023-10-01 10:24:13','','','','0','Cash',0.00,'200','','','4','','1','2023-10-01 07:24:20','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-218.00','-219','Inclusive','branch','Inventory','','',''),('416961682652222032',232,'41696168254','29',1.00,'300','retail','0','2023-10-01 16:51:04','','','','0','Cash',0.00,'300','','','4','','1','2023-10-01 13:51:25','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-37.00','-38','Inclusive','branch','Inventory','','',''),('616962651624262432',233,'61696265162','60',1.00,'100','retail','0','2023-10-02 19:46:02','','','','70','Cash',0.00,'100','','','6','','1','2023-10-02 16:46:05','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','Inventory','1110','4000','5500'),('616965794329925964',234,'61696579432','50',1.00,'800','retail','0','2023-10-06 11:03:52','','','','650','Cash',0.00,'800','','','6','','1','2023-10-06 08:05:11','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','12.00','11','Inclusive','branch','None Inventory','1110','4000','5500'),('416966115891926144',235,'41696611588','53',1.00,'200','retail','0','2023-10-06 19:59:48','','','','150','Cash',0.00,'200','','','4','','1','2023-10-06 16:59:52','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','43.00','42','Inclusive','branch','Inventory','1110','4000','5500'),('416968368713421300',236,'41696836870','21',1.00,'200','retail','0','2023-10-09 10:34:30','','','','0','Cash',0.00,'200','','','4','','1','2023-10-09 07:34:46','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-550.00','-551','Inclusive','branch','Inventory','','',''),('416968481292222032',237,'41696848128','9',1.00,'200','retail','0','2023-10-09 13:42:08','','','','0','Cash',0.00,'200','','','4','','1','2023-10-09 10:42:19','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-13.00','-14','Inclusive','branch','Inventory','','',''),('416968481644242432',238,'41696848155','3',1.00,'200','retail','0','2023-10-09 13:42:43','','','','0','Cash',0.00,'200','','','4','','1','2023-10-09 10:42:51','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-153.00','-154','Inclusive','branch','Inventory','','',''),('416973916732222032',239,'41697391673','29',1.00,'300','retail','0','2023-10-15 20:41:13','','','','0','Cash',0.00,'300','','','4','','1','2023-10-15 17:41:17','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-39.00','-40','Inclusive','branch','Inventory','','',''),('416986530809200932',240,'41698653079','1',1.00,'280','retail','0','2023-10-30 11:04:39','','','','0','Cash',0.00,'280','','','4','','1','2023-10-30 08:04:48','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-344.00','-345','Inclusive','branch','Inventory','','',''),('416989474839230932',241,'41698947482','12',1.00,'250','retail','0','2023-11-02 20:51:22','','','','0','Cash',0.00,'250','','','4','','1','2023-11-02 17:51:26','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-115.00','-116','Inclusive','branch','Inventory','','',''),('416989510600202038',242,'41698951059','20',1.00,'200','retail','0','2023-11-02 21:50:59','','','','0','Cash',0.00,'200','','','4','','1','2023-11-02 18:52:17','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-228.00','-229','Inclusive','branch','Inventory','','',''),('616990935133920364',243,'61699093512','29',1.00,'300','retail','0','2023-11-04 13:25:12','','','','0','Cash',0.00,'300','','','6','','1','2023-11-04 10:25:16','','4','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-41.00','-42','Inclusive','branch','Inventory','','',''),('416991157255401392',244,'41699115724','7',1.00,'200','retail','0','2023-11-04 19:35:24','','','','0','Cash',0.00,'200','','','4','','1','2023-11-04 16:35:28','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-226.00','-227','Inclusive','branch','Inventory','','',''),('416993441994242432',245,'41699344199','1',1.00,'280','retail','0','2023-11-07 11:03:19','','','','0','Cash',0.00,'280','','','4','','1','2023-11-07 08:03:52','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-354.00','-355','Inclusive','branch','Inventory','','',''),('416995356154232432',246,'41699535614','13',1.00,'280','retail','0','2023-11-09 16:13:34','','','','0','Cash',0.00,'280','','','4','','1','2023-11-09 13:13:40','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-9.00','-10','Inclusive','branch','Inventory','','',''),('416995417373022337',247,'41699541737','1',1.00,'280','retail','0','2023-11-09 17:55:37','','','','0','Cash',0.00,'280','','','4','','1','2023-11-09 14:55:46','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-359.00','-360','Inclusive','branch','Inventory','','',''),('416996391173022311',248,'41699639116','1',1.00,'280','retail','0','2023-11-10 20:58:36','','','','0','Cash',0.00,'280','','','4','','1','2023-11-10 17:58:54','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-363.00','-364','Inclusive','branch','Inventory','','',''),('416999766994272432',249,'41699976699','21',1.00,'200','retail','0','2023-11-14 18:44:59','','','','0','Cash',0.00,'200','','','4','','1','2023-11-14 15:45:03','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-602.00','-603','Inclusive','branch','Inventory','','',''),('416999834272222032',250,'41699983427','38',1.00,'350','retail','0','2023-11-14 20:37:07','','','','0','Cash',0.00,'350','','','4','','1','2023-11-14 17:37:11','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-586.00','-587','Inclusive','branch','Inventory','','',''),('417000563936020644',251,'41700056392','1',1.00,'280','retail','0','2023-11-15 16:53:12','','','','0','Cash',0.00,'280','','','4','','1','2023-11-15 13:53:19','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-368.00','-369','Inclusive','branch','Inventory','','',''),('417003825843421300',252,'41700382576','5',1.00,'300','retail','0','2023-11-19 11:29:44','','','','0','Cash',41.38,'300','','','4','','1','2023-11-19 10:34:11','','1','new','1','new','pcs','','','','','','0','','','EXEMPTED',258.62,'','-136.00','-137','Inclusive','branch','Inventory','','',''),('417003825790290032',253,'41700382576','5',1.00,'300','retail','0','2023-11-19 11:29:38','','','','0','Cash',0.00,'300','','','4','','1','2023-11-19 10:34:15','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-135.00','-136','Inclusive','branch','Inventory','','',''),('417003825772023244',254,'41700382576','5',1.00,'300','retail','0','2023-11-19 11:29:36','','','','0','Cash',0.00,'300','','','4','','1','2023-11-19 10:34:20','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-134.00','-135','Inclusive','branch','Inventory','','',''),('417005104202222032',255,'41700510419','47',1.00,'200','retail','0','2023-11-20 23:00:19','','','','0','Cash',0.00,'200','','','4','','1','2023-11-20 20:00:37','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','1.00','0','Inclusive','branch','Inventory','','',''),('417005104510202030',256,'41700510451','54',1.00,'350','retail','0','2023-11-20 23:00:51','','','','200','Cash',0.00,'350','','','4','','1','2023-11-20 20:00:58','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Service','1110','4000','5500'),('417006709440202030',257,'41700670943','38',1.00,'350','retail','0','2023-11-22 19:35:43','','','','0','Cash',0.00,'350','','','4','','1','2023-11-22 16:35:53','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-600.00','-601','Inclusive','branch','Inventory','','',''),('417008441614028444',258,'41700844160','61',1.00,'150','retail','0','2023-11-24 19:42:40','','','','100','Cash',0.00,'150','','','4','','1','2023-11-24 16:42:47','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','31.00','30','Inclusive','branch','Service','1110','4000','5500'),('417011049004202432',259,'41701104899','47',1.00,'200','retail','0','2023-11-27 20:08:19','','','','0','Cash',0.00,'200','','','4','','1','2023-11-27 17:08:28','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-2.00','-3','Inclusive','branch','Inventory','','',''),('417011049424021444',260,'41701104941','54',1.00,'350','retail','0','2023-11-27 20:09:01','','','','200','Cash',0.00,'350','','','4','','1','2023-11-27 17:09:06','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','32.00','31','Inclusive','branch','Service','1110','4000','5500'),('417013404190023044',261,'41701340418','11',1.00,'280','retail','0','2023-11-30 13:33:38','','','','0','Cash',0.00,'280','','','4','','1','2023-11-30 10:33:43','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-127.00','-128','Inclusive','branch','Inventory','','',''),('417014308883022388',262,'41701430887','21',1.00,'200','retail','0','2023-12-01 14:41:27','','','','0','Cash',0.00,'200','','','4','','1','2023-12-01 11:43:02','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-621.00','-622','Inclusive','branch','Inventory','','',''),('417014324942024244',263,'41701432493','40',1.00,'600','retail','0','2023-12-01 15:08:13','','','','0','Cash',0.00,'600','','','4','','1','2023-12-01 12:08:17','','8','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-45.00','-46','Inclusive','branch','Inventory','','',''),('417015152662222032',264,'41701515264','1',1.00,'280','retail','0','2023-12-02 14:07:45','','','','0','Cash',0.00,'280','','','4','','1','2023-12-02 11:08:39','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-388.00','-389','Inclusive','branch','Inventory','','',''),('417015152650202031',265,'41701515264','1',1.00,'280','retail','0','2023-12-02 14:07:44','','','','0','Cash',0.00,'280','','','4','','1','2023-12-02 11:08:39','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-387.00','-388','Inclusive','branch','Inventory','','',''),('417015282564222432',266,'41701528251','1',1.00,'280','retail','0','2023-12-02 17:44:15','','','','0','Cash',0.00,'280','','','4','','1','2023-12-02 14:44:35','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-390.00','-391','Inclusive','branch','Inventory','','',''),('417015282522875312',267,'41701528251','1',1.00,'280','retail','0','2023-12-02 17:44:11','','','','0','Cash',0.00,'280','','','4','','1','2023-12-02 14:44:35','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-389.00','-390','Inclusive','branch','Inventory','','',''),('417015894049025944',268,'41701589403','54',1.00,'350','retail','0','2023-12-03 10:43:23','','','','200','Cash',0.00,'350','','','4','','1','2023-12-03 07:43:27','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','33.00','32','Inclusive','branch','Service','1110','4000','5500'),('417015970882222032',269,'41701597088','3',1.00,'200','retail','0','2023-12-03 12:51:28','','','','0','Cash',0.00,'200','','','4','','1','2023-12-03 09:51:35','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-171.00','-172','Inclusive','branch','Inventory','','',''),('417016192739026944',270,'41701619271','1',1.00,'280','retail','0','2023-12-03 19:01:12','','','','0','Cash',0.00,'280','','','4','','1','2023-12-03 16:01:18','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-390.00','-391','Inclusive','branch','Inventory','','',''),('417016192722977312',271,'41701619271','1',1.00,'280','retail','0','2023-12-03 19:01:11','','','','0','Cash',0.00,'280','','','4','','1','2023-12-03 16:01:18','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-389.00','-390','Inclusive','branch','Inventory','','',''),('417016285280280032',272,'41701628528','22',1.00,'250','retail','0','2023-12-03 21:35:28','','','','0','Cash',0.00,'250','','','4','','1','2023-12-03 18:45:25','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-71.00','-72','Inclusive','branch','Inventory','','',''),('417018776102442200',273,'41701877609','21',1.00,'200','retail','0','2023-12-06 18:46:49','','','','0','Cash',0.00,'200','','','4','','1','2023-12-06 15:46:54','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-637.00','-638','Inclusive','branch','Inventory','','',''),('417019350133421300',274,'41701935012','9',1.00,'200','retail','0','2023-12-07 10:43:32','','','','0','Cash',0.00,'200','','','4','','1','2023-12-07 07:43:58','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-14.00','-15','Inclusive','branch','Inventory','','',''),('417019351420220032',275,'41701935142','9',1.00,'200','retail','0','2023-12-07 10:45:42','','','','0','Cash',0.00,'200','','','4','','1','2023-12-07 07:45:47','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-14.00','-15','Inclusive','branch','Inventory','','',''),('417019605390290032',276,'41701960539','50',1.00,'800','retail','0','2023-12-07 17:48:59','','','','650','Cash',0.00,'800','','','4','','1','2023-12-07 14:49:09','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','None Inventory','1110','4000','5500'),('417021187813022387',277,'41702118780','50',1.00,'800','retail','0','2023-12-09 13:46:20','','','','650','Cash',0.00,'800','','','4','','1','2023-12-09 10:46:27','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','None Inventory','1110','4000','5500'),('417024895899024944',278,'41702489589','50',1.00,'800','retail','0','2023-12-13 20:46:29','','','','650','Cash',0.00,'800','','','4','','1','2023-12-13 17:46:36','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','11.00','10','Inclusive','branch','None Inventory','1110','4000','5500'),('417026684600202032',279,'41702668459','21',1.00,'200','retail','0','2023-12-15 22:27:39','','','','0','Cash',0.00,'200','','','4','','1','2023-12-15 19:27:44','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-655.00','-656','Inclusive','branch','Inventory','','',''),('417031793493421300',280,'41703179336','2',1.00,'250','retail','0','2023-12-21 20:22:29','','','','0','Cash',0.00,'250','','','4','','1','2023-12-21 17:22:34','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-109.00','-110','Inclusive','branch','Inventory','','',''),('417031793364272432',281,'41703179336','21',1.00,'200','retail','0','2023-12-21 20:22:16','','','','0','Cash',0.00,'200','','','4','','1','2023-12-21 17:22:38','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-664.00','-665','Inclusive','branch','Inventory','','',''),('417032562384252432',282,'41703256237','9',1.00,'200','retail','0','2023-12-22 17:43:57','','','','0','Cash',0.00,'200','','','4','','1','2023-12-22 14:44:04','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-15.00','-16','Inclusive','branch','Inventory','','',''),('417033999860260032',283,'41703399985','59',1.00,'150','retail','0','2023-12-24 09:39:45','','','','100','Cash',0.00,'150','','','4','','1','2023-12-24 06:39:56','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','38.00','37','Inclusive','branch','Service','1110','4000','5500'),('417034262414222432',284,'41703426238','1',1.00,'280','retail','0','2023-12-24 16:57:21','','','','0','Cash',0.00,'280','','','4','','1','2023-12-24 13:57:24','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-410.00','-411','Inclusive','branch','Inventory','','',''),('417034344824232432',285,'41703434481','21',1.00,'200','retail','0','2023-12-24 19:14:41','','','','0','Cash',0.00,'200','','','4','','1','2023-12-24 16:14:46','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-668.00','-669','Inclusive','branch','Inventory','','',''),('417036666523022356',286,'41703666624','47',1.00,'200','retail','0','2023-12-27 11:44:12','','','','0','Cash',0.00,'200','','','4','','1','2023-12-27 08:44:19','','10','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-7.00','-8','Inclusive','branch','Inventory','','',''),('417036666250202033',287,'41703666624','20',1.00,'200','retail','0','2023-12-27 11:43:44','','','','0','Cash',0.00,'200','','','4','','1','2023-12-27 08:44:19','','2','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-257.00','-258','Inclusive','branch','Inventory','','',''),('417039518071029144',288,'41703951806','59',1.00,'150','retail','0','2023-12-30 18:56:46','','','','100','Cash',0.00,'150','','','4','','1','2023-12-30 15:56:51','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','39.00','38','Inclusive','branch','Service','1110','4000','5500'),('617042921772406337',289,'61704292163','48',1.00,'20','retail','0','2024-01-03 17:29:36','','','','0','Cash',0.00,'20','','','6','','1','2024-01-03 14:29:41','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','378.00','377','Inclusive','branch','None Inventory','1110','4000','5500'),('617042921752022264',290,'61704292163','48',1.00,'20','retail','0','2024-01-03 17:29:35','','','','0','Cash',0.00,'20','','','6','','1','2024-01-03 14:29:41','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','379.00','378','Inclusive','branch','None Inventory','1110','4000','5500'),('617042921742022264',291,'61704292163','48',1.00,'20','retail','0','2024-01-03 17:29:33','','','','0','Cash',0.00,'20','','','6','','1','2024-01-03 14:29:41','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','380.00','379','Inclusive','branch','None Inventory','1110','4000','5500'),('617042921723022371',292,'61704292163','48',1.00,'20','retail','0','2024-01-03 17:29:32','','','','0','Cash',0.00,'20','','','6','','1','2024-01-03 14:29:41','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','381.00','380','Inclusive','branch','None Inventory','1110','4000','5500'),('617042921710210032',293,'61704292163','48',1.00,'20','retail','0','2024-01-03 17:29:30','','','','0','Cash',0.00,'20','','','6','','1','2024-01-03 14:29:41','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','382.00','381','Inclusive','branch','None Inventory','1110','4000','5500'),('617042921642222032',294,'61704292163','48',1.00,'20','retail','0','2024-01-03 17:29:23','','','','0','Cash',0.00,'20','','','6','','1','2024-01-03 14:29:41','','11','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','383.00','382','Inclusive','branch','None Inventory','1110','4000','5500'),('5170437678502500323333',295,'51704376784','38',1.00,'350','retail','0','2024-01-04 16:59:44','','','','0','Cash',0.00,'350','','','5','','1','2024-01-04 13:59:57','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-657.00','-658','Inclusive','branch','Inventory','','',''),('6170445214102100323334',296,'61704452141','6',1.00,'280','retail','0','2024-01-05 13:55:41','','','','0','Cash',0.00,'280','','','6','','1','2024-01-05 10:55:46','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','-33.00','-34','Inclusive','branch','Inventory','','',''),('5170463151731200415530',297,'51704631516','69',1.00,'250','retail','0','2024-01-07 15:45:16','','','','200','Cash',0.00,'250','','','5','','1','2024-01-07 12:45:22','','7','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','50.00','49','Inclusive','branch','Inventory','1110','4000','5500'),('6170464109603306332190',298,'61704641095','1',1.00,'280','retail','0','2024-01-07 18:24:55','','','','0','Cash',0.00,'280','','','6','','1','2024-01-07 15:28:49','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','30.00','29','Inclusive','branch','Inventory','','',''),('6170464315236223300321',299,'61704643152','1',1.00,'250','retail','0','2024-01-07 18:59:12','','','','0','Cash',0.00,'250','','','6','','1','2024-01-07 15:59:17','','1','new','1','new','pcs','','','','no','','0','','','EXEMPTED',0.00,'1','29.00','28','Inclusive','branch','Inventory','','',''); /*!40000 ALTER TABLE `sales_ordercancelled` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_orderkitchen` -- DROP TABLE IF EXISTS `sales_orderkitchen`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `sales_orderkitchen` ( `myinvoice` varchar(50) DEFAULT NULL, `id` int(11) NOT NULL AUTO_INCREMENT, `invoice` varchar(100) NOT NULL, `code` varchar(100) NOT NULL, `qty` decimal(10,2) NOT NULL, `amount` varchar(100) NOT NULL, `salestype` varchar(100) NOT NULL, `discount` varchar(100) NOT NULL, `dateposted` varchar(50) NOT NULL, `address` varchar(50) NOT NULL, `description` text NOT NULL, `user` varchar(50) NOT NULL, `bprice` varchar(50) NOT NULL, `type` varchar(50) NOT NULL DEFAULT 'cash', `tax` decimal(10,2) NOT NULL, `sprice` varchar(100) NOT NULL, `balance` varchar(50) NOT NULL, `customer` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `mode` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `date` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), `maincategory` varchar(50) NOT NULL, `category` varchar(50) NOT NULL, `status` varchar(30) DEFAULT 'new', `branch` varchar(30) NOT NULL, `ordersales` varchar(20) NOT NULL DEFAULT 'new', `uom` varchar(30) NOT NULL, `sales` varchar(30) NOT NULL, `updatedat` varchar(50) NOT NULL, `updatedby` varchar(10) NOT NULL, `taxindicator` varchar(10) NOT NULL DEFAULT 'yes', `serial` varchar(50) DEFAULT NULL, `tax2` varchar(20) NOT NULL, `discountype` varchar(20) NOT NULL, `discountvalue` varchar(20) NOT NULL, `vattype` varchar(20) NOT NULL, `taxable` varchar(50) NOT NULL, `uomqty` varchar(30) NOT NULL DEFAULT '0', `stockbefore` varchar(30) NOT NULL, `stockafter` varchar(30) NOT NULL, `taxtype` varchar(30) NOT NULL DEFAULT 'Inclusive', `stock` varchar(20) NOT NULL DEFAULT 'branch', `producttype` varchar(30) NOT NULL, `assetaccount` varchar(30) NOT NULL, `salesaccount` varchar(30) NOT NULL, `expenseaccount` varchar(30) DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `myinvoice` (`myinvoice`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sales_orderkitchen` -- LOCK TABLES `sales_orderkitchen` WRITE; /*!40000 ALTER TABLE `sales_orderkitchen` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_orderkitchen` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_orderraw` -- DROP TABLE IF EXISTS `sales_orderraw`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `sales_orderraw` ( `myinvoice` varchar(50) DEFAULT NULL, `id` int(11) NOT NULL AUTO_INCREMENT, `invoice` varchar(100) NOT NULL, `code` varchar(100) NOT NULL, `qty` decimal(10,2) NOT NULL, `amount` varchar(100) NOT NULL, `salestype` varchar(100) NOT NULL, `discount` varchar(100) NOT NULL, `dateposted` varchar(50) NOT NULL, `address` text NOT NULL, `description` text NOT NULL, `user` varchar(50) NOT NULL, `bprice` varchar(50) NOT NULL, `type` varchar(50) NOT NULL DEFAULT 'cash', `tax` decimal(10,2) NOT NULL, `sprice` varchar(100) NOT NULL, `balance` varchar(50) NOT NULL, `customer` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `mode` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `date` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), `maincategory` varchar(50) NOT NULL, `category` varchar(50) NOT NULL, `status` varchar(30) DEFAULT 'new', `branch` varchar(30) NOT NULL, `ordersales` varchar(20) NOT NULL DEFAULT 'new', `uom` varchar(30) NOT NULL, `sales` varchar(30) NOT NULL, `updatedat` varchar(50) NOT NULL, `updatedby` varchar(10) NOT NULL, `taxindicator` varchar(10) NOT NULL DEFAULT 'yes', `serial` varchar(50) DEFAULT NULL, `tax2` varchar(20) NOT NULL, `discountype` varchar(20) NOT NULL, `discountvalue` varchar(20) NOT NULL, `vattype` varchar(20) NOT NULL, `taxable` decimal(10,2) NOT NULL, `uomqty` varchar(30) NOT NULL DEFAULT '0', `stockbefore` varchar(30) NOT NULL, `stockafter` varchar(30) NOT NULL, `taxtype` varchar(30) NOT NULL DEFAULT 'Inclusive', `stock` varchar(20) NOT NULL DEFAULT 'branch', `producttype` varchar(30) NOT NULL, `assetaccount` varchar(30) NOT NULL, `salesaccount` varchar(30) NOT NULL, `expenseaccount` varchar(30) DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `myinvoice` (`myinvoice`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sales_orderraw` -- LOCK TABLES `sales_orderraw` WRITE; /*!40000 ALTER TABLE `sales_orderraw` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_orderraw` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sales_reading` -- DROP TABLE IF EXISTS `sales_reading`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `sales_reading` ( `invoice` varchar(100) NOT NULL, `code` varchar(100) NOT NULL, `qty` varchar(100) NOT NULL, `amount` varchar(100) NOT NULL, `salestype` varchar(100) NOT NULL, `sprice` varchar(100) NOT NULL, `discount` varchar(100) NOT NULL, `dateposted` varchar(50) NOT NULL, `address` varchar(50) NOT NULL, `description` text NOT NULL, `user` varchar(50) NOT NULL, `bprice` varchar(50) NOT NULL, `type` varchar(50) NOT NULL DEFAULT 'cash', `tax` varchar(50) NOT NULL, `balance` varchar(50) NOT NULL, `customer` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `mode` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `date` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), `id` int(30) NOT NULL AUTO_INCREMENT, `status` varchar(30) NOT NULL DEFAULT 'new', `category` varchar(30) NOT NULL, `maincategory` varchar(10) NOT NULL, `start` varchar(100) NOT NULL, `close` varchar(100) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sales_reading` -- LOCK TABLES `sales_reading` WRITE; /*!40000 ALTER TABLE `sales_reading` DISABLE KEYS */; /*!40000 ALTER TABLE `sales_reading` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `salesreading` -- DROP TABLE IF EXISTS `salesreading`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `salesreading` ( `id` int(11) NOT NULL AUTO_INCREMENT, `invoice` varchar(100) NOT NULL, `cashier` varchar(100) NOT NULL, `type` varchar(100) NOT NULL, `amount` varchar(100) NOT NULL, `due_date` varchar(100) NOT NULL, `name` varchar(100) NOT NULL, `balance` varchar(20) NOT NULL DEFAULT '0', `userid` varchar(50) NOT NULL, `dateposted` varchar(50) NOT NULL, `customer` varchar(50) NOT NULL, `cash` varchar(50) NOT NULL, `total` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `salestype` varchar(50) NOT NULL, `maindiscount` varchar(20) DEFAULT NULL, `discountedtotal` varchar(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `salesreading` -- LOCK TABLES `salesreading` WRITE; /*!40000 ALTER TABLE `salesreading` DISABLE KEYS */; /*!40000 ALTER TABLE `salesreading` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `salesreport` -- DROP TABLE IF EXISTS `salesreport`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `salesreport` ( `id` int(50) NOT NULL, `type` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `title` varchar(50) NOT NULL, `description` text NOT NULL, `dateposted` varchar(50) NOT NULL, `user` varchar(100) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `reportdate` varchar(50) NOT NULL, `recommendation` text NOT NULL, `controller` varchar(40) NOT NULL, `companyid` varchar(50) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `salesreport` -- LOCK TABLES `salesreport` WRITE; /*!40000 ALTER TABLE `salesreport` DISABLE KEYS */; /*!40000 ALTER TABLE `salesreport` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `serials` -- DROP TABLE IF EXISTS `serials`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `serials` ( `id` int(11) NOT NULL AUTO_INCREMENT, `itemid` varchar(50) NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'new', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `code` varchar(30) NOT NULL, `branch` varchar(30) NOT NULL, `qty` decimal(10,4) NOT NULL, `buyingprice` decimal(10,2) NOT NULL, `sellingprice` decimal(10,2) NOT NULL, `invoice` varchar(50) DEFAULT NULL, `serial` varchar(50) NOT NULL, `otherserial` varchar(50) NOT NULL, `name` text NOT NULL, `description` text NOT NULL, `batchno` int(11) NOT NULL, `myid` int(50) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `serial` (`serial`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `serials` -- LOCK TABLES `serials` WRITE; /*!40000 ALTER TABLE `serials` DISABLE KEYS */; /*!40000 ALTER TABLE `serials` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `serialstocktaking` -- DROP TABLE IF EXISTS `serialstocktaking`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `serialstocktaking` ( `id` int(10) NOT NULL AUTO_INCREMENT, `code` varchar(50) NOT NULL, `open` decimal(10,2) NOT NULL, `added` decimal(10,2) NOT NULL, `balance` decimal(10,2) NOT NULL, `branchid` int(10) NOT NULL, `type` varchar(30) NOT NULL DEFAULT 'open', `userid` int(30) NOT NULL, `companyid` int(30) NOT NULL, `startdate` varchar(30) NOT NULL, `closedate` varchar(10) NOT NULL, `updatedby` int(10) NOT NULL, `postedtime` varchar(30) NOT NULL, `status` varchar(10) NOT NULL DEFAULT 'open', `maincategory` int(11) NOT NULL, `serial` varchar(50) NOT NULL, `sellingprice` varchar(20) NOT NULL, `buyingprice` varchar(20) NOT NULL, `name` varchar(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `serialstocktaking` -- LOCK TABLES `serialstocktaking` WRITE; /*!40000 ALTER TABLE `serialstocktaking` DISABLE KEYS */; /*!40000 ALTER TABLE `serialstocktaking` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `setting` -- DROP TABLE IF EXISTS `setting`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `setting` ( `name` varchar(255) NOT NULL, `value` text NOT NULL, PRIMARY KEY (`name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `setting` -- LOCK TABLES `setting` WRITE; /*!40000 ALTER TABLE `setting` DISABLE KEYS */; /*!40000 ALTER TABLE `setting` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sms` -- DROP TABLE IF EXISTS `sms`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `sms` ( `id` int(30) NOT NULL AUTO_INCREMENT, `contact` varchar(60) NOT NULL, `postedtime` varchar(40) NOT NULL, `message` text NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `smscount` int(11) NOT NULL, `messageId` int(11) NOT NULL, `response` text NOT NULL, `cost` int(11) NOT NULL, `bulkId` varchar(100) NOT NULL, `qty` varchar(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sms` -- LOCK TABLES `sms` WRITE; /*!40000 ALTER TABLE `sms` DISABLE KEYS */; /*!40000 ALTER TABLE `sms` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sms_in` -- DROP TABLE IF EXISTS `sms_in`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `sms_in` ( `id` int(11) NOT NULL AUTO_INCREMENT, `sms_text` varchar(1600) DEFAULT NULL, `sender_number` varchar(50) DEFAULT NULL, `sent_dt` datetime DEFAULT NULL, `code` varchar(15) NOT NULL, `amount` decimal(10,2) NOT NULL DEFAULT 0.00, `firstname` varchar(15) DEFAULT NULL, `lastname` varchar(15) DEFAULT NULL, `msisdn` int(20) DEFAULT 0, `used` int(5) NOT NULL DEFAULT 0, `exactime` datetime NOT NULL, `txn_time` varchar(50) DEFAULT NULL, `middlename` varchar(50) DEFAULT NULL, `account_number` varchar(50) DEFAULT NULL, `business_shortcode` varchar(50) DEFAULT NULL, `transactionType` varchar(30) DEFAULT NULL, `printed` int(5) NOT NULL DEFAULT 0, `OrgAccountBalance` decimal(10,2) NOT NULL, `branchid` int(11) DEFAULT 1, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sms_in` -- LOCK TABLES `sms_in` WRITE; /*!40000 ALTER TABLE `sms_in` DISABLE KEYS */; INSERT INTO `sms_in` VALUES (1,'Confirmed. Ksh. 2.00 from SUUD KASSIM KADID Phone No. 254724701856 received Ref. RGV8W42RYE on 31-07-2023 at 17:59. Thank you','254724701856',NULL,'RGV8W4RYE33',2.00,'KASSIM','KADID',0,2,'0000-00-00 00:00:00',NULL,NULL,NULL,NULL,NULL,0,0.00,1); /*!40000 ALTER TABLE `sms_in` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `sms_in22` -- DROP TABLE IF EXISTS `sms_in22`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `sms_in22` ( `id` int(11) NOT NULL AUTO_INCREMENT, `sms_text` varchar(1600) DEFAULT NULL, `sender_number` varchar(50) DEFAULT NULL, `sent_dt` datetime DEFAULT NULL, `code` varchar(15) NOT NULL, `amount` decimal(10,2) NOT NULL DEFAULT 0.00, `firstname` varchar(15) DEFAULT NULL, `lastname` varchar(15) DEFAULT NULL, `msisdn` int(20) DEFAULT 0, `used` int(5) NOT NULL DEFAULT 0, `exactime` datetime NOT NULL, `txn_time` varchar(50) DEFAULT NULL, `middlename` varchar(50) DEFAULT NULL, `account_number` varchar(50) DEFAULT NULL, `business_shortcode` varchar(50) DEFAULT NULL, `transactionType` varchar(30) DEFAULT NULL, `printed` int(5) NOT NULL DEFAULT 0, `OrgAccountBalance` decimal(10,2) NOT NULL, `branchid` int(11) DEFAULT 1, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `sms_in22` -- LOCK TABLES `sms_in22` WRITE; /*!40000 ALTER TABLE `sms_in22` DISABLE KEYS */; /*!40000 ALTER TABLE `sms_in22` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `smsconfig` -- DROP TABLE IF EXISTS `smsconfig`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `smsconfig` ( `id` int(30) NOT NULL, `username` text NOT NULL, `apikey` text NOT NULL, `from` varchar(50) NOT NULL, `link` text NOT NULL, `businessname` text NOT NULL, `contact` varchar(100) NOT NULL, `location` varchar(100) NOT NULL, `email` varchar(100) NOT NULL, `code` varchar(50) NOT NULL, `description` text NOT NULL, `contactperson` varchar(100) NOT NULL, `password` varchar(50) NOT NULL, `contact2` varchar(50) NOT NULL, `address` varchar(50) NOT NULL, `currencysymbol` varchar(100) NOT NULL, `tax1` varchar(100) NOT NULL, `tax1rate` varchar(100) NOT NULL, `tax2` varchar(100) NOT NULL, `tax2rate` varchar(100) NOT NULL, `website` varchar(100) NOT NULL, `returnpolicy` text NOT NULL, `logo` text NOT NULL, `paymenttypes` text NOT NULL, `country` varchar(50) NOT NULL, `totalsms` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `updatedat` varchar(50) NOT NULL, `display1` varchar(5) NOT NULL, `display2` varchar(5) NOT NULL, `maindiscount` varchar(10) NOT NULL DEFAULT 'no', `receiptdescription` varchar(5) NOT NULL DEFAULT 'yes', `deadline` text NOT NULL, `tillno` text NOT NULL, `invoicedetails` text NOT NULL, `barcode` varchar(3) NOT NULL DEFAULT 'no', `deadlinedetails` text NOT NULL, `businesskey` text NOT NULL, `display` varchar(30) NOT NULL, `fromdate` varchar(30) NOT NULL, `todate` varchar(30) NOT NULL, `starttime` varchar(30) NOT NULL, `duetime` varchar(30) NOT NULL, `view` text NOT NULL, `receipt` varchar(50) NOT NULL, `mode` varchar(30) NOT NULL, `feedback` text NOT NULL, `sendfeedback` varchar(10) NOT NULL, `dublicate` varchar(10) NOT NULL, `smscompany` varchar(30) NOT NULL DEFAULT 'Infobip', `newuser` varchar(30) NOT NULL, `newpassword` varchar(30) NOT NULL, `senderid` varchar(30) NOT NULL, `leftoverview` text NOT NULL, `rightoverview` text NOT NULL, `assetaccount` varchar(50) NOT NULL, `salesaccount` varchar(50) NOT NULL, `expenseaccount` varchar(50) NOT NULL, `starthappyhour` varchar(20) NOT NULL, `endhappyhourse` varchar(20) NOT NULL, `statushappyhour` varchar(20) NOT NULL, `salesmethod` varchar(20) NOT NULL, `plot` int(11) NOT NULL DEFAULT 10, `defautpage` varchar(255) NOT NULL DEFAULT 'user/home', `ecommerce` varchar(10) NOT NULL DEFAULT 'deactivate', `landingpage` varchar(40) NOT NULL DEFAULT 'products', `path` text NOT NULL, `shortcode` text NOT NULL, `confirmationurl` text NOT NULL, `validationurl` text NOT NULL, `responseType` text NOT NULL, `consumer_key` text NOT NULL, `consumer_secret` text NOT NULL, `signature` text DEFAULT NULL, `kitchen` varchar(30) NOT NULL DEFAULT 'no', `kitchenid` int(11) DEFAULT NULL, `receiptlogo` varchar(10) NOT NULL DEFAULT 'no', `bankcode` varchar(20) NOT NULL DEFAULT 'no', `menutype` varchar(50) NOT NULL DEFAULT 'Left', `hscode` varchar(20) NOT NULL DEFAULT 'YES', `smslogin` varchar(50) NOT NULL DEFAULT 'no', `servicecharge` varchar(20) NOT NULL DEFAULT '3', `displayservicecharge` varchar(20) NOT NULL DEFAULT 'no', `restricttill` varchar(20) DEFAULT 'no', `currency` varchar(20) NOT NULL DEFAULT 'no', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `smsconfig` -- LOCK TABLES `smsconfig` WRITE; /*!40000 ALTER TABLE `smsconfig` DISABLE KEYS */; INSERT INTO `smsconfig` VALUES (1,'76','c8d1ec0b9d21d199d6d7514ce002b85fd3022037d31141cecf5ea57902320994f885c92064cc2bee019f87df642212ac30505551','Robisearch','','<H1 style=\"margin:0px;\">KAHAWA ESPRESSO</H1>\r\n<H2>TEL:</H2>\r\n<H3>TILL:8232294</H3>\r\n\r\n\r\n','254738637711','VALLEY ARCADE','support@robisearch.com','ROBISEARCHPOS','<H1 style=\"margin:0px;\">KAHAWA ESPRESSO</H1>\r\n<H2>TEL:</H2>\r\n<H3>TILL:8232294</H3>\r\n','KAHAWA ESPRESSO','e7bd1efe6cee0b56cf3b31d7fb5d01c7','254708325411','','','VAT','16','levy','2','RO0001',' Goods once sold will not be returned ,Prices inclusive of vat where applicable, <br>We appreciate your valuable business','2023-02-051675592901.jpg','1','1 ','','1','2024-01-06 16:15:52','no','no','no','no','hwZ2B3Kj9fDOshfsEybQEAv4zQUwyFvBY+tf0/6g8him/CHP39hKxFz3+yng5As1fnVhjprhjR6O1NFGMuYmlg==','.','<B> INVOICE TERMS</B></BR>\r\n1. This invoice is payable on demand unless terms specified.<br>\r\n2. Good once sold are not returnable<br>\r\n3. Ownership of the above good will be vested in Dimetrica limited until fully paid\r\n','no','You have not paid your pending balance or you have not paid your annual maintenance fees. Kindly send the payment through our Playbill no:522522 and Acc No:1171211120 for you to continue enjoying our services.','R41re+i3i+OMtm+cR7lrKzvB8gtTMXOOL1ZoWHqFU2bJTf7cNntQStJcRV4qen1VaSNhI0RgYzjHhip3oMdixh6GK8isNdNRhLJjvED36khPtbNpNu4Fchk95AjOoRVV','100','Current','Current','00:00','23:59','CompleteTouch','Two Without Automatic Logout','Before Receipt','thank you for shopping with us. ','yes','yes','Advanta','ROBISEARCHLTD','Robisearch@2018','ROBISEARCH','<b>About Robisearch Ltd</b><br>\r\nRobisearch Ltd is an ICT youth based company that begun in 2011 as a result of innovations that transform lives globally. We are innovator behind Biometric lands system and digital birth card system that could help fight terrorisms. We are a member of the Nairobi Chambers (KNCCI) organization and AGPO. We offer attachment /internships opportunity to 60 students on annual basis as a way of creating job opportunity to youths in Kenya. We have great experience in dealing with customers having handled over 500 customers’ country wide. Some of services are:<p class=\"text-center\">\r\n<h3>OUR SERVICES</h3>\r\nBelow are some of our services and solutions:<br>\r\n• Biometric system for schools and business : Price= From Ksh.50,000<br>\r\n• Bulk Sms services(Bulksms ChapChap) : Price= From Ksh.5,000<br>\r\n• Best Erp/Point of Sale/ Inventory Control Software : Price= From Ksh.50,000<br>\r\n• Property Management software that conforms to the Big 4 government agenda. : Price= From Ksh.100,000<br>\r\n\r\nNOTE: You can give discount upto 20% of the above selling price.\r\n</p>\r\n\r\n<p>\r\nOur Vision<br>\r\nTransforming the world through innovation<br>\r\nOur Mission<br>\r\nTo be the best ICT company offering innovate services globally.\r\nBiometric Systems rely mostly on information about a person to identify the person in such a way that specific data about unique biological traits are relied upon to work effectively.\r\nThe biometric School attendance system. This is an innovative system which is used by schools to track student movements. The system sends sms alert to the parents whenever students checks in and out of the schools. The system is also used as digital register to record students and staff attendances instead of manual signing of class register as well as managing payroll based on attendance. The system is also being used by business owners to get sms alert whenever employees checks in and out of the office. There are so many schools using this system and we recommend the same to any school and business. Some of them are JKUAT,Pumwani Hosiptal, Loreto Girls Kiambu,Mandera boys, Kwale boys, Kipsigis girls. Kericho TTC etc.\r\n<br>\r\n\r\n<br>Point of Sale(ROBIPOS) manages sales for any sales related businesses. This system helps business owners to track their daily sales and profit using their phones wherever they are. It has Lipa Na MPESA real time and sms alert. Sms is automatically sends to the computer whenever customer pays through any mobile payment. Also the customer gets automatic thank you message upon payment.\r\nThis system has been integrated with many modules that manages day to day transactions in our client’s business. The system has many functionalities but not limited to the following: Inventory tracking, sales management, customer management, products management, receipting, human resource, accounting module and can real-time Lipa na Mpesa module. \r\nThe sales management system can be used in diverse businesses like wholesales, boutiques, electrical and electronics, minimarts, supermarkets, cosmetic shops, jeweler shops and any retail businesses.\r\nOur POS system helps <br>\r\n? Improve our customer’s experience by serving them in a fast and convenient way<br>\r\n? Management of stock<br>\r\n? Presentable documents such as receipts, orders and reports are issued to customers of our clients.<br>\r\n? Storage and retrieval of documents is made easier<br>\r\n? Accuracy; scanning is more accurate than punching in numbers from a sticker or expecting the cashier to manually remember what each item costs.\r\n? Analysis ;<br>\r\n? POS let our clients manage inventory, flag items for reorder and analyze sales patterns.<br>\r\nBulksms ChapChap is a bulk sms software which can be used to send sms/reminders to customers. It’s the most feasible and essential strategy to target a mass audience as a marketing and communication tool. Whether launching a new product or would like a nationwide announcement, or whether you want to remind people of a certain meeting or deal, our bulk sms manages all the requirements from start to finish. The system can be used by anybody to manage their dairies since you can store all your appointments and activities then system will send you sms whenever that time reaches. \r\nOur bulk sms comes with advantages such as;<br>\r\n? Instant delivery of messages<br>\r\n? Flexible platform that can send over 10,000 sms once<br>\r\n? The systems comes with a reminder to notify one of any pending deals<br>\r\n? Sms can be stored, easily forwarded or tracked using delivery reports<br>\r\n? Lower cost and time to be delivered than a phone call.<br>\r\n? It is more reliable than emailing as the chances of the recipient reading the message is very high<br>\r\n? Limitless market potential<br>\r\nOur clients include;Bulk sms: JKUAT, Elimu TV, Uwezo Fund, Moi forces Academy<br>\r\nBiometric: JKUAT, Orero Boys, Kayole High school<br>\r\nPoint of sale: Luna Park, Victoria Falls, Garrison Teachers College, Ndumia Group<br>\r\nwww.robisearch.com<br>\r\nhttp://www.bulksmschapchap.com/<br>\r\n\r\n\r\n</p>\r\n<p>\r\nFeel free to contact us: <br>\r\n<a href=\"http://www.robisearch.com/\">www.robisearch.com</a> <br>\r\nEmail :info@robisearch.com<br>\r\nPhone: 0780655987<br>\r\nPhone: 0716413386<br>\r\nOur Offices are Nairobi-Nara and Juja town<br>\r\n Experiencing any problem? Send an email to <a href=\"mailto:info@robisearch.com\">info@robisearch.com</a> or <a href=\"mailto:robisearch@gmail.com\">robisearch@gmail.com</a> or follow us on <a href=\"https://www.facebook.com/Robiearch?fref=ts\">Facebook</a> or on <a href=\"https://twitter.com/robisearch\">Twitter.</a> . You can also view more on <a href=\"http://www.robisearch.com/\"> our website</a>\r\n\r\n</p></b>\r\n ','<B> Reseller/Agent Benefits</b>\r\n <br>\r\n1. Earn Commisiions <br>\r\n2. Get best offers <br>\r\n3. Get Incentives <br>\r\n \r\n <B> Reseller/Agent Categories</b>\r\n We pay according to your effort hence it is based on commission.<br>\r\n 1. You will get 10% of what you sell on Monthly basis if you make between 1-5 sales per month.<br>\r\n 2. You will get 20% of what you sell on Monthly basis if you make between 6-20 sales per month.<br>\r\n 3. You will get 30% of what you sell on Monthly basis if you make above 21 sales per month.<br>\r\n','1110','4000','5500','08:00','10:00','no','General',10,'user/viewsales','deactivate','products','D:\\\\xampp\\\\htdocs\\\\ATT2000.mdb','702006','https://pos.wifimatt.com/getpayment','https://pos.wifimatt.com/verifypayment','application/json','UYlkylGuzGjZxpMNz2rmGGYc6N5wslzp','HSGog9FsAchErCLj','From Robisearch LTD','no',2,'yes','no','Both','no','no','3','no','no','no'); /*!40000 ALTER TABLE `smsconfig` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `smslogin` -- DROP TABLE IF EXISTS `smslogin`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `smslogin` ( `id` int(10) NOT NULL, `date` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), `code` varchar(20) NOT NULL, `phone` varchar(20) NOT NULL, `status` varchar(10) NOT NULL DEFAULT 'active', `userid` int(10) NOT NULL, `fromtime` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `totime` datetime NOT NULL, `duration` varchar(20) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `smslogin` -- LOCK TABLES `smslogin` WRITE; /*!40000 ALTER TABLE `smslogin` DISABLE KEYS */; /*!40000 ALTER TABLE `smslogin` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `smstemplate` -- DROP TABLE IF EXISTS `smstemplate`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `smstemplate` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `smstemplate` -- LOCK TABLES `smstemplate` WRITE; /*!40000 ALTER TABLE `smstemplate` DISABLE KEYS */; INSERT INTO `smstemplate` VALUES (1,'Closing Day1','Your daughter has been released for December holiday today.1','2020-04-25 09:20:01am','active','1','','1'),(2,'Opening Day','Your Daughter Has Just Arrived To School ','2019-02-23 10:17:16am','active','1','','1'),(3,'Closing Day','Your daughter has been released for December holiday today.','2018-10-24 05:51:21pm','active','1','','1'),(4,'MIDTERM','Parents/Guardians who came for Thanks Giving day will be allowed to leave with their daughters for half-term, others will leave on 17/02/19.','2023-08-31 06:03:22am','active','1','','1'),(5,'Opening Day','Almost all the students turned up from April Holiday recess','2019-04-30 04:30:08pm','active','1','','1'),(6,'visitor sms','Wow! Thank you for visiting Robisearch LTD table at Mombasa SK Show.For POS,Biometrics,Digital Visitor book and Marketing:0716413386/ robisearch.com\r\n','2023-09-09 04:59:01am','visitor','1','','1'); /*!40000 ALTER TABLE `smstemplate` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `splitbill` -- DROP TABLE IF EXISTS `splitbill`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `splitbill` ( `id` int(30) NOT NULL AUTO_INCREMENT, `type` varchar(30) NOT NULL, `userid` varchar(30) NOT NULL, `dateposted` varchar(50) NOT NULL, `batchid` varchar(50) NOT NULL, `invoice` varchar(30) NOT NULL, `companyid` int(11) NOT NULL, `branchid` int(11) NOT NULL, `batchno` int(11) NOT NULL, `description` text NOT NULL, `salesid` int(11) NOT NULL, `qty` decimal(10,2) DEFAULT NULL, `price` decimal(10,2) DEFAULT NULL, `originalinvoice` varchar(50) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `splitbill` -- LOCK TABLES `splitbill` WRITE; /*!40000 ALTER TABLE `splitbill` DISABLE KEYS */; /*!40000 ALTER TABLE `splitbill` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `splitbillmaster` -- DROP TABLE IF EXISTS `splitbillmaster`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `splitbillmaster` ( `id` int(30) NOT NULL AUTO_INCREMENT, `type` varchar(30) NOT NULL, `userid` varchar(30) NOT NULL, `dateposted` varchar(50) NOT NULL, `invoice` varchar(30) NOT NULL, `companyid` int(11) NOT NULL, `branch` int(11) NOT NULL, `batchno` int(11) NOT NULL, `description` text NOT NULL, `originalinvoice` varchar(50) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `splitbillmaster` -- LOCK TABLES `splitbillmaster` WRITE; /*!40000 ALTER TABLE `splitbillmaster` DISABLE KEYS */; /*!40000 ALTER TABLE `splitbillmaster` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `statement` -- DROP TABLE IF EXISTS `statement`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `statement` ( `id` int(30) NOT NULL AUTO_INCREMENT, `account` varchar(50) NOT NULL, `code` varchar(50) NOT NULL, `invoice` varchar(50) NOT NULL, `crateddate` varchar(30) NOT NULL, `debit` decimal(10,2) NOT NULL, `credit` decimal(10,2) NOT NULL, `balance` varchar(20) NOT NULL, `userid` varchar(20) NOT NULL, `companyid` varchar(20) NOT NULL, `paymentmethodes` varchar(10) NOT NULL, `description` text NOT NULL, `amount` varchar(30) NOT NULL, `branch` varchar(30) NOT NULL, `supplier` varchar(30) NOT NULL, `type` varchar(30) NOT NULL, `refno` varchar(30) NOT NULL, `vatable` varchar(30) NOT NULL, `vat` varchar(30) NOT NULL, `tax` varchar(30) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `statement` -- LOCK TABLES `statement` WRITE; /*!40000 ALTER TABLE `statement` DISABLE KEYS */; INSERT INTO `statement` VALUES (1,'4090','','BANK-11685180658','2023-05-27 12:47:02',0.00,0.00,'','1','1','na','KDB634R','2000000','1','7','','','','',''),(2,'5171','0','11685180857','2023-05-27 12:48:11',0.00,0.00,'','1','1','n/a','KDB634R','6000000','1','','','N/A','0','0','EXEMPTED'),(3,'5250','0','11685447739','2023-05-30 14:55:54',0.00,0.00,'','1','1','n/a','lunch','100','1','','','N/A','0','0','EXEMPTED'),(4,'5520','0','11685447739','2023-05-30 14:55:54',0.00,0.00,'','1','1','n/a','June','1000','1','','','N/A','0','0','EXEMPTED'),(5,'4174','0','11687835385','2023-06-27 06:09:59',0.00,0.00,'','1','1','n/a','EEE','3000','1','6','','N/A','0','0','EXEMPTED'),(6,'4174','0','11691060782','2023-08-03 14:08:47',0.00,0.00,'','1','1','n/a','food','3000','1','','','N/A','0','0','EXEMPTED'),(7,'4172','0','11691060782','2023-08-03 14:08:47',0.00,0.00,'','1','1','n/a','food3','1000','1','','','N/A','0','0','EXEMPTED'),(8,'5510','','BILL-11693464309','2023-08-31 09:46:23',0.00,0.00,'','1','1','','','600','1','6','','N/A','','',''),(9,'4173','0','11693464066','2023-08-31 09:41:42',0.00,0.00,'','1','1','n/a','food','3000','1','','','N/A','0','0','EXEMPTED'),(10,'4172','0','11695783880','2023-09-27 06:04:56',0.00,0.00,'','1','1','n/a','food','1000','1','11','','N/A','0','0','EXEMPTED'),(11,'4174','0','11699411248','2023-11-08 05:41:06',0.00,0.00,'','1','1','n/a','adjustment','3000','1','10','','N/A','0','0','EXEMPTED'),(12,'4165','0','11699411248','2023-11-08 05:41:06',0.00,0.00,'','1','1','n/a','food','400','1','10','','N/A','0','0','EXEMPTED'),(13,'4172','1','11699411248','2023-11-08 05:41:06',0.00,0.00,'','1','1','n/a','food','400','1','10','','N/A','0','0','EXEMPTED'),(14,'5250','12','11699411248','2023-11-08 05:41:06',0.00,0.00,'','1','1','n/a','','44','1','10','','N/A','0','0','EXEMPTED'),(15,'5190','','BILL-11693464309','2023-11-30 06:28:10',0.00,0.00,'','1','1','','test','0','1','6','','N/A','','',''),(16,'5950','','BILL-11693464309','2023-11-30 06:28:18',0.00,0.00,'','1','1','','test','0','1','6','','N/A','','',''); /*!40000 ALTER TABLE `statement` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `status` -- DROP TABLE IF EXISTS `status`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `status` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(45) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `status` -- LOCK TABLES `status` WRITE; /*!40000 ALTER TABLE `status` DISABLE KEYS */; INSERT INTO `status` VALUES (1,'New'),(2,'Waiting Approval'),(3,'Approved'),(4,'Rejected'),(5,'Pending'),(6,'Returned'); /*!40000 ALTER TABLE `status` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `stock` -- DROP TABLE IF EXISTS `stock`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `stock` ( `id` int(11) NOT NULL AUTO_INCREMENT, `code` varchar(50) NOT NULL, `open` decimal(10,2) NOT NULL, `added` decimal(10,2) NOT NULL, `total` decimal(10,2) NOT NULL, `sold` decimal(10,2) NOT NULL, `balance` decimal(10,2) NOT NULL, `price` decimal(10,2) NOT NULL, `totalamount` decimal(10,2) NOT NULL, `branchid` varchar(20) NOT NULL, `type` varchar(30) NOT NULL DEFAULT 'open', `userid` int(30) NOT NULL, `companyid` int(30) NOT NULL, `startdate` varchar(30) NOT NULL, `closedate` varchar(10) NOT NULL, `updatedby` int(10) NOT NULL, `postedtime` varchar(30) NOT NULL, `unsold` varchar(50) NOT NULL, `returned` varchar(30) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=52 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `stock` -- LOCK TABLES `stock` WRITE; /*!40000 ALTER TABLE `stock` DISABLE KEYS */; INSERT INTO `stock` VALUES (1,'51',0.00,0.00,0.00,0.00,0.00,200.00,0.00,'Main','',5,1,'2023-02-26','',0,'18:07:05','',''),(2,'50',0.00,0.00,0.00,0.00,0.00,800.00,0.00,'Main','',5,1,'2023-02-26','',0,'18:07:05','',''),(3,'49',0.00,0.00,0.00,0.00,0.00,10.00,0.00,'Main','',5,1,'2023-02-26','',0,'18:07:05','',''),(4,'48',0.00,0.00,0.00,0.00,0.00,10.00,0.00,'Main','',5,1,'2023-02-26','',0,'18:07:05','',''),(5,'47',0.00,0.00,0.00,0.00,0.00,150.00,0.00,'Main','',5,1,'2023-02-26','',0,'18:07:05','',''),(6,'46',0.00,0.00,0.00,0.00,0.00,150.00,0.00,'Main','',5,1,'2023-02-26','',0,'18:07:05','',''),(7,'45',0.00,0.00,0.00,0.00,0.00,350.00,0.00,'Main','',5,1,'2023-02-26','',0,'18:07:05','',''),(8,'44',0.00,0.00,0.00,0.00,0.00,400.00,0.00,'Main','',5,1,'2023-02-26','',0,'18:07:05','',''),(9,'43',0.00,0.00,0.00,0.00,0.00,600.00,0.00,'Main','',5,1,'2023-02-26','',0,'18:07:05','',''),(10,'42',0.00,0.00,0.00,0.00,0.00,600.00,0.00,'Main','',5,1,'2023-02-26','',0,'18:07:05','',''),(11,'41',0.00,0.00,0.00,0.00,0.00,600.00,0.00,'Main','',5,1,'2023-02-26','',0,'18:07:05','',''),(12,'40',0.00,0.00,0.00,0.00,0.00,600.00,0.00,'Main','',5,1,'2023-02-26','',0,'18:07:05','',''),(13,'39',0.00,0.00,0.00,0.00,0.00,300.00,0.00,'Main','',5,1,'2023-02-26','',0,'18:07:05','',''),(14,'38',0.00,0.00,0.00,0.00,0.00,350.00,0.00,'Main','',5,1,'2023-02-26','',0,'18:07:05','',''),(15,'37',0.00,0.00,0.00,0.00,0.00,400.00,0.00,'Main','',5,1,'2023-02-26','',0,'18:07:05','',''),(16,'36',0.00,0.00,0.00,0.00,0.00,400.00,0.00,'Main','',5,1,'2023-02-26','',0,'18:07:05','',''),(17,'35',0.00,0.00,0.00,0.00,0.00,350.00,0.00,'Main','',5,1,'2023-02-26','',0,'18:07:05','',''),(18,'34',0.00,0.00,0.00,0.00,0.00,300.00,0.00,'Main','',5,1,'2023-02-26','',0,'18:07:05','',''),(19,'33',0.00,0.00,0.00,0.00,0.00,300.00,0.00,'Main','',5,1,'2023-02-26','',0,'18:07:05','',''),(20,'32',0.00,0.00,0.00,0.00,0.00,300.00,0.00,'Main','',5,1,'2023-02-26','',0,'18:07:05','',''),(21,'31',0.00,0.00,0.00,0.00,0.00,200.00,0.00,'Main','',5,1,'2023-02-26','',0,'18:07:05','',''),(22,'30',0.00,0.00,0.00,0.00,0.00,330.00,0.00,'Main','',5,1,'2023-02-26','',0,'18:07:05','',''),(23,'29',0.00,0.00,0.00,0.00,0.00,300.00,0.00,'Main','',5,1,'2023-02-26','',0,'18:07:05','',''),(24,'28',0.00,0.00,0.00,0.00,0.00,300.00,0.00,'Main','',5,1,'2023-02-26','',0,'18:07:05','',''),(25,'27',0.00,0.00,0.00,0.00,0.00,100.00,0.00,'Main','',5,1,'2023-02-26','',0,'18:07:05','',''),(26,'26',0.00,0.00,0.00,0.00,0.00,100.00,0.00,'Main','',5,1,'2023-02-26','',0,'18:07:05','',''),(27,'25',0.00,0.00,0.00,0.00,0.00,100.00,0.00,'Main','',5,1,'2023-02-26','',0,'18:07:05','',''),(28,'24',0.00,0.00,0.00,0.00,0.00,100.00,0.00,'Main','',5,1,'2023-02-26','',0,'18:07:05','',''),(29,'23',0.00,0.00,0.00,0.00,0.00,250.00,0.00,'Main','',5,1,'2023-02-26','',0,'18:07:05','',''),(30,'22',0.00,0.00,0.00,0.00,0.00,250.00,0.00,'Main','',5,1,'2023-02-26','',0,'18:07:05','',''),(31,'21',0.00,0.00,0.00,0.00,0.00,200.00,0.00,'Main','',5,1,'2023-02-26','',0,'18:07:05','',''),(32,'20',0.00,0.00,0.00,0.00,0.00,200.00,0.00,'Main','',5,1,'2023-02-26','',0,'18:07:05','',''),(33,'19',0.00,0.00,0.00,0.00,0.00,200.00,0.00,'Main','',5,1,'2023-02-26','',0,'18:07:05','',''),(34,'18',0.00,0.00,0.00,0.00,0.00,200.00,0.00,'Main','',5,1,'2023-02-26','',0,'18:07:05','',''),(35,'17',0.00,0.00,0.00,0.00,0.00,200.00,0.00,'Main','',5,1,'2023-02-26','',0,'18:07:05','',''),(36,'16',0.00,0.00,0.00,0.00,0.00,200.00,0.00,'Main','',5,1,'2023-02-26','',0,'18:07:05','',''),(37,'15',0.00,0.00,0.00,0.00,0.00,200.00,0.00,'Main','',5,1,'2023-02-26','',0,'18:07:05','',''),(38,'14',0.00,0.00,0.00,0.00,0.00,200.00,0.00,'Main','',5,1,'2023-02-26','',0,'18:07:05','',''),(39,'13',0.00,0.00,0.00,0.00,0.00,250.00,0.00,'Main','',5,1,'2023-02-26','',0,'18:07:05','',''),(40,'12',0.00,0.00,0.00,0.00,0.00,200.00,0.00,'Main','',5,1,'2023-02-26','',0,'18:07:05','',''),(41,'11',0.00,0.00,0.00,0.00,0.00,250.00,0.00,'Main','',5,1,'2023-02-26','',0,'18:07:05','',''),(42,'10',0.00,0.00,0.00,0.00,0.00,150.00,0.00,'Main','',5,1,'2023-02-26','',0,'18:07:05','',''),(43,'9',0.00,0.00,0.00,0.00,0.00,200.00,0.00,'Main','',5,1,'2023-02-26','',0,'18:07:05','',''),(44,'8',0.00,0.00,0.00,0.00,0.00,150.00,0.00,'Main','',5,1,'2023-02-26','',0,'18:07:05','',''),(45,'7',0.00,0.00,0.00,0.00,0.00,200.00,0.00,'Main','',5,1,'2023-02-26','',0,'18:07:05','',''),(46,'6',0.00,0.00,0.00,0.00,0.00,250.00,0.00,'Main','',5,1,'2023-02-26','',0,'18:07:05','',''),(47,'5',0.00,0.00,0.00,0.00,0.00,280.00,0.00,'Main','',5,1,'2023-02-26','',0,'18:07:05','',''),(48,'4',0.00,0.00,0.00,0.00,0.00,150.00,0.00,'Main','',5,1,'2023-02-26','',0,'18:07:05','',''),(49,'3',0.00,0.00,0.00,0.00,0.00,200.00,0.00,'Main','',5,1,'2023-02-26','',0,'18:07:05','',''),(50,'2',0.00,0.00,0.00,0.00,0.00,200.00,0.00,'Main','',5,1,'2023-02-26','',0,'18:07:05','',''),(51,'1',0.00,0.00,0.00,0.00,0.00,250.00,0.00,'Main','',5,1,'2023-02-26','',0,'18:07:05','',''); /*!40000 ALTER TABLE `stock` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `stocktaking` -- DROP TABLE IF EXISTS `stocktaking`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `stocktaking` ( `id` int(10) NOT NULL AUTO_INCREMENT, `code` varchar(50) NOT NULL, `open` decimal(10,2) NOT NULL, `added` decimal(10,2) NOT NULL, `balance` decimal(10,2) NOT NULL, `branchid` int(10) NOT NULL, `type` varchar(30) NOT NULL DEFAULT 'open', `userid` int(30) NOT NULL, `companyid` int(30) NOT NULL, `startdate` varchar(30) NOT NULL, `closedate` varchar(10) NOT NULL, `updatedby` int(10) NOT NULL, `postedtime` varchar(30) NOT NULL, `status` varchar(10) NOT NULL DEFAULT 'open', `maincategory` int(11) NOT NULL, `description` text NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `code` (`code`,`branchid`,`startdate`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `stocktaking` -- LOCK TABLES `stocktaking` WRITE; /*!40000 ALTER TABLE `stocktaking` DISABLE KEYS */; /*!40000 ALTER TABLE `stocktaking` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `stocktakingstatus` -- DROP TABLE IF EXISTS `stocktakingstatus`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `stocktakingstatus` ( `id` int(30) NOT NULL AUTO_INCREMENT, `userid` varchar(30) NOT NULL, `timedone` varchar(50) NOT NULL, `ip` text NOT NULL, `companyid` int(11) NOT NULL, `startdate` date NOT NULL, `closedate` date NOT NULL, `updatedby` int(11) NOT NULL, `status` varchar(20) NOT NULL DEFAULT 'open', `maincategory` int(11) NOT NULL, `level` varchar(20) NOT NULL DEFAULT 'one', `type` varchar(20) NOT NULL DEFAULT 'branch', `branchid` int(5) NOT NULL DEFAULT 1, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `stocktakingstatus` -- LOCK TABLES `stocktakingstatus` WRITE; /*!40000 ALTER TABLE `stocktakingstatus` DISABLE KEYS */; /*!40000 ALTER TABLE `stocktakingstatus` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `store` -- DROP TABLE IF EXISTS `store`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `store` ( `id` int(30) NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `category` varchar(50) NOT NULL, `supplier` varchar(50) DEFAULT NULL, `code` varchar(255) DEFAULT NULL, `description` varchar(255) NOT NULL, `tax_included` int(1) NOT NULL DEFAULT 0, `buyingprice` varchar(50) NOT NULL, `sellingprice` varchar(50) NOT NULL DEFAULT '0.00', `promoprice` varchar(50) DEFAULT NULL, `wholesaleprice` varchar(50) NOT NULL, `start_date` date DEFAULT NULL, `end_date` date DEFAULT NULL, `reorderevel` int(50) DEFAULT NULL, `allow_alt_description` tinyint(1) NOT NULL, `is_serialized` tinyint(1) NOT NULL, `imgid` varchar(255) DEFAULT NULL, `override_default_tax` int(1) NOT NULL DEFAULT 0, `is_service` int(1) NOT NULL DEFAULT 0, `deleted` int(1) NOT NULL DEFAULT 0, `qty` varchar(50) NOT NULL, `dateposted` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `store` varchar(50) NOT NULL, `expdate` varchar(50) NOT NULL, `orderamount` text NOT NULL, `shortname` varchar(50) NOT NULL, `status` varchar(30) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `item_number` (`code`), KEY `phppos_items_ibfk_1` (`supplier`), KEY `name` (`name`), KEY `deleted` (`deleted`), KEY `phppos_items_ibfk_2` (`imgid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `store` -- LOCK TABLES `store` WRITE; /*!40000 ALTER TABLE `store` DISABLE KEYS */; /*!40000 ALTER TABLE `store` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `subcategory` -- DROP TABLE IF EXISTS `subcategory`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `subcategory` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `maincategory` varchar(30) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `subcategory` -- LOCK TABLES `subcategory` WRITE; /*!40000 ALTER TABLE `subcategory` DISABLE KEYS */; /*!40000 ALTER TABLE `subcategory` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `suggestions` -- DROP TABLE IF EXISTS `suggestions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `suggestions` ( `id` int(50) NOT NULL AUTO_INCREMENT, `title` varchar(60) NOT NULL, `description` text NOT NULL, `postedtime` varchar(60) NOT NULL, `userid` varchar(60) NOT NULL, `img_id` varchar(60) NOT NULL, `updatedtime` varchar(40) NOT NULL, `status` varchar(40) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `suggestions` -- LOCK TABLES `suggestions` WRITE; /*!40000 ALTER TABLE `suggestions` DISABLE KEYS */; INSERT INTO `suggestions` VALUES (1,'POS','best','2019-07-12 05:44:51am','1','','','active'); /*!40000 ALTER TABLE `suggestions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `supervisor` -- DROP TABLE IF EXISTS `supervisor`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `supervisor` ( `id` int(30) NOT NULL AUTO_INCREMENT, `title` varchar(30) NOT NULL, `department` varchar(50) NOT NULL, `startdate` varchar(30) NOT NULL, `enddate` varchar(30) NOT NULL, `description` text NOT NULL, `employeeno` int(30) NOT NULL, `createdate` varchar(30) NOT NULL, `userid` int(30) NOT NULL, `status` varchar(30) NOT NULL DEFAULT 'active', `companyid` int(11) NOT NULL DEFAULT 1, `branchid` int(11) NOT NULL DEFAULT 1, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `supervisor` -- LOCK TABLES `supervisor` WRITE; /*!40000 ALTER TABLE `supervisor` DISABLE KEYS */; INSERT INTO `supervisor` VALUES (1,'1','1','2023-05-27','2023-05-27','',1,'2023-05-27 01:28:10pm',1,'active',1,1); /*!40000 ALTER TABLE `supervisor` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tables` -- DROP TABLE IF EXISTS `tables`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `tables` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `branchid` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tables` -- LOCK TABLES `tables` WRITE; /*!40000 ALTER TABLE `tables` DISABLE KEYS */; INSERT INTO `tables` VALUES (3,'LANGAS','','2023-09-18 10:33:29','active','1','','1',1),(4,'HURUMA','','2023-09-18 10:33:41','active','1','','1',1),(5,'BEACH ROUTE ','','2023-09-22 10:52:38','active','1','','1',1),(6,'KWALE ROUTE','','2023-09-22 10:52:57','active','1','','1',1); /*!40000 ALTER TABLE `tables` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tags` -- DROP TABLE IF EXISTS `tags`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `tags` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `slug` varchar(255) NOT NULL, `name` varchar(255) NOT NULL, `meta_keyword` text NOT NULL, `meta_description` text NOT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tags` -- LOCK TABLES `tags` WRITE; /*!40000 ALTER TABLE `tags` DISABLE KEYS */; /*!40000 ALTER TABLE `tags` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `taskdata` -- DROP TABLE IF EXISTS `taskdata`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `taskdata` ( `id` int(30) NOT NULL AUTO_INCREMENT, `description` text DEFAULT NULL, `date` varchar(50) NOT NULL, `taskid` varchar(50) DEFAULT NULL, `userid` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'Submitted', `companyid` varchar(100) NOT NULL, `challanges` text NOT NULL, `recommendation` text NOT NULL, `updatedby` int(11) NOT NULL, `comments` text NOT NULL, `updateddate` varchar(30) NOT NULL, `mykey` varchar(50) DEFAULT NULL, `exactdate` varchar(20) NOT NULL, `branchid` int(11) NOT NULL, `achieved` varchar(30) NOT NULL, `updatedat` varchar(30) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `taskdata` -- LOCK TABLES `taskdata` WRITE; /*!40000 ALTER TABLE `taskdata` DISABLE KEYS */; /*!40000 ALTER TABLE `taskdata` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tasks` -- DROP TABLE IF EXISTS `tasks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `tasks` ( `id` int(30) NOT NULL AUTO_INCREMENT, `taskowner` varchar(100) NOT NULL, `subject` text NOT NULL, `fromdate` varchar(100) NOT NULL, `todate` varchar(100) NOT NULL, `contact` text NOT NULL, `status` varchar(100) NOT NULL, `controller` varchar(100) NOT NULL, `priority` text NOT NULL, `notification` varchar(100) NOT NULL DEFAULT 'yes', `repeated` varchar(100) NOT NULL DEFAULT 'no', `comments` text DEFAULT NULL, `dateposted` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `category` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `branchid` int(11) NOT NULL, `updatedat` varchar(30) NOT NULL, `updatedby` int(11) NOT NULL, `measurements` varchar(30) NOT NULL DEFAULT 'Pc', `target` varchar(30) NOT NULL, `achived` varchar(30) NOT NULL, `exactdate` varchar(30) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tasks` -- LOCK TABLES `tasks` WRITE; /*!40000 ALTER TABLE `tasks` DISABLE KEYS */; /*!40000 ALTER TABLE `tasks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tasktype` -- DROP TABLE IF EXISTS `tasktype`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `tasktype` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `mode` varchar(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tasktype` -- LOCK TABLES `tasktype` WRITE; /*!40000 ALTER TABLE `tasktype` DISABLE KEYS */; /*!40000 ALTER TABLE `tasktype` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `taskupdates` -- DROP TABLE IF EXISTS `taskupdates`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `taskupdates` ( `id` int(50) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `date` varchar(50) NOT NULL, `nextstep` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'newstock', `type` text NOT NULL, `companyid` varchar(100) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `taskupdates` -- LOCK TABLES `taskupdates` WRITE; /*!40000 ALTER TABLE `taskupdates` DISABLE KEYS */; /*!40000 ALTER TABLE `taskupdates` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tillcollection` -- DROP TABLE IF EXISTS `tillcollection`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `tillcollection` ( `id` int(11) NOT NULL AUTO_INCREMENT, `dateposted` varchar(100) NOT NULL, `addedby` int(100) NOT NULL, `approvedby` int(30) NOT NULL, `amount` decimal(10,2) NOT NULL, `description` text NOT NULL, `userid` int(20) NOT NULL, `companyid` int(20) NOT NULL, `branch` int(11) NOT NULL, `collecteddate` varchar(30) NOT NULL, `short` decimal(10,2) NOT NULL, `mode` varchar(20) NOT NULL, `status` varchar(20) NOT NULL DEFAULT 'Submitted', `remarks` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tillcollection` -- LOCK TABLES `tillcollection` WRITE; /*!40000 ALTER TABLE `tillcollection` DISABLE KEYS */; /*!40000 ALTER TABLE `tillcollection` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tills` -- DROP TABLE IF EXISTS `tills`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `tills` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `branchid` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tills` -- LOCK TABLES `tills` WRITE; /*!40000 ALTER TABLE `tills` DISABLE KEYS */; /*!40000 ALTER TABLE `tills` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `timer` -- DROP TABLE IF EXISTS `timer`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `timer` ( `id` int(11) NOT NULL AUTO_INCREMENT, `startdate` varchar(30) NOT NULL, `enddate` varchar(50) NOT NULL, `amount` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `createdat` varchar(50) NOT NULL, `userid` varchar(50) NOT NULL, `companyid` varchar(50) NOT NULL, `hour` varchar(50) NOT NULL, `station` varchar(20) NOT NULL, `description` text NOT NULL, `product` varchar(50) NOT NULL, `unit` varchar(20) NOT NULL, `duration` varchar(50) DEFAULT NULL, `customer` varchar(50) NOT NULL, `invoice` varchar(50) DEFAULT NULL, `branchid` int(11) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `invoice` (`invoice`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `timer` -- LOCK TABLES `timer` WRITE; /*!40000 ALTER TABLE `timer` DISABLE KEYS */; /*!40000 ALTER TABLE `timer` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `towns` -- DROP TABLE IF EXISTS `towns`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `towns` ( `id` int(20) NOT NULL, `code` varchar(40) NOT NULL, `name` varchar(255) DEFAULT NULL, `description` text DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `towns` -- LOCK TABLES `towns` WRITE; /*!40000 ALTER TABLE `towns` DISABLE KEYS */; INSERT INTO `towns` VALUES (1,'1','Central','Central','0000-00-00 00:00:00','0000-00-00 00:00:00'),(2,'2','Coast','Coast','0000-00-00 00:00:00','0000-00-00 00:00:00'),(3,'3','Eastern','Eastern','0000-00-00 00:00:00','0000-00-00 00:00:00'),(4,'4','Nairobi','Nairobi','0000-00-00 00:00:00','0000-00-00 00:00:00'),(5,'5','North Eastern','North Eastern','0000-00-00 00:00:00','0000-00-00 00:00:00'),(6,'6','Nyanza','Nyanza','0000-00-00 00:00:00','0000-00-00 00:00:00'),(7,'7','Rift valley','Rift valley','0000-00-00 00:00:00','0000-00-00 00:00:00'),(8,'8','Western','Western','0000-00-00 00:00:00','0000-00-00 00:00:00'); /*!40000 ALTER TABLE `towns` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `traffic` -- DROP TABLE IF EXISTS `traffic`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `traffic` ( `id` int(11) NOT NULL AUTO_INCREMENT, `postedtime` varchar(30) NOT NULL, `link` text NOT NULL, `ip` varchar(50) NOT NULL, `description` text DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `traffic` -- LOCK TABLES `traffic` WRITE; /*!40000 ALTER TABLE `traffic` DISABLE KEYS */; INSERT INTO `traffic` VALUES (1,'2023-08-31 05:45:08am','About Us','127.0.0.1',''),(2,'2023-09-09 04:57:01am','About Us','127.0.0.1',''),(3,'2023-09-09 04:57:04am','About Us','127.0.0.1',''),(4,'2023-09-09 04:57:39am','About Us','127.0.0.1',''),(5,'2023-11-02 17:22:41pm','About Us','127.0.0.1',''),(6,'2023-11-02 17:22:46pm','About Us','127.0.0.1',''),(7,'2023-11-30 10:11:25am','About Us','127.0.0.1',''),(8,'2023-12-01 04:35:39am','About Us','127.0.0.1',''),(9,'2024-02-25 02:10:04am','About Us','101.44.250.233',''),(10,'2024-02-25 02:32:17am','About Us','101.44.251.55',''),(11,'2024-07-28 05:02:01am','About Us','52.167.144.173',''),(12,'2024-07-29 21:47:20pm','About Us','173.252.83.21',''),(13,'2024-07-31 14:15:39pm','About Us','173.252.87.114',''),(14,'2024-09-20 23:14:15pm','About Us','52.167.144.233',''),(15,'2024-11-26 03:54:49am','About Us','157.55.39.196',''),(16,'2024-12-07 18:01:17pm','About Us','57.141.0.18',''),(17,'2024-12-20 18:30:12pm','About Us','57.141.0.1',''),(18,'2025-02-12 02:19:10am','About Us','57.141.0.15',''),(19,'2025-02-13 23:39:39pm','About Us','57.141.0.7',''),(20,'2025-02-18 20:47:31pm','About Us','57.141.0.27',''); /*!40000 ALTER TABLE `traffic` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `types` -- DROP TABLE IF EXISTS `types`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `types` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `types` -- LOCK TABLES `types` WRITE; /*!40000 ALTER TABLE `types` DISABLE KEYS */; /*!40000 ALTER TABLE `types` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `uom` -- DROP TABLE IF EXISTS `uom`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `uom` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `description` text NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `code` varchar(30) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `uom` -- LOCK TABLES `uom` WRITE; /*!40000 ALTER TABLE `uom` DISABLE KEYS */; INSERT INTO `uom` VALUES (1,'Piece','pc','2020-06-22 06:18:43','active','1','','1','pcs'),(2,'No Units','No Units','2018-03-29 06:40:47am','active','1','','1','NOU'),(3,'Dozen','Dozen','2018-03-29 06:42:29am','active','1','','1','dz'),(4,'Bar','Bar','2018-03-29 06:43:15am','active','1','','1','BR'),(5,'Packets','Packets','2018-03-29 06:36:08am','active','1','','1','pcks'),(6,'Kilograms','Kilograms','2018-03-29 07:14:40am','active','1','','1','Kg'),(7,'Litre','Litre','2018-03-29 07:14:57am','active','1','','1','ltr'),(8,'Half ','hlf','2018-03-30 12:34:29pm','active','1','','1','hlf'),(9,'sheet','','2018-03-30 12:35:21pm','active','1','','1','sht'),(10,'Bale','','2018-03-30 12:40:40pm','active','1','','1','BL'),(11,'Box','','2018-03-30 12:40:58pm','active','1','','1','bx'),(12,'full','','2018-08-04 11:35:29am','active','1','','1','full'),(13,'refill','','2018-08-04 11:36:06am','active','1','','1','ref'),(14,'1/4','','2018-11-20 09:14:48','active','1','','1','16'),(15,'Feet','','2020-06-09 10:21:14','active','1','','1','ft'),(16,'PIPES','','2020-06-09 19:12:05','active','1','','1','PIPES'),(17,'Monthly','','2020-06-26 07:19:19','active','1','','1','Monthly'),(18,'Daily','','2020-06-26 07:19:31','active','1','','1','Daily'),(19,'Weekly','','2020-06-26 07:19:44','active','1','','1','Weekly'),(20,'Yearly','','2020-06-26 07:19:56','active','1','','1','Yearly'); /*!40000 ALTER TABLE `uom` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `uomproducts` -- DROP TABLE IF EXISTS `uomproducts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `uomproducts` ( `id` int(11) NOT NULL AUTO_INCREMENT, `uom` varchar(50) NOT NULL, `createdate` varchar(50) NOT NULL, `status` varchar(50) NOT NULL DEFAULT 'active', `userid` varchar(50) NOT NULL, `updatedate` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `code` varchar(30) NOT NULL, `branch` varchar(30) NOT NULL, `qty` decimal(10,4) NOT NULL, `price` varchar(30) NOT NULL, `brice` varchar(30) NOT NULL, `unitprice` varchar(20) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `uomproducts` -- LOCK TABLES `uomproducts` WRITE; /*!40000 ALTER TABLE `uomproducts` DISABLE KEYS */; INSERT INTO `uomproducts` VALUES (2,'2','2023-05-30 15:24:18','child','1','','1','3','1',5.0000,'','20',''),(4,'full','2023-11-07 05:51:55','active','1','','1','3','1',1000.0000,'30000','10000',''),(6,'6161101661423','2023-11-07 05:52:45','child','1','','1','3','1',3.0000,'90','30',''),(7,'2','2023-11-07 05:52:55','child','1','','1','3','1',100.0000,'3000','1000',''),(8,'1','2023-11-07 08:04:02','child','1','','1','4','1',1.0000,'50','20',''),(9,'2','2023-11-07 08:04:10','child','1','','1','4','1',2.0000,'100','40',''),(10,'1','2023-11-07 08:36:11','child','1','','1','5','1',1.0000,'','40',''),(11,'2','2023-11-07 08:36:19','child','1','','1','5','1',1.0000,'','200',''); /*!40000 ALTER TABLE `uomproducts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `upgrade` -- DROP TABLE IF EXISTS `upgrade`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `upgrade` ( `id` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(45) DEFAULT NULL, `companyid` int(11) NOT NULL DEFAULT 1, `description` text NOT NULL, `version` varchar(50) NOT NULL, `package` varchar(50) NOT NULL, `exactdate` varchar(50) NOT NULL, `status` varchar(30) NOT NULL DEFAULT 'active', `userid` int(10) DEFAULT NULL, `entrydate` varchar(30) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `upgrade` -- LOCK TABLES `upgrade` WRITE; /*!40000 ALTER TABLE `upgrade` DISABLE KEYS */; /*!40000 ALTER TABLE `upgrade` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `utilityinvoice` -- DROP TABLE IF EXISTS `utilityinvoice`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `utilityinvoice` ( `id` int(40) NOT NULL AUTO_INCREMENT, `plotno` varchar(60) NOT NULL, `houseno` varchar(40) NOT NULL, `tenantid` varchar(100) NOT NULL, `amount` varchar(100) NOT NULL, `type` varchar(100) NOT NULL, `description` varchar(100) NOT NULL, `month` varchar(100) NOT NULL, `year` varchar(100) NOT NULL, `createdat` varchar(100) NOT NULL, `updatedat` varchar(100) NOT NULL, `userid` varchar(100) NOT NULL, `duedate` varchar(40) NOT NULL, `paymentstatus` varchar(40) NOT NULL DEFAULT 'receipt', `paymentmode` varchar(40) NOT NULL, `paymentcode` varchar(100) NOT NULL, `transactioncode` varchar(100) NOT NULL, `approval` varchar(30) NOT NULL DEFAULT 'new', `paid` varchar(40) NOT NULL, `balance` varchar(40) NOT NULL DEFAULT '0', `companyid` varchar(100) NOT NULL DEFAULT '1', `commission` decimal(10,2) NOT NULL, `vat` decimal(10,2) NOT NULL, `paymentdate` varchar(30) NOT NULL, `branchid` int(11) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `utilityinvoice` -- LOCK TABLES `utilityinvoice` WRITE; /*!40000 ALTER TABLE `utilityinvoice` DISABLE KEYS */; /*!40000 ALTER TABLE `utilityinvoice` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `voucher` -- DROP TABLE IF EXISTS `voucher`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8mb4 */; CREATE TABLE `voucher` ( `id` int(30) NOT NULL AUTO_INCREMENT, `value` decimal(10,2) NOT NULL, `customer` varchar(100) DEFAULT NULL, `deleted` int(1) NOT NULL DEFAULT 0, `status` varchar(50) NOT NULL, `description` text NOT NULL, `userid` varchar(50) NOT NULL, `dateposted` varchar(50) NOT NULL, `dateupdated` varchar(50) NOT NULL, `companyid` varchar(100) NOT NULL, `cardnumber` varchar(100) NOT NULL, `type` varchar(30) NOT NULL, `branchid` int(11) NOT NULL, `amount` decimal(10,2) NOT NULL, `mode` varchar(30) NOT NULL, `invoice` varchar(30) NOT NULL, `originalamount` decimal(10,2) NOT NULL, `fromdate` varchar(20) DEFAULT NULL, `business` text NOT NULL, `todate` varchar(30) DEFAULT NULL, PRIMARY KEY (`id`), KEY `deleted` (`deleted`), KEY `phppos_giftcards_ibfk_1` (`customer`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `voucher` -- LOCK TABLES `voucher` WRITE; /*!40000 ALTER TABLE `voucher` DISABLE KEYS */; /*!40000 ALTER TABLE `voucher` 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-06-30 18:19:26
.
Edit
..
Edit
information_schema.sql
Edit
mysql.sql
Edit
performance_schema.sql
Edit
robisear_017lounge.sql
Edit
robisear_15minutes.sql
Edit
robisear_1865pubcoltd.sql
Edit
robisear_64jos.sql
Edit
robisear_727barandrestaurant.sql
Edit
robisear_ELKTONS.sql
Edit
robisear_Kencityhealth.sql
Edit
robisear_a3autocare.sql
Edit
robisear_abbeyslacewig.sql
Edit
robisear_aberdare.sql
Edit
robisear_abic.sql
Edit
robisear_abnpharmaceuticals.sql
Edit
robisear_accommodation.sql
Edit
robisear_aceliquor.sql
Edit
robisear_adamssupermarket.sql
Edit
robisear_adcentcomputers.sql
Edit
robisear_adval.sql
Edit
robisear_africaexpress.sql
Edit
robisear_africanfabric.sql
Edit
robisear_afrisco.sql
Edit
robisear_afrovision.sql
Edit
robisear_agriassistltd.sql
Edit
robisear_ahel.sql
Edit
robisear_airworks.sql
Edit
robisear_ajanihouse.sql
Edit
robisear_akshar.sql
Edit
robisear_akshar2.sql
Edit
robisear_akshar3.sql
Edit
robisear_alaphamega.sql
Edit
robisear_alasfourcosmetics.sql
Edit
robisear_aldeon.sql
Edit
robisear_alibern.sql
Edit
robisear_alj.sql
Edit
robisear_aljpos.sql
Edit
robisear_allmeds.sql
Edit
robisear_alma.sql
Edit
robisear_amaniangani.sql
Edit
robisear_amat.sql
Edit
robisear_ambalu.sql
Edit
robisear_ambasagrill.sql
Edit
robisear_ambokililimited.sql
Edit
robisear_amsol.sql
Edit
robisear_amzkanzu.sql
Edit
robisear_anandamarga.sql
Edit
robisear_anchorlounge.sql
Edit
robisear_annexchefwest.sql
Edit
robisear_annexm2.sql
Edit
robisear_anujhardware.sql
Edit
robisear_apollostar.sql
Edit
robisear_approtechtech.sql
Edit
robisear_arkam.sql
Edit
robisear_aryelegant.sql
Edit
robisear_arziki.sql
Edit
robisear_asbedpharmaceuticalslimited.sql
Edit
robisear_asterhealth.sql
Edit
robisear_atlas.sql
Edit
robisear_automaxx.sql
Edit
robisear_automotivedoctor.sql
Edit
robisear_avichem.sql
Edit
robisear_baberian.sql
Edit
robisear_babygarden.sql
Edit
robisear_babygarden2.sql
Edit
robisear_babygarden3.sql
Edit
robisear_backazzlounge.sql
Edit
robisear_badi.sql
Edit
robisear_bantuliquor.sql
Edit
robisear_barakastores.sql
Edit
robisear_barbecuexpress.sql
Edit
robisear_barbecuexpress2.sql
Edit
robisear_bargalcollection.sql
Edit
robisear_basdeliveryservices.sql
Edit
robisear_basewines.sql
Edit
robisear_batasportsclub.sql
Edit
robisear_baylandcafe.sql
Edit
robisear_bbcfarm.sql
Edit
robisear_bboutique.sql
Edit
robisear_beautybyimani.sql
Edit
robisear_beautypoint.sql
Edit
robisear_beautypointcollege.sql
Edit
robisear_becap.sql
Edit
robisear_beco.sql
Edit
robisear_benan.sql
Edit
robisear_benan2.sql
Edit
robisear_benjakab.sql
Edit
robisear_bensare.sql
Edit
robisear_beshel.sql
Edit
robisear_bestbudget.sql
Edit
robisear_besterp.sql
Edit
robisear_betafoods.sql
Edit
robisear_beyahbix.sql
Edit
robisear_beyondsweetness.sql
Edit
robisear_bigbox.sql
Edit
robisear_bigtech.sql
Edit
robisear_bijou.sql
Edit
robisear_bijouhotel.sql
Edit
robisear_bikebrigades.sql
Edit
robisear_blackplatinum.sql
Edit
robisear_blixen.sql
Edit
robisear_bluechipaviation.sql
Edit
robisear_boba.sql
Edit
robisear_bodegajamhuri.sql
Edit
robisear_bodegasyokimau.sql
Edit
robisear_bodegathome.sql
Edit
robisear_bostonhousehold.sql
Edit
robisear_bostonhousehold2.sql
Edit
robisear_botanical.sql
Edit
robisear_boxlight.sql
Edit
robisear_bpackagng.sql
Edit
robisear_braeburnclub.sql
Edit
robisear_braeburnclub1.sql
Edit
robisear_brandgate.sql
Edit
robisear_brickmann.sql
Edit
robisear_bridgebarrel.sql
Edit
robisear_brighton.sql
Edit
robisear_brightonpms.sql
Edit
robisear_brimat.sql
Edit
robisear_brimatholdings.sql
Edit
robisear_brimatholdings1.sql
Edit
robisear_brimix.sql
Edit
robisear_brimix2.sql
Edit
robisear_brimix3.sql
Edit
robisear_brownbox.sql
Edit
robisear_bsikenya.sql
Edit
robisear_btl.sql
Edit
robisear_bulwark.sql
Edit
robisear_bumalogisticsk.sql
Edit
robisear_bumanestlimited.sql
Edit
robisear_buneei.sql
Edit
robisear_burgers.sql
Edit
robisear_burgosstreet.sql
Edit
robisear_buydirect.sql
Edit
robisear_bvblounge.sql
Edit
robisear_c7fashion.sql
Edit
robisear_caffebora.sql
Edit
robisear_cambridge.sql
Edit
robisear_camino.sql
Edit
robisear_campzodiakafrica.sql
Edit
robisear_canaan.sql
Edit
robisear_canvasartshopltd.sql
Edit
robisear_canvasshoes.sql
Edit
robisear_carlizpaints.sql
Edit
robisear_casadimoda.sql
Edit
robisear_ccb.sql
Edit
robisear_ceeboylounge.sql
Edit
robisear_cellpro.sql
Edit
robisear_cellpro1.sql
Edit
robisear_celticlounge.sql
Edit
robisear_centurion.sql
Edit
robisear_chanaanafeeds.sql
Edit
robisear_chanaanagrovet.sql
Edit
robisear_chanaanfeeds.sql
Edit
robisear_chazaqsteel.sql
Edit
robisear_chedusystems.sql
Edit
robisear_cheflink.sql
Edit
robisear_chegowagon.sql
Edit
robisear_chemaliquor.sql
Edit
robisear_cherotebistro.sql
Edit
robisear_chesmapauto.sql
Edit
robisear_chibekellimited.sql
Edit
robisear_chickencenter.sql
Edit
robisear_chipsfix.sql
Edit
robisear_chocolatecity.sql
Edit
robisear_chrisapartment.sql
Edit
robisear_chrivebeauty.sql
Edit
robisear_church.sql
Edit
robisear_citadel.sql
Edit
robisear_citamclaycity.sql
Edit
robisear_claritycounseling.sql
Edit
robisear_cliqour.sql
Edit
robisear_cliquor.sql
Edit
robisear_comfortride.sql
Edit
robisear_concepts.sql
Edit
robisear_conceptsmartdecor.sql
Edit
robisear_copticrestaurant.sql
Edit
robisear_copticrestaurantnigeria.sql
Edit
robisear_coseke.sql
Edit
robisear_countyhotels.sql
Edit
robisear_cpk.sql
Edit
robisear_craftnliquor.sql
Edit
robisear_crystalpearl.sql
Edit
robisear_crystalshea.sql
Edit
robisear_dadasiventures.sql
Edit
robisear_dadir.sql
Edit
robisear_dailycharges.sql
Edit
robisear_daisyflower.sql
Edit
robisear_dallad.sql
Edit
robisear_dallad2.sql
Edit
robisear_dallad3.sql
Edit
robisear_damaline.sql
Edit
robisear_danga.sql
Edit
robisear_danga1.sql
Edit
robisear_darirose.sql
Edit
robisear_davetis.sql
Edit
robisear_dawacom.sql
Edit
robisear_dawapay.sql
Edit
robisear_degrasi.sql
Edit
robisear_delaroza.sql
Edit
robisear_demerger.sql
Edit
robisear_dencity.sql
Edit
robisear_dencity1.sql
Edit
robisear_dencity2.sql
Edit
robisear_dencity3.sql
Edit
robisear_denfatechnologies.sql
Edit
robisear_denkar.sql
Edit
robisear_denohenterprises.sql
Edit
robisear_desleyholdings.sql
Edit
robisear_desmanjo.sql
Edit
robisear_destiny.sql
Edit
robisear_desun.sql
Edit
robisear_detoxhealthspa.sql
Edit
robisear_devach.sql
Edit
robisear_devach2.sql
Edit
robisear_devach3.sql
Edit
robisear_diasporadivas.sql
Edit
robisear_digicafess.sql
Edit
robisear_digitalsuggestionbox.sql
Edit
robisear_dimetrica.sql
Edit
robisear_distinctiongardens.sql
Edit
robisear_distinctiongardens1.sql
Edit
robisear_dlliquorstores.sql
Edit
robisear_dndkenya.sql
Edit
robisear_doladen.sql
Edit
robisear_dollarbakers.sql
Edit
robisear_doubleolounge.sql
Edit
robisear_downtowntavern.sql
Edit
robisear_drn.sql
Edit
robisear_duraroof.sql
Edit
robisear_duraxpaints.sql
Edit
robisear_duwanclassic.sql
Edit
robisear_easysmart.sql
Edit
robisear_ebakaltd.sql
Edit
robisear_ecovest.sql
Edit
robisear_education.sql
Edit
robisear_effectivehardware.sql
Edit
robisear_electratech.sql
Edit
robisear_electrika.sql
Edit
robisear_elightpaths.sql
Edit
robisear_elisapowersystems.sql
Edit
robisear_elishammah.sql
Edit
robisear_elishammah2.sql
Edit
robisear_elishammahgarissa.sql
Edit
robisear_elishammahmatu.sql
Edit
robisear_elishammahmotorbike.sql
Edit
robisear_elishammahtaita.sql
Edit
robisear_eluktomhealthcare.sql
Edit
robisear_empower.sql
Edit
robisear_enacoach.sql
Edit
robisear_enacoachltd.sql
Edit
robisear_enjoyessenceltd.sql
Edit
robisear_enterprise.sql
Edit
robisear_enziapartment.sql
Edit
robisear_epicraftstudios.sql
Edit
robisear_erpuganda.sql
Edit
robisear_essentials.sql
Edit
robisear_evana.sql
Edit
robisear_evehilaryson.sql
Edit
robisear_events.sql
Edit
robisear_everbeautycosmetic.sql
Edit
robisear_evertipstop.sql
Edit
robisear_exxochem.sql
Edit
robisear_fabricske.sql
Edit
robisear_fabys.sql
Edit
robisear_fairwayhotel.sql
Edit
robisear_faithbase.sql
Edit
robisear_fajviyafrica.sql
Edit
robisear_fallingmooninvestments.sql
Edit
robisear_famo.sql
Edit
robisear_farmerspice.sql
Edit
robisear_farmerssolution.sql
Edit
robisear_farmlineagencies.sql
Edit
robisear_feast.sql
Edit
robisear_feedandfodder.sql
Edit
robisear_felizplace.sql
Edit
robisear_fermar.sql
Edit
robisear_fifi.sql
Edit
robisear_fishlands.sql
Edit
robisear_fitpharma.sql
Edit
robisear_flamebites.sql
Edit
robisear_flitoz.sql
Edit
robisear_flitozwines.sql
Edit
robisear_foresightmotors.sql
Edit
robisear_formulatorsdepotltd.sql
Edit
robisear_fortyplace.sql
Edit
robisear_franciscanfamily.sql
Edit
robisear_freemark.sql
Edit
robisear_frepego.sql
Edit
robisear_fretap.sql
Edit
robisear_friendssupermarket.sql
Edit
robisear_friendssupermarket1.sql
Edit
robisear_friendssupermarketmaji.sql
Edit
robisear_gabrielrotich.sql
Edit
robisear_gambella.sql
Edit
robisear_gambella2.sql
Edit
robisear_gambella3.sql
Edit
robisear_gathee.sql
Edit
robisear_gecko.sql
Edit
robisear_gemini.sql
Edit
robisear_generations.sql
Edit
robisear_gesa.sql
Edit
robisear_gigstores.sql
Edit
robisear_gilgameshltd.sql
Edit
robisear_githungurifoods.sql
Edit
robisear_githungurinationaloil.sql
Edit
robisear_glasstechandinteriors.sql
Edit
robisear_glowskin.sql
Edit
robisear_goldenspill.sql
Edit
robisear_goldenstandardscafe.sql
Edit
robisear_goldenstandardscafe1.sql
Edit
robisear_goldrock.sql
Edit
robisear_goldrock1.sql
Edit
robisear_goodlife.sql
Edit
robisear_gosavannah.sql
Edit
robisear_goshen.sql
Edit
robisear_grandcrinumltd1.sql
Edit
robisear_grandcrinumltdwestlands.sql
Edit
robisear_grandpa.sql
Edit
robisear_greatplan.sql
Edit
robisear_greekliquor.sql
Edit
robisear_greensavannah.sql
Edit
robisear_hadaelectrical.sql
Edit
robisear_hadassah.sql
Edit
robisear_hagon.sql
Edit
robisear_hairmasters.sql
Edit
robisear_halfmanlounge.sql
Edit
robisear_harmony.sql
Edit
robisear_hawest.sql
Edit
robisear_hawest2.sql
Edit
robisear_hawest3.sql
Edit
robisear_healsandvibes.sql
Edit
robisear_heavenssquare.sql
Edit
robisear_heywoodenterprises.sql
Edit
robisear_heywoodenterprises1.sql
Edit
robisear_hideaway.sql
Edit
robisear_homeessentialschoko.sql
Edit
robisear_homegoods.sql
Edit
robisear_homeland.sql
Edit
robisear_hoodwines.sql
Edit
robisear_hopeuniforms.sql
Edit
robisear_hopewholesalers.sql
Edit
robisear_hotsandbarrel2.sql
Edit
robisear_huyasaminimart.sql
Edit
robisear_iandbent.sql
Edit
robisear_ibiza.sql
Edit
robisear_idealdishes.sql
Edit
robisear_idlhome.sql
Edit
robisear_infamous.sql
Edit
robisear_infill.sql
Edit
robisear_infinitylounge.sql
Edit
robisear_instantdelicacy.sql
Edit
robisear_instinctbar.sql
Edit
robisear_interglobal.sql
Edit
robisear_interlink.sql
Edit
robisear_internationalhc.sql
Edit
robisear_ishmar.sql
Edit
robisear_isoko.sql
Edit
robisear_italycor.sql
Edit
robisear_itecsystemsltd.sql
Edit
robisear_itushbusinesssolutions.sql
Edit
robisear_jacbee.sql
Edit
robisear_jadame.sql
Edit
robisear_jailo.sql
Edit
robisear_jaimari.sql
Edit
robisear_jalasfeedback.sql
Edit
robisear_jamagwartraders.sql
Edit
robisear_jambotech.sql
Edit
robisear_jamwa.sql
Edit
robisear_jamwa1.sql
Edit
robisear_javilla.sql
Edit
robisear_javilla2.sql
Edit
robisear_javilla3.sql
Edit
robisear_jaybright.sql
Edit
robisear_jbfries.sql
Edit
robisear_jbfriesnrb.sql
Edit
robisear_jebmic.sql
Edit
robisear_jengaleo.sql
Edit
robisear_jewelcomputers.sql
Edit
robisear_jijazetavern.sql
Edit
robisear_jimlandagency.sql
Edit
robisear_jimmon.sql
Edit
robisear_jobportal.sql
Edit
robisear_joek.sql
Edit
robisear_johfay.sql
Edit
robisear_johkim.sql
Edit
robisear_jolimillers.sql
Edit
robisear_josmatt.sql
Edit
robisear_joyevech.sql
Edit
robisear_jubileefarmers.sql
Edit
robisear_jue.sql
Edit
robisear_junkybins.sql
Edit
robisear_jymarks.sql
Edit
robisear_kabati.sql
Edit
robisear_kagango.sql
Edit
robisear_kahawaexpresso.sql
Edit
robisear_kairetu.sql
Edit
robisear_kalabash.sql
Edit
robisear_kamson.sql
Edit
robisear_kamuga2.sql
Edit
robisear_kamunga.sql
Edit
robisear_kaperikwekwe.sql
Edit
robisear_kapsam.sql
Edit
robisear_karangi.sql
Edit
robisear_karangi1.sql
Edit
robisear_kasavanna.sql
Edit
robisear_katado.sql
Edit
robisear_kathiani.sql
Edit
robisear_katikatilounge.sql
Edit
robisear_kayolefinest.sql
Edit
robisear_keekys.sql
Edit
robisear_kenanthogoto.sql
Edit
robisear_kentwood.sql
Edit
robisear_kenworks.sql
Edit
robisear_kenyatoner.sql
Edit
robisear_kerutender.sql
Edit
robisear_kevomotors.sql
Edit
robisear_kiamariverresort.sql
Edit
robisear_kicas.sql
Edit
robisear_kidamienterprises.sql
Edit
robisear_kiddyzojunior.sql
Edit
robisear_kijabesacco.sql
Edit
robisear_kijijimojito.sql
Edit
robisear_kikingihub.sql
Edit
robisear_kilantechnologies.sql
Edit
robisear_kilimanibreeze.sql
Edit
robisear_kinca57.sql
Edit
robisear_kingpin.sql
Edit
robisear_kiraimportexport.sql
Edit
robisear_kise.sql
Edit
robisear_kiufresh.sql
Edit
robisear_kjwines.sql
Edit
robisear_kjwinesbumala.sql
Edit
robisear_kliqourline.sql
Edit
robisear_kliqourline2.sql
Edit
robisear_kliqourline3.sql
Edit
robisear_kmamt.sql
Edit
robisear_kombiro.sql
Edit
robisear_komesha.sql
Edit
robisear_komesha2.sql
Edit
robisear_konamart.sql
Edit
robisear_kraftboba.sql
Edit
robisear_kttc.sql
Edit
robisear_kuivaliquorstores.sql
Edit
robisear_kyumbigarden.sql
Edit
robisear_laanpat.sql
Edit
robisear_laareshell.sql
Edit
robisear_lafattoria.sql
Edit
robisear_laibunimart.sql
Edit
robisear_laikipiaeco.sql
Edit
robisear_lakirashades.sql
Edit
robisear_lamatech.sql
Edit
robisear_lamatechkenyalimited.sql
Edit
robisear_lambada.sql
Edit
robisear_lambadas.sql
Edit
robisear_lanxafrica.sql
Edit
robisear_latenight.sql
Edit
robisear_latia.sql
Edit
robisear_laundryhub.sql
Edit
robisear_leave.sql
Edit
robisear_leboo.sql
Edit
robisear_legitimacyspares.sql
Edit
robisear_lerustique.sql
Edit
robisear_lesarra.sql
Edit
robisear_leviticus.sql
Edit
robisear_libanautospareslimited.sql
Edit
robisear_limah.sql
Edit
robisear_linaden.sql
Edit
robisear_linchubstore.sql
Edit
robisear_linknumedical.sql
Edit
robisear_linksgeliwa.sql
Edit
robisear_liquidmania.sql
Edit
robisear_liquorlibrary.sql
Edit
robisear_liquortap.sql
Edit
robisear_litudian.sql
Edit
robisear_liveinproperties.sql
Edit
robisear_livingwaterbcf.sql
Edit
robisear_longliqi.sql
Edit
robisear_longrich.sql
Edit
robisear_longrich1.sql
Edit
robisear_lotus.sql
Edit
robisear_louizesimbahotel.sql
Edit
robisear_louizesimbahotel1.sql
Edit
robisear_louizesimbalounge.sql
Edit
robisear_lti.sql
Edit
robisear_ltigroup.sql
Edit
robisear_lukeshotel.sql
Edit
robisear_lukimpharmaceuticals.sql
Edit
robisear_luminous.sql
Edit
robisear_lunjos.sql
Edit
robisear_luxebistro.sql
Edit
robisear_luxurysuites.sql
Edit
robisear_lydiacollection.sql
Edit
robisear_lyon.sql
Edit
robisear_mafads.sql
Edit
robisear_magman.sql
Edit
robisear_mailer.sql
Edit
robisear_mainerp.sql
Edit
robisear_mainerp1.sql
Edit
robisear_mainerpuganda.sql
Edit
robisear_makinze.sql
Edit
robisear_malibulounge.sql
Edit
robisear_malsonmotors.sql
Edit
robisear_maqaarow.sql
Edit
robisear_maqaarow2.sql
Edit
robisear_maqaarow3.sql
Edit
robisear_maraorganics.sql
Edit
robisear_margo.sql
Edit
robisear_marickholdings.sql
Edit
robisear_marksonic.sql
Edit
robisear_marsdiner.sql
Edit
robisear_marvel.sql
Edit
robisear_marvelfeeds.sql
Edit
robisear_masaicafe.sql
Edit
robisear_masid.sql
Edit
robisear_masterbakers.sql
Edit
robisear_matanaha.sql
Edit
robisear_mavunohub.sql
Edit
robisear_maxy.sql
Edit
robisear_maxy1.sql
Edit
robisear_mbotebeers.sql
Edit
robisear_melagrovet.sql
Edit
robisear_memphisresort.sql
Edit
robisear_metalogistics.sql
Edit
robisear_metropolsecurity.sql
Edit
robisear_mfangano.sql
Edit
robisear_mijimiji.sql
Edit
robisear_mijimiji2.sql
Edit
robisear_mijimiji3.sql
Edit
robisear_milans.sql
Edit
robisear_mingleslounge.sql
Edit
robisear_mirage.sql
Edit
robisear_miuguconclave.sql
Edit
robisear_mizpha.sql
Edit
robisear_mkulimahodariagrovet.sql
Edit
robisear_mkuru.sql
Edit
robisear_mliquor.sql
Edit
robisear_mobicare.sql
Edit
robisear_mochabistro.sql
Edit
robisear_modernfurniture.sql
Edit
robisear_moistureplus.sql
Edit
robisear_mollys.sql
Edit
robisear_mollys1.sql
Edit
robisear_mombasacomputers.sql
Edit
robisear_mommieschoice.sql
Edit
robisear_moodkitchens.sql
Edit
robisear_moonstargeneralagencies.sql
Edit
robisear_moselyminisupermarket.sql
Edit
robisear_msczoneltd.sql
Edit
robisear_mtaanichemist.sql
Edit
robisear_mugisof.sql
Edit
robisear_mugisoft.sql
Edit
robisear_muhsintailor.sql
Edit
robisear_mukielect.sql
Edit
robisear_mukscreation.sql
Edit
robisear_mumbuni.sql
Edit
robisear_mumsgarden.sql
Edit
robisear_muncheezbstr.sql
Edit
robisear_mursons.sql
Edit
robisear_mustafa.sql
Edit
robisear_muturis.sql
Edit
robisear_muyia.sql
Edit
robisear_mwaketa.sql
Edit
robisear_mybulksms.sql
Edit
robisear_mydallas.sql
Edit
robisear_myerp.sql
Edit
robisear_mypos.sql
Edit
robisear_nafuu.sql
Edit
robisear_nairobiclearing.sql
Edit
robisear_nanarestaurants.sql
Edit
robisear_napuuventures.robisearch.com.sql
Edit
robisear_napuuventures.sql
Edit
robisear_natives.sql
Edit
robisear_natives2.sql
Edit
robisear_natives3.sql
Edit
robisear_naturalchill.sql
Edit
robisear_naturalglam.sql
Edit
robisear_ndumia.sql
Edit
robisear_nebacholdings.sql
Edit
robisear_neighbourhoodnook.sql
Edit
robisear_nemwa.sql
Edit
robisear_neokenya.sql
Edit
robisear_netbyteapps.sql
Edit
robisear_new.sql
Edit
robisear_newlamuhaven.sql
Edit
robisear_newpickandpay.sql
Edit
robisear_newrobi.sql
Edit
robisear_nextlevelhardware.sql
Edit
robisear_ngatha.sql
Edit
robisear_nia.sql
Edit
robisear_nithibakers.sql
Edit
robisear_njd.sql
Edit
robisear_njorobeer.sql
Edit
robisear_njoshi.sql
Edit
robisear_nomadcycle.sql
Edit
robisear_noorelectronics.sql
Edit
robisear_nordicparts.sql
Edit
robisear_nordicparts2.sql
Edit
robisear_nordicparts3.sql
Edit
robisear_nordlys.sql
Edit
robisear_norkun.sql
Edit
robisear_nunos.sql
Edit
robisear_nuria.sql
Edit
robisear_nyamiraheights.sql
Edit
robisear_nyamiraheightsspa.sql
Edit
robisear_nysishotel.sql
Edit
robisear_nzimuh.sql
Edit
robisear_nzumbipms.sql
Edit
robisear_oasis.sql
Edit
robisear_oasispremiumfloor.sql
Edit
robisear_obicarautospares.sql
Edit
robisear_obsha.sql
Edit
robisear_obuntu.sql
Edit
robisear_olivehotels.sql
Edit
robisear_omeron.sql
Edit
robisear_onestop.sql
Edit
robisear_online1shop.sql
Edit
robisear_online2shop.sql
Edit
robisear_onlinecompanylimited.sql
Edit
robisear_onlinemobile.sql
Edit
robisear_onlinemobileeastleigh.sql
Edit
robisear_optispeed.sql
Edit
robisear_orangeriver.sql
Edit
robisear_orchards.sql
Edit
robisear_orchardscomm.sql
Edit
robisear_orchardscommltd.sql
Edit
robisear_organella.sql
Edit
robisear_osonayarns.sql
Edit
robisear_osupukoresort.sql
Edit
robisear_otadvocates.sql
Edit
robisear_ouad.sql
Edit
robisear_outsprings.sql
Edit
robisear_outsprings2.sql
Edit
robisear_paintdepo.sql
Edit
robisear_pamojagardens.sql
Edit
robisear_pareetalectrical.sql
Edit
robisear_pareetalectricals.sql
Edit
robisear_parisi.sql
Edit
robisear_parisi2.sql
Edit
robisear_parisi3.sql
Edit
robisear_paritahardware.sql
Edit
robisear_paritahardware2.sql
Edit
robisear_paritahardware3.sql
Edit
robisear_parkside.sql
Edit
robisear_parkside1.sql
Edit
robisear_parminihardware.sql
Edit
robisear_pastoralvet.sql
Edit
robisear_patanyumba.sql
Edit
robisear_patrica.sql
Edit
robisear_pauwil.sql
Edit
robisear_peacemeats.sql
Edit
robisear_pecyuniforms.sql
Edit
robisear_pelicanmetal.sql
Edit
robisear_pendo.sql
Edit
robisear_pendo1.sql
Edit
robisear_pensortium.sql
Edit
robisear_perfectpackaging.sql
Edit
robisear_petrooilkenyaltd.sql
Edit
robisear_pharmaallied.sql
Edit
robisear_phasedesign.sql
Edit
robisear_philbackers.sql
Edit
robisear_phoeniciahotel.sql
Edit
robisear_pilanobookshop.sql
Edit
robisear_pillcare.sql
Edit
robisear_piratesbeachmeatcenter.sql
Edit
robisear_piratesbeachpark.sql
Edit
robisear_pizarrarestaurant.sql
Edit
robisear_pjay.sql
Edit
robisear_placidoinvestment.sql
Edit
robisear_planet.sql
Edit
robisear_platinum.sql
Edit
robisear_platinum2.sql
Edit
robisear_pmcsupermarket.sql
Edit
robisear_poj.sql
Edit
robisear_polished.sql
Edit
robisear_politics.sql
Edit
robisear_popote.sql
Edit
robisear_porche.sql
Edit
robisear_porkysbarbecue.sql
Edit
robisear_pos.sql
Edit
robisear_poshplace.sql
Edit
robisear_powermart.sql
Edit
robisear_pramukh.sql
Edit
robisear_pramukhinvestment.sql
Edit
robisear_premier.sql
Edit
robisear_premierbeauty.sql
Edit
robisear_prestonhardware.sql
Edit
robisear_primevoy.sql
Edit
robisear_promze.sql
Edit
robisear_pronala.sql
Edit
robisear_propertwelveliquor.sql
Edit
robisear_protouch.sql
Edit
robisear_provenance.sql
Edit
robisear_pvtech.sql
Edit
robisear_qcc.sql
Edit
robisear_qiues.sql
Edit
robisear_quench.sql
Edit
robisear_quepasa.sql
Edit
robisear_quepasa1.sql
Edit
robisear_quillslounge.sql
Edit
robisear_quiver.sql
Edit
robisear_rafiki.sql
Edit
robisear_rafikitriple4.sql
Edit
robisear_raphymart.sql
Edit
robisear_rawhew.sql
Edit
robisear_rawhew1.sql
Edit
robisear_redbrickdairyandfood.sql
Edit
robisear_redc.sql
Edit
robisear_redemtar.sql
Edit
robisear_renbridge.sql
Edit
robisear_resellers.sql
Edit
robisear_restopark.sql
Edit
robisear_revaplaceresort.sql
Edit
robisear_riaraminimart.sql
Edit
robisear_ricamosupplies.sql
Edit
robisear_richblend.sql
Edit
robisear_richman.sql
Edit
robisear_richman2.sql
Edit
robisear_richman3.sql
Edit
robisear_rievshop.sql
Edit
robisear_rimatholdings1.sql
Edit
robisear_rira.sql
Edit
robisear_rivermart.sql
Edit
robisear_rivervale.sql
Edit
robisear_riziki.sql
Edit
robisear_robbiefarm.sql
Edit
robisear_robierp.sql
Edit
robisear_robihotel.sql
Edit
robisear_robimalimali.sql
Edit
robisear_robipms.sql
Edit
robisear_robiposhotel.sql
Edit
robisear_robisear_elishammah.sql
Edit
robisear_robisearch.sql
Edit
robisear_robisearchuganda.sql
Edit
robisear_rodi.sql
Edit
robisear_rohima.sql
Edit
robisear_rohima2.sql
Edit
robisear_rohosingo.sql
Edit
robisear_rokeen.sql
Edit
robisear_ronleb.sql
Edit
robisear_ronleb1.sql
Edit
robisear_ronlebtech.sql
Edit
robisear_rooftopbistro.sql
Edit
robisear_root.sql
Edit
robisear_rootscosmestics.sql
Edit
robisear_rootzcosmetics.sql
Edit
robisear_rootzcosmetics2.sql
Edit
robisear_rootzcosmetics3.sql
Edit
robisear_rophinefieldschools.sql
Edit
robisear_rosetex.sql
Edit
robisear_rositainvestment.sql
Edit
robisear_royal.sql
Edit
robisear_royalelectronics.sql
Edit
robisear_royalhardware.sql
Edit
robisear_royalmeals.sql
Edit
robisear_rubicon.sql
Edit
robisear_sabby.sql
Edit
robisear_sabizpizza.sql
Edit
robisear_sacco.sql
Edit
robisear_safetymax.sql
Edit
robisear_sahishapes.sql
Edit
robisear_sales.sql
Edit
robisear_samareeb.sql
Edit
robisear_samoo.sql
Edit
robisear_samtechgroup.sql
Edit
robisear_sanch.sql
Edit
robisear_sarmerk.sql
Edit
robisear_saroz.sql
Edit
robisear_saruk.sql
Edit
robisear_saruk1.sql
Edit
robisear_saruk2.sql
Edit
robisear_sasabone.sql
Edit
robisear_sausen.sql
Edit
robisear_savannah.sql
Edit
robisear_savour.sql
Edit
robisear_saxandviolins.sql
Edit
robisear_sayariagriscience.sql
Edit
robisear_sayaricrafts.sql
Edit
robisear_sbhotel.sql
Edit
robisear_scentskenyaltd.sql
Edit
robisear_schoolmall.sql
Edit
robisear_scodra.sql
Edit
robisear_seasonlogistics.sql
Edit
robisear_seasons.sql
Edit
robisear_selcafe.sql
Edit
robisear_selella.sql
Edit
robisear_serenityforthotel.sql
Edit
robisear_shack.sql
Edit
robisear_shafan.sql
Edit
robisear_shakaz.sql
Edit
robisear_shakesspeare.sql
Edit
robisear_sharjah.sql
Edit
robisear_sherattonbeachvillagio.sql
Edit
robisear_sherattonregency.sql
Edit
robisear_sherattonregencymombasa.sql
Edit
robisear_sherryliquorbar.sql
Edit
robisear_shopearl.sql
Edit
robisear_shopearl2.sql
Edit
robisear_shopwise.sql
Edit
robisear_shotsandbarrel.sql
Edit
robisear_shotsandbarrel1.sql
Edit
robisear_shotsandbarrel2.sql
Edit
robisear_shreeji.sql
Edit
robisear_shreejimerultd.sql
Edit
robisear_shujaa.sql
Edit
robisear_shujaawangu.sql
Edit
robisear_shukri.sql
Edit
robisear_sierracaves.sql
Edit
robisear_silver.sql
Edit
robisear_silverline.sql
Edit
robisear_silverviewhardware.sql
Edit
robisear_sipamaquaticsltd.sql
Edit
robisear_siwamu.sql
Edit
robisear_skysailmabati.sql
Edit
robisear_skyveltd.sql
Edit
robisear_snl.sql
Edit
robisear_snowdessertea.sql
Edit
robisear_sokima.sql
Edit
robisear_sokofreshpoint.sql
Edit
robisear_sokojumla.sql
Edit
robisear_somcityhealth.sql
Edit
robisear_spiceland.sql
Edit
robisear_spicelands.sql
Edit
robisear_spikessanford.sql
Edit
robisear_spotpartystop.sql
Edit
robisear_springs.sql
Edit
robisear_starfox.sql
Edit
robisear_starsngarters.sql
Edit
robisear_stedan.sql
Edit
robisear_sterling.sql
Edit
robisear_stfrancisofassisi.sql
Edit
robisear_stjohn.sql
Edit
robisear_stopajali.sql
Edit
robisear_straitsolar.sql
Edit
robisear_sts.sql
Edit
robisear_stylesandfinishesltd.sql
Edit
robisear_sugarspicebeauty.sql
Edit
robisear_suki.sql
Edit
robisear_sukimart.sql
Edit
robisear_sultanmabi.sql
Edit
robisear_summeroasis.sql
Edit
robisear_summeroasis1.sql
Edit
robisear_summersprings.sql
Edit
robisear_summersprings2.sql
Edit
robisear_sunati.sql
Edit
robisear_sunbreeze.sql
Edit
robisear_sunshine.sql
Edit
robisear_sunshinemobilespares.sql
Edit
robisear_sunuk.sql
Edit
robisear_superb.sql
Edit
robisear_superiorhardware.sql
Edit
robisear_supermarket.sql
Edit
robisear_superp.sql
Edit
robisear_supreme.sql
Edit
robisear_suraj.sql
Edit
robisear_sweeftfleet.sql
Edit
robisear_swisderm.sql
Edit
robisear_swissgrade.sql
Edit
robisear_syano.sql
Edit
robisear_syanotanau.sql
Edit
robisear_symphonylounge.sql
Edit
robisear_synergydealsltd.sql
Edit
robisear_tabarukfoods.sql
Edit
robisear_tamasha.sql
Edit
robisear_tanzaken.sql
Edit
robisear_tawas.sql
Edit
robisear_tayariluxury.sql
Edit
robisear_tazamatt.sql
Edit
robisear_techsquire.sql
Edit
robisear_techsquires.sql
Edit
robisear_techwizardcctvltd.sql
Edit
robisear_tekidi.sql
Edit
robisear_tembuzicultural.sql
Edit
robisear_temic.sql
Edit
robisear_tessara.sql
Edit
robisear_tessymso.sql
Edit
robisear_test.sql
Edit
robisear_test2.sql
Edit
robisear_texas.sql
Edit
robisear_tgm.sql
Edit
robisear_thalloventures.sql
Edit
robisear_thecilantrokitchens.sql
Edit
robisear_thediner.sql
Edit
robisear_theheadquartersportbar.sql
Edit
robisear_theheadquartersportbar2.sql
Edit
robisear_thehubfoodcourt.sql
Edit
robisear_theindulge.sql
Edit
robisear_thejunctionlounge.sql
Edit
robisear_thelab.sql
Edit
robisear_themorningperkcafe.sql
Edit
robisear_theoffice.sql
Edit
robisear_thirsty.sql
Edit
robisear_timboni.sql
Edit
robisear_timiza.sql
Edit
robisear_timizamachakos.sql
Edit
robisear_timushamba.sql
Edit
robisear_tir.sql
Edit
robisear_toasts.sql
Edit
robisear_tolaenergies.sql
Edit
robisear_toplevel.sql
Edit
robisear_toplinesurgicals.sql
Edit
robisear_topmark.sql
Edit
robisear_toshadawa.sql
Edit
robisear_toshenterprises.sql
Edit
robisear_transfordchemist.sql
Edit
robisear_travellamembers.sql
Edit
robisear_trax.sql
Edit
robisear_tripeakbrands.sql
Edit
robisear_triplec.sql
Edit
robisear_tripointpizzeria.sql
Edit
robisear_trivetachemist.sql
Edit
robisear_trivetandundoripos.sql
Edit
robisear_tronlink.sql
Edit
robisear_trueblueliqour.sql
Edit
robisear_truvalue.sql
Edit
robisear_truvalues.sql
Edit
robisear_tsukimino.sql
Edit
robisear_tucasa.sql
Edit
robisear_tucasa1.sql
Edit
robisear_tulimepamojaagrovet.sql
Edit
robisear_tundaville.sql
Edit
robisear_tunubeverage.sql
Edit
robisear_turpean.sql
Edit
robisear_tuutis.sql
Edit
robisear_twiga.sql
Edit
robisear_twinstepsltd.sql
Edit
robisear_typsy.sql
Edit
robisear_ujminimart.sql
Edit
robisear_ulalo.sql
Edit
robisear_uncurbedbeauty.sql
Edit
robisear_undertheswahilitree.sql
Edit
robisear_union.sql
Edit
robisear_upriseminisupa.sql
Edit
robisear_upsaleskeltd.sql
Edit
robisear_uptown.sql
Edit
robisear_uptown2.sql
Edit
robisear_uptownkibali.sql
Edit
robisear_urwani.sql
Edit
robisear_utange.sql
Edit
robisear_vaitamutheisupplies.sql
Edit
robisear_veewmart.sql
Edit
robisear_vezmartexpress.sql
Edit
robisear_viewersparkhotel.sql
Edit
robisear_viewjoint.sql
Edit
robisear_vnd.sql
Edit
robisear_walenisirestaurant.sql
Edit
robisear_walenisirestaurantmain.sql
Edit
robisear_wama.sql
Edit
robisear_wamotech.sql
Edit
robisear_wamweaholdings.sql
Edit
robisear_waqf.sql
Edit
robisear_wasafiarcade.sql
Edit
robisear_watergaspoint.sql
Edit
robisear_waterkiosk.sql
Edit
robisear_waterworld.sql
Edit
robisear_weaverbird.sql
Edit
robisear_westerncosmetics.sql
Edit
robisear_westlightlounge.sql
Edit
robisear_westlitelounge.sql
Edit
robisear_westmill.sql
Edit
robisear_weststands.sql
Edit
robisear_whitehouse.sql
Edit
robisear_whitekitchen.sql
Edit
robisear_wifimatt.sql
Edit
robisear_winter.sql
Edit
robisear_wiresmore.sql
Edit
robisear_wistantechnology.sql
Edit
robisear_wm.sql
Edit
robisear_woodlandgardens.sql
Edit
robisear_woodstock.sql
Edit
robisear_woodstock1.sql
Edit
robisear_wrappedfoods.sql
Edit
robisear_write.sql
Edit
robisear_xtranet.sql
Edit
robisear_ycs.sql
Edit
robisear_zakacapital.sql
Edit
robisear_zgt.sql
Edit
robisear_zishaan.sql
Edit
robisear_zmf.sql
Edit
robisear_zurikarttraders.sql
Edit
sys.sql
Edit